/* =========================================
   1. MODERN DESIGN SYSTEM - PROFESSIONAL & CONTEMPORARY
   ========================================= */
:root {
    /* PRIMARY COLOR PALETTE */
    --red: #D90429;
    --green: #3A7A5C;
    --cream: #F9F5EA;
    --dark: #1A1A1A;

    /* EXTENDED COLOR SYSTEM */
    --red-50: rgba(217, 4, 41, 0.05);
    --red-100: rgba(217, 4, 41, 0.1);
    --red-200: rgba(217, 4, 41, 0.2);
    --red-light: rgba(217, 4, 41, 0.15);
    --red-dark: #B80322;
    --red-darker: #9A0219;

    --green-50: rgba(58, 122, 92, 0.05);
    --green-100: rgba(58, 122, 92, 0.1);
    --green-200: rgba(58, 122, 92, 0.2);
    --green-light: rgba(58, 122, 92, 0.15);
    --green-dark: #2A5A46;
    --green-darker: #1E4333;

    --cream-50: #FDFCF8;
    --cream-dark: #F0E9D8;
    --cream-darker: #E8DFC8;

    /* NEUTRAL COLORS */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* MODERN GRADIENTS */
    --gradient-green: linear-gradient(135deg, #2d5a4a 0%, var(--green) 50%, #1e4333 100%);
    --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    --gradient-cream: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(58, 122, 92, 0.05) 0%, rgba(217, 4, 41, 0.05) 100%);

    /* MODERN SHADOW SYSTEM (Elevation-based) */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

    /* COLORED SHADOWS */
    --shadow-green: 0 10px 30px -5px rgba(58, 122, 92, 0.3);
    --shadow-red: 0 10px 30px -5px rgba(217, 4, 41, 0.3);
    --shadow-green-lg: 0 20px 40px -10px rgba(58, 122, 92, 0.4);
    --shadow-red-lg: 0 20px 40px -10px rgba(217, 4, 41, 0.4);

    /* MODERN BORDERS */
    --border-light: 1px solid rgba(0, 0, 0, 0.06);
    --border-medium: 1px solid rgba(0, 0, 0, 0.1);
    --border-dark: 1px solid rgba(0, 0, 0, 0.2);
    --border-bold: 2px solid var(--dark);
    --border-green: 1px solid var(--green-200);
    --border-red: 1px solid var(--red-200);

    /* TYPOGRAPHY SYSTEM */
    --font-head: 'Teko', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    /* MODERN SPACING SCALE (4px base unit) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* BORDER RADIUS */
    --radius-sm: 0.375rem;
    /* 6px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-2xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;

    /* TRANSITIONS */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #2d5a4a 0%, var(--green) 50%, #1e4333 100%);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

/* Refined Texture Overlay */
.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* =========================================
   2. MODERN TYPOGRAPHY SYSTEM
   ========================================= */
.font-rough {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.font-script {
    font-family: var(--font-accent);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.01em;
}

.font-body {
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Color Utilities */
.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

.text-cream {
    color: var(--cream);
}

.text-dark {
    color: var(--dark);
}

.text-beige {
    color: var(--cream-darker);
}

/* Text Size Utilities */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

/* Container Syst */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* =========================================
   3. MODERN NAVIGATION BAR
   ========================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.875rem 0;
    background: linear-gradient(135deg, #2d5a4a 0%, var(--green) 50%, #1e4333 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

/* Remove scrolled state - navbar stays consistent */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: rgba(249, 245, 234, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: all var(--transition-base);
    font-family: var(--font-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cream);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--cream);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--cream);
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-nav {
    background: var(--gradient-red);
    color: white;
    padding: 0.625rem 1.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-red);
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-lg);
    filter: brightness(1.05);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right var(--transition-smooth);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-6);
    border-bottom: var(--border-light);
}

.mobile-links a {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
    padding: var(--space-3) 0;
    border-left: 3px solid transparent;
    padding-left: var(--space-4);
}

.mobile-links a:hover {
    color: var(--green);
    border-left-color: var(--green);
    padding-left: var(--space-6);
}

/* =========================================
   4. MODERN HERO SECTION - MINIMAL & CLEAN
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #2d5a4a 0%, var(--green) 50%, #1e4333 100%);
    padding: calc(80px + var(--space-12)) 0 var(--space-16);
}

/* Enhanced Background Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/fakultas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    filter: grayscale(100%);
}

/* Wavy Pattern - Removed */
.hero-section::after {
    content: '';
    display: none;
}

/* Abstract Wavy Shapes Background */
.hero-waves-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* SVG Wave Layers */
.wave-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.wave-layer-1 {
    z-index: 1;
}

.wave-layer-2 {
    z-index: 2;
}

.wave-layer-3 {
    z-index: 3;
}

.wave-layer-4 {
    z-index: 4;
}

/* Mobile wave adjustments - make peaks wider */
@media (max-width: 768px) {
    .wave-svg {
        width: 200%;
        left: -50%;
    }
}

@media (max-width: 480px) {
    .wave-svg {
        width: 300%;
        left: -100%;
    }
}

/* Hero Container Layout */
.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Text Content */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

/* Enhanced Badge - Main Focal Point */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: white;
    border: 2px solid var(--red);
    border-radius: var(--radius-full);
    width: fit-content;
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    color: var(--red);
    font-size: 0.8rem;
}

/* Hero Title - Professional Typography */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--cream);
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.highlight-text {
    color: var(--cream-darker);
    position: relative;
    display: inline-block;
}

/* Professional highlight effect */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -4px;
    right: -4px;
    height: 14px;
    background: linear-gradient(90deg, var(--green-100) 0%, var(--green-200) 100%);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.6;
}

/* Hero Description - Professional */
.hero-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--cream-dark);
    max-width: 540px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Simple CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gradient-green);
    color: white;
    padding: var(--space-5) var(--space-10);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--green-dark);
    padding: var(--space-5) var(--space-10);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--green);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    background: transparent;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Red variant for register button */
.btn-secondary-red {
    color: var(--red);
    border-color: var(--red);
}

.btn-secondary-red:hover {
    background: var(--red);
    color: white;
    box-shadow: var(--shadow-red);
}

/* Right Visual Element - Enhanced Geometric Frame */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Geometric frame effect - Removed */
.hero-illustration::before {
    display: none;
}

.hero-illustration::after {
    display: none;
}

.hero-logo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(58, 122, 92, 0.2));
}

/* Mobile Logo Container - Hidden on Desktop */
.hero-logos-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    /* Show mobile logos */
    .hero-logos-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-6);
        margin: var(--space-6) 0;
    }

    .mobile-logo-ceic,
    .mobile-logo-undip {
        height: 60px;
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Hide desktop visual on mobile */
    .hero-visual {
        display: none;
    }
}

@media (max-width: 600px) {

    /* Smaller logos on very small screens */
    .mobile-logo-ceic,
    .mobile-logo-undip {
        height: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}


/* =========================================
   5. SECTION UTILITIES
   ========================================= */
.section {
    padding: var(--space-24) 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-16);
}

.line-l,
.line-r {
    height: 2px;
    width: 60px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.bg-cream-darker {
    background-color: var(--cream-dark);
}

.border-y-dark {
    border-top: var(--border-bold);
    border-bottom: var(--border-bold);
}

.border-t-dark {
    border-top: var(--border-medium);
}

/* =========================================
   5. ABOUT (Values)
   ========================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item {
    padding: 4rem 2rem;
    text-align: center;
    transition: 0.3s;
    background: linear-gradient(180deg, #2d5a4a 0%, var(--green) 50%, #1e4333 100%);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--green-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-item:hover::before {
    opacity: 1;
}

.border-r {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    background: white;
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.value-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
}

/* =========================================
   6. PROGRAMS
   ========================================= */
.grid-program {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 24px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.program-list-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card {
    padding: 2.5rem;
    flex: 1;
    border: 3px solid var(--dark);
    box-shadow: var(--shadow-hard);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-8px) translateX(-3px);
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.2);
}

.p-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.p-body ul {
    list-style: none;
    line-height: 2;
    font-size: 1.1rem;
}

/* Green program card specific */
.bg-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
}

/* Red program card specific */
.bg-red {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%) !important;
}

/* Stats Section - BOLD REDESIGN */
/* Stats Section - BOLD REDESIGN */
.stats-section {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Decorative Background Pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    z-index: 0;
}

/* Creative Badge - Hexagon Style */
.stats-badge {
    position: absolute;
    top: 50px;
    right: 80px;
    width: 120px;
    height: 120px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.5);
}

.stats-badge span {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--cream);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-badge small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--cream);
    letter-spacing: 3px;
    opacity: 0.9;
}

@keyframes badgeRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

/* Layout */
.stats-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

/* Header with Diagonal Accent */
.stats-header {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.stats-eyebrow {
    display: block;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-title {
    font-size: 4rem;
    line-height: 0.9;
    color: var(--cream);
    margin: 0 0 2rem 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.stats-title-accent {
    color: var(--cream);
    position: relative;
    display: inline-block;
    background: var(--red);
    padding: 0 1rem;
    transform: skew(-5deg);
}

.stats-desc {
    color: rgba(249, 245, 234, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 350px;
    font-weight: 400;
}

/* Creative Stats Grid - Varied Card Styles */
.stats-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Varied Card Shapes */
.stat-item:nth-child(1) {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    background: linear-gradient(135deg, white 0%, var(--cream-50) 100%);
}

.stat-item:nth-child(2) {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
}

.stat-item:nth-child(3) {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    background: linear-gradient(135deg, white 0%, var(--cream-50) 100%);
}

.stat-item:nth-child(4) {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
}

.stat-item:nth-child(5) {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    background: linear-gradient(135deg, white 0%, var(--cream-50) 100%);
}

.stat-item:nth-child(6) {
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
}

/* Decorative corners */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--green-100);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.stat-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item-featured {
    grid-column: span 3;
    background: var(--red);
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
    padding: 3rem;
}

.stat-item-featured::before {
    background: rgba(255, 255, 255, 0.1);
}

.stat-item-featured .stat-value {
    color: var(--green-dark);
    font-size: 6rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.stat-item-featured .stat-label {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.stat-value {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.stat-plus {
    color: var(--red);
    font-size: 0.7em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Responsive Stats */
@media (max-width: 900px) {
    .stats-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-header {
        text-align: center;
        clip-path: none;
    }

    .stats-desc {
        margin: 0 auto;
    }

    .stats-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 600px) {
    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item-featured {
        grid-column: span 2;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-item-featured .stat-value {
        font-size: 4rem;
    }
}


/* =========================================
   7. MODERN SPONSORS SECTION
   ========================================= */
.sponsors-section {
    padding: 1.5rem 0;
    background: var(--white);
}

.sponsors-container {
    margin-top: 1rem;
}

.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.sponsor-row.main-sponsors {
    gap: 1.5rem;
}

.sponsor-item {
    position: relative;
}

.sponsor-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
}

/* =========================================
   9. PAST PARTICIPATION (Marquee) - DIPERTAHANKAN
   ========================================= */
.marquee-section {
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: scroll 60s linear infinite;
}

.marquee-content img {
    height: 100px !important;
    margin: 0 30px;
    filter: none !important;
    opacity: 1 !important;
    transition: 0.3s;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   8. PARTICIPANTS SECTION - MODERN MARQUEE
   ========================================= */
.participants-section {
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
}

.participants-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: var(--space-8) 0;
    margin-top: var(--space-6);
}

/* Sophisticated fade edges */
.participants-marquee::before,
.participants-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.participants-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--green), transparent);
}

.participants-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--green), transparent);
}

.participants-marquee .marquee-track {
    display: inline-block;
    white-space: nowrap;
}

.participants-marquee .marquee-content {
    display: inline-flex;
    align-items: center;
    animation: participantsScroll 80s linear infinite;
}

.participants-marquee .marquee-content img {
    height: 80px !important;
    width: auto;
    margin: 0 var(--space-8);
    filter: none !important;
    opacity: 1 !important;
    transition: all var(--transition-base);
    background: white;
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
}

.participants-marquee .marquee-content img:hover {
    box-shadow: var(--shadow-md);
    animation-play-state: paused;
}

@keyframes participantsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer-section {
    background: linear-gradient(180deg, #2d6850 0%, var(--green) 100%);
    color: var(--cream);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--red);
    padding-left: 10px;
}

.footer-socials a {
    color: var(--cream);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Animation & Responsive */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   11. RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 900px) {
    .hidden-mobile {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-decor {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .grid-program {
        grid-template-columns: 1fr;
    }

    .program-card {
        margin-left: 0;
        margin-top: 1rem;
    }

    .stats-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sponsor-grid {
        gap: 2rem;
    }

    .sponsor-item img {
        height: 200px !important;
    }

    /* Hero responsive adjustments */
    .hero-title {
        font-size: 4rem;
        line-height: 1;
    }

    .hero-desc {
        font-size: 1.1rem;
        padding: 15px;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 1.3rem;
    }

    .btn-text {
        padding: 12px 20px;
    }

    .floating-logo {
        width: 500px;
    }

    .hero-badge span {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-badge span {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-logo {
        width: 400px;
    }

    .stats-flex {
        padding: 2rem;
    }

    .sponsor-item img {
        height: 100px !important;
        max-width: 90%;
        display: block;
    }

    .sponsor-row {
        align-items: flex-end !important;
    }

    .sponsor-item {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .marquee-content img,
    .participants-marquee .marquee-content img {
        height: 75px !important;
        margin: 0 2px !important;
    }
}

/* =========================================
   12. CORE VALUES SECTION - BOLD 3D CARD REDESIGN
   ========================================= */
.core-values-section {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* Background Decorative Shapes */
.cv-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cv-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--green-light);
    top: -20%;
    right: -10%;
    opacity: 0.6;
}

.cv-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--red-light);
    bottom: -15%;
    left: -10%;
    opacity: 0.5;
}

/* Asymmetric Header */
.cv-header {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-bottom: 2rem;
}

.cv-label {
    display: inline-block;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.cv-header .cv-title {
    font-size: 2.5rem;
    line-height: 0.95;
    color: var(--cream);
    margin: 0 0 0.5rem 0;
}

.cv-title-accent {
    color: var(--red);
    position: relative;
    display: inline-block;
}

.cv-title-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--red);
    opacity: 0.3;
    transform: skewX(-8deg);
    z-index: -1;
}

.cv-header .cv-subtitle {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.7;
    line-height: 1.5;
    max-width: 400px;
}

/* 3D Stacked Cards Container */
.cv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

/* Individual Card Styling */
.cv-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    overflow: hidden;
}

.cv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    transition: height 0.3s ease;
}

.cv-card-1::before {
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.cv-card-2::before {
    background: linear-gradient(90deg, #27ae60, #16a085);
}

.cv-card-3::before {
    background: linear-gradient(90deg, var(--red), #e74c3c);
}

.cv-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--green);
}

.cv-card:hover::before {
    height: 10px;
}

.cv-card-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--cream-dark);
    font-weight: 700;
    line-height: 1;
    z-index: 0;
}

.cv-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cv-card:hover .cv-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.cv-card-icon svg {
    width: 22px;
    height: 22px;
}

.cv-card-title {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0 0 0.4rem 0;
    position: relative;
    z-index: 1;
}

.cv-card-desc {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cv-card-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateX(0);
}

.cv-card:hover .cv-card-arrow {
    opacity: 1;
    background: var(--green);
    color: white;
}

.cv-card-arrow svg {
    width: 16px;
    height: 16px;
}

/* Detail Panel */
.cv-detail {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--green);
    margin-bottom: 2rem;
}

.cv-detail::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
}

#cv-content-inner {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Content Styling - kept for JS compatibility */
.cv-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cv-title-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 10px;
    color: white;
}

.cv-title-icon svg {
    width: 20px;
    height: 20px;
}

.cv-subtitle {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.cv-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark);
}

.cv-description p {
    margin-bottom: 0.5rem;
}

.cv-bullets {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.cv-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-radius: 8px;
    border-left: 3px solid var(--red);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.cv-bullets li:hover {
    transform: translateX(5px);
}

.cv-bullets li strong {
    color: var(--green);
}

/* Responsive */
@media (max-width: 900px) {
    .cv-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cv-header .cv-title {
        font-size: 2rem;
    }

    .cv-detail {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .cv-header .cv-title {
        font-size: 2.5rem;
    }

    .cv-card {
        padding: 2rem 1.5rem;
    }
}

/* Utility */
.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* =========================================
   13. EVENTS PAGE STYLES
   ========================================= */

/* Events Hero */
.events-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, var(--red-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--green-light) 0%, transparent 50%);
    z-index: 1;
}

.events-hero .container {
    position: relative;
    z-index: 2;
}

.events-hero-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Event Type Tabs */
.events-tabs-section {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 2px solid var(--green-dark);
}


/* Unified Navigation Container */
.events-unified-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.events-type-tabs {
    display: flex;
    gap: 1rem;
}

.event-type-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: white;
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--dark);
}

.event-type-tab:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-type-tab.active {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: white;
    border-color: var(--green);
    box-shadow: 0 5px 20px rgba(42, 90, 70, 0.3);
}

.event-type-tab svg {
    width: 18px;
    height: 18px;
}

/* Events Content Section */
.events-content-section {
    padding: 1.5rem 0 3rem;
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 50%, #1a4a38 100%);
    position: relative;
    overflow: hidden;
}

/* Events Wave Background */
.events-waves-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.events-wave-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.events-wave-1 {
    z-index: 1;
}

.events-wave-2 {
    z-index: 2;
}

.events-wave-3 {
    z-index: 3;
}

.events-content-section>.container {
    position: relative;
    z-index: 5;
}

/* Mobile wave adjustments for events */
@media (max-width: 768px) {
    .events-wave-svg {
        width: 200%;
        left: -50%;
    }
}

@media (max-width: 480px) {
    .events-wave-svg {
        width: 300%;
        left: -100%;
    }
}

/* Event Navigation - Modern Pills */
.event-nav {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: white;
    padding: 0.35rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.event-nav-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--green);
    position: relative;
}

.event-nav-btn:hover {
    background: var(--cream);
    color: var(--green);
}

.event-nav-btn.active {
    background: linear-gradient(135deg, var(--red) 0%, #ff4757 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.35);
}

/* Event Detail */
.event-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.event-detail.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Event Header */
.event-header {
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.btn-register.header-register {
    margin-top: 0.5rem;
}

.event-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0;
}

.event-subtitle {
    font-size: 1.2rem;
}

/* Event Content Grid - Modern Flow */
.event-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Event Card - Modern Flowing Design */
.event-card {
    background: linear-gradient(145deg, white 0%, var(--cream) 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(58, 122, 92, 0.08);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, var(--red) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 122, 92, 0.12);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.full-width {
    grid-column: 1 / -1;
}

.event-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: none;
}

.event-card-header i,
.event-card-header svg {
    color: var(--green);
    width: 32px;
    height: 32px;
    padding: 8px;
    background: var(--green-light);
    border-radius: 12px;
}

.event-card-header h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--green);
    letter-spacing: 0.5px;
}

.event-card p {
    line-height: 1.9;
    color: var(--green);
    opacity: 0.85;
}

/* Theme Card */
.theme-card {
    background: var(--cream);
    border-left: 4px solid var(--green);
}

.theme-text {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--green);
    line-height: 1.6;
}

/* Timeline Table */
.timeline-table-wrapper {
    overflow-x: auto;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.timeline-table th {
    background: var(--green);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.1rem;
}

.timeline-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--cream-dark);
}

.timeline-table tr:nth-child(even) {
    background: var(--cream);
}

.timeline-table tr:hover {
    background: var(--green-light);
}

/* Prizes Grid - Modern */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.prize-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.prize-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.prize-rank {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.prize-amount {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.prize-extras {
    display: block;
    font-size: 0.8rem;
    color: var(--green);
    opacity: 0.6;
}

/* Prize Colors - Softer Modern */
.prize-item.gold {
    background: linear-gradient(145deg, #FFF9E6 0%, #FFE4A0 100%);
    color: #8B6914;
}

.prize-item.gold .prize-amount {
    color: #8B6914;
}

.prize-item.silver {
    background: linear-gradient(145deg, #F5F5F5 0%, #E0E0E0 100%);
    color: #555;
}

.prize-item.silver .prize-amount {
    color: #555;
}

.prize-item.bronze {
    background: linear-gradient(145deg, #FDF5EF 0%, #E8C4A0 100%);
    color: #8B5A2B;
}

.prize-item.bronze .prize-amount {
    color: #8B5A2B;
}

.prize-item.honorable {
    background: linear-gradient(145deg, white 0%, var(--green-light) 100%);
}

.prize-item.honorable .prize-amount {
    color: var(--green-dark);
}

.prize-item.honorable .prize-extras {
    color: var(--green-dark);
}

.prize-item.favorite {
    background: linear-gradient(145deg, white 0%, var(--red-light) 100%);
}

.prize-item.favorite .prize-amount {
    color: var(--red);
}

.prize-item.favorite .prize-extras {
    color: var(--red-dark);
}

/* Contact Grid - Modern */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-item {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

/* Register Card */
.register-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    margin-top: 0.5rem;
    padding: 0 !important;
    box-shadow: none;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    font-family: var(--font-head);
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(217, 4, 41, 0.25);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.hashtags {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.hashtags span {
    background: var(--cream);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--red);
    border: 1px solid var(--red-light);
}

/* Highlight Date */
.highlight-date {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--green);
    text-align: center;
}

/* Active nav link */
.nav-link.active {
    color: var(--cream) !important;
    opacity: 1 !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Events */
@media (max-width: 900px) {
    .events-hero-title {
        font-size: 3rem;
    }

    .events-type-tabs {
        flex-direction: column;
        align-items: center;
    }

    .event-type-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .event-content-grid {
        grid-template-columns: 1fr;
    }

    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-title {
        font-size: 3.5rem;
    }

    .event-nav {
        gap: 0.5rem;
    }

    .event-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .events-tabs-section {
        position: static;
    }

    .highlight-date {
        font-size: 1.8rem;
    }
}

/* =========================================
   14. IMPROVED SPONSORS SECTION
   ========================================= */

.sponsors-section {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    position: relative;
}

.sponsors-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sponsor-item {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.1);
}

.sponsor-item img {
    height: 80px;
    width: auto;
    filter: grayscale(40%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.main-sponsors .sponsor-item img {
    height: 100px;
}

.secondary-sponsors .sponsor-item img {
    height: 70px;
}

.become-sponsor {
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

/* =========================================
   15. IMPROVED PARTICIPANTS SECTION (Merged with Sponsors)
   ========================================= */

.participants-section {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.participants-section .section-header {
    padding-top: 2rem;
}

.participants-marquee {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 3rem;
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
}

.participants-marquee::before,
.participants-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.participants-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--green), transparent);
}

.participants-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--green), transparent);
}

.participants-marquee .marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
}

.participants-marquee .marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

.participants-marquee .marquee-content img {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
    filter: grayscale(40%);
    opacity: 0.6;
}

.participants-marquee .marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Sponsors */
@media (max-width: 900px) {
    .sponsor-row {
        gap: 1rem;
    }

    .sponsor-item {
        padding: 1rem 1.5rem;
    }

    .sponsor-item img {
        height: 40px;
    }

    .main-sponsors .sponsor-item img {
        height: 50px;
    }

    .secondary-sponsors .sponsor-item img {
        height: 35px;
    }

    .participants-marquee .marquee-content img {
        height: 55px;
        padding: 0.75rem;
    }
}

/* Utility classes */
.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.opacity-70 {
    opacity: 0.7;
}


/* =========================================
   16. MODERN VISUAL TIMELINE
   ========================================= */

.timeline-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.timeline-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 122, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.timeline-title {
    text-align: center;
    color: var(--green);
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.visual-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

/* Modern timeline line with gradient */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            rgba(58, 122, 92, 0.8) 0%,
            rgba(217, 4, 41, 0.6) 50%,
            rgba(58, 122, 92, 0.4) 100%);
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInTimeline 0.6s ease forwards;
}

@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(9) {
    animation-delay: 0.9s;
}

.timeline-item:nth-child(10) {
    animation-delay: 1s;
}

.timeline-item.left {
    left: 0;
    padding-right: 3.5rem;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3.5rem;
    text-align: left;
}

/* Modern floating dot with pulse animation */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    top: 2rem;
    z-index: 5;
    box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7);
    border: 4px solid var(--cream);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(217, 4, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0);
    }
}

.timeline-item.left .timeline-dot {
    right: -10px;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

/* Modern card design with solid background */
.timeline-card {
    background: var(--green);
    padding: 1.75rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Decorative corner accent */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 0 100% 0;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.timeline-card:hover::before {
    width: 80px;
    height: 80px;
}

.timeline-card i,
.timeline-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.75rem;
    opacity: 1;
    color: var(--cream);
}

.timeline-card h4 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
    line-height: 1.3;
}

.timeline-card span {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    color: var(--cream);
}

/* Modern color-coded cards */
.timeline-card.green {
    background: var(--green);
}

.timeline-card.green::before {
    background: var(--red);
}

.timeline-card.green i,
.timeline-card.green svg,
.timeline-card.green h4 {
    color: var(--cream);
}

.timeline-card.green span {
    color: var(--cream-dark);
}

.timeline-card.red {
    background: var(--cream);
}

.timeline-card.red::before {
    background: var(--red);
}

.timeline-card.red i,
.timeline-card.red svg,
.timeline-card.red h4 {
    color: var(--red);
}

.timeline-card.red span {
    color: var(--green);
}

.timeline-card.teal {
    background: var(--cream);
}

.timeline-card.teal::before {
    background: var(--green-dark);
}

.timeline-card.teal i,
.timeline-card.teal svg,
.timeline-card.teal h4 {
    color: var(--green-dark);
}

.timeline-card.teal span {
    color: var(--green);
}

.timeline-card.dark {
    background: white;
}

.timeline-card.dark::before {
    background: var(--gray-400);
}

.timeline-card.dark i,
.timeline-card.dark svg,
.timeline-card.dark h4 {
    color: var(--green);
}

.timeline-card.dark span {
    color: var(--green);
    opacity: 0.7;
}

/* Mobile-Optimized Timeline */
@media (max-width: 768px) {
    .timeline-section {
        padding: 2.5rem 1.25rem;
        border-radius: 16px;
    }

    .timeline-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Simplified mobile layout */
    .timeline-line {
        left: 20px;
        width: 3px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        padding-left: 50px !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 12px;
        right: auto;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    /* Compact mobile cards */
    .timeline-card {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .timeline-card::before {
        width: 40px;
        height: 40px;
    }

    .timeline-card:hover::before {
        width: 50px;
        height: 50px;
    }

    .timeline-card i,
    .timeline-card svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.5rem;
    }

    .timeline-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
    }

    .timeline-card span {
        font-size: 0.85rem;
    }

    /* Remove pulse animation on mobile for performance */
    .timeline-dot {
        animation: none;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .timeline-title {
        font-size: 1.75rem;
    }

    .timeline-card {
        padding: 1rem 1.25rem;
    }

    .timeline-card h4 {
        font-size: 1rem;
    }

    .timeline-card span {
        font-size: 0.8rem;
    }
}

/* =========================================
   EVENTS PAGE - REDUCED SIZING
   ========================================= */

/* Make events hero less overwhelming */
.events-hero-title {
    font-size: 3.5rem !important;
}

.events-hero .text-2xl {
    font-size: 1.1rem !important;
}

.events-hero .font-body {
    font-size: 0.95rem !important;
}

/* Reduce events tab sizing */
.event-type-tab {
    font-size: 0.95rem !important;
    padding: 0.75rem 1.25rem !important;
}

.event-type-tab i,
.event-type-tab svg {
    width: 18px !important;
    height: 18px !important;
}

/* Reduce competition cards sizing if present */
.competition-card h3,
.event-card h3 {
    font-size: 1.5rem !important;
}

.competition-card p,
.event-card p {
    font-size: 0.9rem !important;
}

/* Responsive sizing for mobile */
@media (max-width: 900px) {
    .events-hero-title {
        font-size: 2.5rem !important;
    }

    .events-hero .text-2xl {
        font-size: 1rem !important;
    }

    .event-type-tab {
        font-size: 0.85rem !important;
        padding: 0.65rem 1rem !important;
    }
}

@media (max-width: 600px) {

    /* Reduce events hero height on mobile */
    .events-hero {
        min-height: 35vh !important;
        padding: 3rem 0 2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .events-hero-title {
        font-size: 2rem !important;
    }

    .events-hero .text-2xl {
        font-size: 0.95rem !important;
    }

    .events-hero .font-body {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }

    .event-type-tab {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.9rem !important;
    }

    .competition-card h3,
    .event-card h3 {
        font-size: 1.25rem !important;
    }
}

/* =========================================
   MOBILE REGISTER BUTTON
   ========================================= */

.mobile-register-btn {
    display: block !important;
    margin-top: 1.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: var(--red) !important;
    color: white !important;
    text-align: center !important;
    border-radius: var(--radius-lg) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    font-family: var(--font-accent) !important;
    text-decoration: none !important;
    transition: all var(--transition-base) !important;
    box-shadow: 0 3px 10px rgba(217, 4, 41, 0.25) !important;
}

.mobile-register-btn:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 14px rgba(217, 4, 41, 0.35) !important;
}

/* =========================================
   FOOTER REGISTER BUTTON
   ========================================= */

.footer-register-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.75rem;
    background: var(--red);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: var(--font-accent);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.footer-register-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 4, 41, 0.4);
}

/* =========================================
   IMPROVED MOBILE FOOTER
   ========================================= */

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column !important;
        gap: 2.5rem !important;
        text-align: left !important;
    }

    .footer-brand,
    .footer-nav,
    .footer-contact {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .footer-brand h2 {
        font-size: 2.5rem !important;
    }

    .footer-brand p {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .footer-nav,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav a,
    .footer-contact p {
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start !important;
    }

    .footer-register-btn {
        display: inline-block;
        margin: 1rem 0 0 !important;
    }
}

/* =========================================
   STATS/CORE VALUES MOBILE SIZING
   ========================================= */

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
    }

    .stats-desc {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .stat-item {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .stat-item-featured .stat-value {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    .stats-title {
        font-size: 1.875rem !important;
    }

    .stats-desc {
        font-size: 0.85rem !important;
    }

    .stat-value {
        font-size: 1.75rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    .stat-item {
        padding: 0.875rem !important;
    }

    .stat-item-featured .stat-value {
        font-size: 2.25rem !important;
    }
}

/* =========================================
   17. COMPACT TIMELINE & SPLIT LAYOUT
   ========================================= */

/* Prizes at Top - Horizontal Layout */
.prizes-top-card {
    margin-bottom: 2rem;
}

.prizes-horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.prizes-horizontal .prize-item {
    padding: 1rem 0.75rem;
}

.prizes-horizontal .prize-rank {
    font-size: 0.9rem;
}

.prizes-horizontal .prize-amount {
    font-size: 1rem;
}

.prizes-horizontal .prize-extras {
    font-size: 0.7rem;
}

/* Honorable and Favorite text colors for readability */
.prizes-horizontal .prize-item.honorable .prize-amount,
.prizes-horizontal .prize-item.honorable .prize-extras,
.prizes-horizontal .prize-item.honorable .prize-rank {
    color: #1a4030 !important;
}

.prizes-horizontal .prize-item.favorite .prize-amount,
.prizes-horizontal .prize-item.favorite .prize-extras,
.prizes-horizontal .prize-item.favorite .prize-rank {
    color: #8b1a2b !important;
}

/* Event Split Layout - Timeline Left, Info Right */
.event-split-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-column {
    position: relative;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Compact Timeline Section */
.timeline-section.compact {
    padding: 2rem 1.5rem;
    margin: 0;
    border-radius: 20px;
}

.timeline-section.compact .timeline-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Compact Timeline Visual - Center Line Layout */
.compact-timeline {
    position: relative;
    max-width: 100%;
}

.compact-timeline .timeline-line {
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
}

/* Compact Timeline Items - Alternating Left/Right */
.timeline-item-compact {
    position: relative;
    width: 50%;
    padding: 0.5rem 1.5rem;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInTimeline 0.5s ease forwards;
}

.timeline-item-compact:nth-child(1) {
    animation-delay: 0.05s;
}

.timeline-item-compact:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-item-compact:nth-child(3) {
    animation-delay: 0.15s;
}

.timeline-item-compact:nth-child(4) {
    animation-delay: 0.2s;
}

.timeline-item-compact:nth-child(5) {
    animation-delay: 0.25s;
}

.timeline-item-compact:nth-child(6) {
    animation-delay: 0.3s;
}

.timeline-item-compact:nth-child(7) {
    animation-delay: 0.35s;
}

.timeline-item-compact:nth-child(8) {
    animation-delay: 0.4s;
}

.timeline-item-compact:nth-child(9) {
    animation-delay: 0.45s;
}

.timeline-item-compact:nth-child(10) {
    animation-delay: 0.5s;
}

.timeline-item-compact:nth-child(11) {
    animation-delay: 0.55s;
}

/* Odd items - Left side */
.timeline-item-compact:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
    text-align: right;
}

/* Even items - Right side */
.timeline-item-compact:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
    text-align: left;
}

/* Compact Timeline Dot - Center position */
.timeline-dot-compact {
    position: absolute;
    top: 0.75rem;
    width: 14px;
    height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--cream);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(217, 4, 41, 0.3);
}

/* Dot position for odd (left side) */
.timeline-item-compact:nth-child(odd) .timeline-dot-compact {
    right: -7px;
}

/* Dot position for even (right side) */
.timeline-item-compact:nth-child(even) .timeline-dot-compact {
    left: -7px;
}

/* Compact Timeline Card */
.timeline-card-compact {
    background: var(--cream);
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* Left side cards - border on right */
.timeline-item-compact:nth-child(odd) .timeline-card-compact {
    border-right: 3px solid var(--green);
    border-left: none;
}

/* Right side cards - border on left */
.timeline-item-compact:nth-child(even) .timeline-card-compact {
    border-left: 3px solid var(--green);
    border-right: none;
}

.timeline-card-compact:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.timeline-card-compact h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: var(--green);
    line-height: 1.2;
}

.timeline-card-compact span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-dark);
    opacity: 0.8;
}

/* Compact Timeline Color Variants */
.timeline-card-compact.green {
    border-color: var(--red) !important;
    background: var(--green);
}

.timeline-card-compact.green h4 {
    color: var(--cream);
}

.timeline-card-compact.green span {
    color: var(--cream);
    font-weight: 800;
    opacity: 1;
}

.timeline-card-compact.red {
    border-color: var(--red) !important;
}

.timeline-card-compact.red h4 {
    color: var(--red);
}

.timeline-card-compact.teal {
    border-color: var(--green-dark) !important;
}

.timeline-card-compact.teal h4 {
    color: var(--green-dark);
}

.timeline-card-compact.dark {
    border-color: #555 !important;
    background: white;
}

.timeline-card-compact.dark h4 {
    color: #333;
}

/* Responsive Compact Timeline */
@media (max-width: 1024px) {
    .prizes-horizontal {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-split-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-column {
        order: 2;
    }

    .info-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .prizes-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-section.compact {
        padding: 1.5rem 1rem;
    }

    .timeline-section.compact .timeline-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    /* Mobile: Single column timeline */
    .compact-timeline .timeline-line {
        left: 15px;
        transform: none;
    }

    .timeline-item-compact,
    .timeline-item-compact:nth-child(odd),
    .timeline-item-compact:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 40px;
        padding-right: 0.5rem;
        text-align: left;
    }

    .timeline-item-compact:nth-child(odd) .timeline-dot-compact,
    .timeline-item-compact:nth-child(even) .timeline-dot-compact {
        left: 8px;
        right: auto;
    }

    .timeline-item-compact:nth-child(odd) .timeline-card-compact,
    .timeline-item-compact:nth-child(even) .timeline-card-compact {
        border-left: 3px solid var(--green);
        border-right: none;
    }

    .timeline-card-compact {
        padding: 0.5rem 0.75rem;
    }

    .timeline-card-compact h4 {
        font-size: 0.8rem;
    }

    .timeline-card-compact span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .prizes-horizontal {
        grid-template-columns: 1fr;
    }

    .prizes-horizontal .prize-item {
        padding: 0.75rem;
    }
}

/* =========================================
   18. COMPACT STATS SECTION
   ========================================= */

.stats-section-compact {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
    padding: 2rem 0;
}

.stats-header-compact {
    margin-bottom: 1.5rem;
}

.stats-header-compact .text-dark {
    color: var(--cream) !important;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.stat-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-compact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stat-compact-value {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-compact-value .stat-plus {
    color: #FFD700;
    font-size: 1.2rem;
}

.stat-compact-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Responsive Stats Compact */
@media (max-width: 1024px) {
    .stats-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-compact {
        padding: 0.75rem;
    }

    .stat-compact-value {
        font-size: 1.4rem;
    }

    .stat-compact-label {
        font-size: 0.65rem;
    }
}

/* =========================================
   19. MODERN FOOTER
   ========================================= */

.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 0.75rem;
}

.footer-brand-title {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cream);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item i,
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: block;
}

.footer-contact-item div span {
    margin-bottom: 0.25rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.social-btn:hover {
    background: var(--green);
    transform: translateY(-3px);
}

.social-btn i,
.social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-social-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-col {
        order: 1;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* =========================================
   SPONSORS SECTION
   ========================================= */
.sponsors-coming-soon {
    text-align: center;
    padding: 3rem 0;
}

.sponsors-soon-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

/* =========================================
   PAST EVENTS COMBINED SECTION
   ========================================= */
.past-events-combined {
    background: linear-gradient(180deg, var(--green) 0%, #2d6850 100%);
}

.past-events-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
}

/* Stats Column */
.past-events-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

/* Center the last item when there's an odd number (5 items) */
.past-events-stats .stat-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    transform: none;
    /* Remove any rotation/slant */
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    display: block;
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-plus {
    color: var(--red);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: var(--space-2);
}

/* Slider Column */
.past-events-slider {
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.event-slide.active {
    opacity: 1;
    z-index: 1;
}

.event-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6) var(--space-8);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: var(--white);
}

.slide-overlay h3 {
    font-size: 2rem;
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-overlay p {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-arrow i {
    width: 22px;
    height: 22px;
}

.slider-prev {
    left: var(--space-4);
}

.slider-next {
    right: var(--space-4);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot:hover {
    background: var(--gray-400);
}

.dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* =========================================
   SPONSORS COMING SOON
   ========================================= */
.sponsors-coming-soon {
    text-align: center;
    padding: var(--space-16) 0;
}

.coming-soon-text {
    font-size: 3.5rem;
    color: var(--gray-400);
    letter-spacing: 0.15em;
    margin: 0;
}

/* Responsive Past Events */
@media (max-width: 900px) {
    .past-events-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .past-events-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        order: 2;
    }

    /* Keep last item centered on tablet */
    .past-events-stats .stat-item:last-child:nth-child(odd) {
        max-width: 60%;
    }

    .past-events-slider {
        order: 1;
    }

    .stat-item {
        padding: var(--space-4);
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .slider-wrapper {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .past-events-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-wrapper {
        height: 280px;
    }

    .slide-overlay {
        padding: var(--space-4) var(--space-5);
    }

    .slide-overlay h3 {
        font-size: 1.5rem;
    }

    .slide-overlay p {
        font-size: 0.875rem;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .coming-soon-text {
        font-size: 2.5rem;
    }
}

/* =========================================
   VENUE & SCHEDULE DETAILS SECTION
   ========================================= */
.venue-details-card {
    margin-top: var(--space-6);
}

.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-6);
}

.venue-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.venue-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.venue-image-link img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.venue-image-link:hover img {
    transform: scale(1.05);
}

.venue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: white;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.venue-overlay i {
    width: 24px;
    height: 24px;
    color: white;
}

.venue-image-link:hover .venue-overlay {
    background: linear-gradient(0deg, rgba(58, 122, 92, 0.95) 0%, rgba(58, 122, 92, 0.7) 50%, transparent 100%);
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    justify-content: center;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green);
}

.schedule-item i {
    color: var(--green);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.schedule-item strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.schedule-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--space-2);
    transition: all var(--transition-base);
}

.venue-link:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.venue-link i {
    width: 16px;
    height: 16px;
}

.venue-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.venue-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.venue-image:hover img {
    transform: scale(1.05);
}

/* Responsive Venue Layout */
@media (max-width: 900px) {
    .venue-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .venue-map iframe {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .schedule-item {
        padding: var(--space-3);
    }

    .venue-image img {
        height: 150px;
    }
}

/* =========================================
   HASHTAG SECTION STYLING
   ========================================= */
.hashtag-card {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-left: 4px solid var(--green);
    padding: 1.5rem !important;
    /* Reduced from 2rem */
    margin-bottom: 0 !important;
    /* Remove bottom margin for alignment */
}

.hashtag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* Reduced from 0.75rem */
    margin: 0.75rem 0 1rem 0;
    /* Reduced margins */
}

.hashtag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 0.4rem 0.85rem;
    /* Reduced from 0.5rem 1rem */
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    /* Reduced from 0.85rem */
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--green-200);
}

.hashtag:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 122, 92, 0.3);
}

.hashtag-register-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    padding: 0.75rem 2rem;
    /* Reduced from 0.875rem */
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 1rem;
    /* Reduced from 1.1rem */
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    margin-top: 0;
}

.hashtag-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

/* Compact spacing for event cards in split layout */
.event-split-layout .event-card {
    margin-bottom: 0.75rem;
    /* Reduced from 1.25rem */
    padding: 1.5rem;
    /* Reduced from 2rem */
}

.event-split-layout .event-card:last-child {
    margin-bottom: 0;
}

/* Theme card more compact */
.theme-card {
    padding: 1.5rem !important;
}

.theme-card .theme-text {
    margin: 0;
    line-height: 1.5;
    /* More compact line height */
}

/* Responsive Hashtags */
@media (max-width: 768px) {
    .hashtag {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .hashtag-register-btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .event-split-layout .event-card {
        padding: 1.25rem;
    }
}

/* =========================================
   COMPACT LAYOUT FOR BIM & COMPEX
   ========================================= */
.event-column-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.compact-theme {
    padding: 1rem !important;
    margin-bottom: 0 !important;
}

.compact-theme .theme-text {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.compact-timeline {
    padding: 1rem !important;
    margin-bottom: 0 !important;
}

.compact-timeline .highlight-date {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* Ensure alignment */
.event-content-grid {
    align-items: stretch;
}

.event-content-grid>div {
    display: flex;
    flex-direction: column;
}

/* Center register button for main events */
.centered-register {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-register .btn-register {
    display: inline-flex;
}

/* =========================================
   SPEAKERS BANNER - Standing Silhouettes
   ========================================= */
.speakers-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    position: relative;
    overflow: visible;
}

.speakers-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
}

.speakers-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.speaker-silhouette-standing {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.speaker-silhouette-standing:hover {
    transform: scale(1.1) translateY(-8px);
    z-index: 10;
}

/* Carousel dots - hidden on desktop */
.speaker-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.speaker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(58, 122, 92, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.speaker-dot.active {
    background: var(--green);
    transform: scale(1.2);
}

.silhouette-shape {
    width: 100px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(180deg,
            rgba(249, 245, 234, 0.9) 0%,
            rgba(249, 245, 234, 0.95) 50%,
            rgba(249, 245, 234, 1) 100%);
    border-radius: 60px 60px 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.silhouette-shape::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(249, 245, 234, 0.95) 0%,
            rgba(249, 245, 234, 1) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.silhouette-shape i,
.silhouette-shape svg {
    width: 50px;
    height: 50px;
    color: var(--green);
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.silhouette-text {
    font-family: var(--font-head);
    font-size: 0.7rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 0.5rem;
    z-index: 1;
}

/* Speaker Image Styling */
.speaker-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    margin-bottom: 15px;
}

.speaker-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
}

.speaker-silhouette-standing:hover .silhouette-shape {
    background: linear-gradient(180deg,
            rgba(249, 245, 234, 1) 0%,
            rgba(240, 235, 220, 1) 50%,
            rgba(230, 225, 210, 1) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.coming-soon-text {
    font-family: var(--font-head);
    font-size: 0.75rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-label {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 50px;
}

.speaker-silhouette-standing:hover .coming-soon-text {
    opacity: 1;
}

/* Responsive Speakers Banner */
@media (max-width: 1200px) {
    .silhouette-shape {
        width: 100px;
        height: 150px;
        border-radius: 50px 50px 15px 15px;
    }

    .silhouette-shape::before {
        width: 65px;
        height: 65px;
        top: -40px;
    }

    .silhouette-shape i,
    .silhouette-shape svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .speakers-banner {
        padding: 0;
        margin: 0;
    }

    .speakers-container {
        position: relative;
        overflow: visible;
        width: 100%;
        justify-content: center;
        padding-top: 0;
    }

    .speaker-image {
        max-width: 280px;
        margin-bottom: 5px;
    }

    .speaker-silhouette-standing {
        display: none;
        flex: 0 0 100%;
        justify-content: center;
    }

    .speaker-silhouette-standing.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeInSpeaker 0.6s ease-in-out;
    }

    @keyframes fadeInSpeaker {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .speaker-carousel-dots {
        display: flex;
    }

    .silhouette-shape {
        width: 100px;
        height: 150px;
        border-radius: 50px 50px 15px 15px;
    }

    .silhouette-shape::before {
        width: 65px;
        height: 65px;
        top: -40px;
    }

    .silhouette-shape i,
    .silhouette-shape svg {
        width: 50px;
        height: 50px;
    }

    .coming-soon-text {
        font-size: 0.75rem;
        margin-top: 0.75rem;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .speakers-banner {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-around;
    }

    .silhouette-shape {
        width: 60px;
        height: 90px;
    }

    .silhouette-shape::before {
        width: 40px;
        height: 40px;
        top: -25px;
    }
}

/* =========================================
   TEASER VIDEO SECTION
   ========================================= */
.teaser-section {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f9f7f4 100%);
    position: relative;
}

/* Teaser Header Specifics */
.teaser-section .section-header span {
    font-size: 2.5rem;
    /* Increased from text-2xl (1.5rem) */
    display: block;
    margin-bottom: 0.5rem;
}

.teaser-section .section-title {
    font-size: 4rem;
    /* Significantly bigger */
    line-height: 0.9;
}

.teaser-section .section-subtitle {
    color: var(--green);
    font-weight: 500;
    /* Optional: make it slightly bolder so it's readable */
}

.teaser-video-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.teaser-description {
    padding: 2rem;
}

.teaser-description h3 {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.teaser-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-teaser {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(213, 48, 0, 0.3);
}

.btn-teaser:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(213, 48, 0, 0.4);
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.btn-teaser i,
.btn-teaser svg {
    width: 24px;
    height: 24px;
}

/* Responsive Teaser */
@media (max-width: 1024px) {
    .teaser-video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .teaser-description {
        padding: 1rem;
        text-align: center;
    }

    .btn-teaser {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .teaser-section {
        padding: var(--space-24) 0;
    }

    /* Teaser Header Mobile Adjustment */
    .teaser-section .section-header span {
        font-size: 1.5rem;
        /* Reduced for mobile */
    }

    .teaser-section .section-title {
        font-size: 2.5rem;
        /* Reduced for mobile */
    }

    .teaser-description h3 {
        font-size: 1.5rem;
    }

    .teaser-description p {
        font-size: 1rem;
    }

    .video-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .teaser-description h3 {
        font-size: 1.25rem;
    }

    .btn-teaser {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Loading Spinner */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}