/* ===================================================
   SAUDI BUILD 2026 - DESERT LUXE DESIGN SYSTEM
   Complete Redesign - Premium Exhibition Landing Page
   =================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Primary Colors */
    --emerald: #006C35;
    --emerald-dark: #004D26;
    --emerald-light: #00A854;

    /* Accent Colors */
    --gold: #C9A227;
    --gold-light: #E5C76B;
    --gold-dark: #9B7B1A;

    /* Neutral Palette */
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --sand: #F5F0E8;
    --sand-dark: #E8E0D0;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(0, 108, 53, 0.15);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--sand);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-emerald {
    color: var(--emerald) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-charcoal {
    color: var(--charcoal) !important;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-emerald {
    background-color: var(--emerald) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-charcoal {
    background-color: var(--charcoal) !important;
}

.bg-sand {
    background-color: var(--sand) !important;
}

/* ===== NAVIGATION ===== */
.navbar-desert {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.4s var(--transition-smooth);
}

.navbar-desert.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand-badge {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.nav-brand-text span {
    color: var(--emerald);
}

.navbar-desert .nav-link {
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-desert .nav-link:hover {
    color: var(--emerald);
}

.navbar-desert .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-desert .nav-link:hover::after {
    width: 60%;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    border: none;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
    color: var(--charcoal);
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 108, 53, 0.25);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 108, 53, 0.4);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    /* Symmetric padding for better visual balance */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(0, 108, 53, 0.75) 0%,
            rgba(0, 77, 38, 0.85) 50%,
            rgba(26, 26, 26, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.hero-edition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-edition-number {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 0.8;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.hero-edition-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3em;
    line-height: 1.4;
    text-align: left;
    border-left: 1px solid rgba(201, 162, 39, 0.3);
    padding-left: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero-title .title-serif {
    font-family: var(--font-display);
    font-weight: 400;
    color: white;
    font-style: italic;
}

.hero-title .title-sans {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.75rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-outline-emerald {
    background: rgba(0, 108, 53, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--emerald-light);
    color: white;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-emerald:hover {
    background: var(--emerald);
    color: white;
    box-shadow: 0 0 25px rgba(0, 168, 84, 0.3);
}

/* ===== QUICK STATS BAR ===== */
.stats-bar {
    background: var(--charcoal);
    padding: 3rem 0;
    position: relative;
    z-index: 20;
    margin-top: -50px;
    /* Slight overlap for better flow */
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-bar-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.3s var(--transition-smooth);
}

.stats-bar-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.stats-bar-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stats-bar-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-bar {
        margin-top: 0;
        padding: 2rem 0;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== STATS TICKER ===== */
.stats-ticker {
    background: var(--charcoal);
    padding: 1.25rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    white-space: nowrap;
    color: white;
    font-weight: 500;
}

.ticker-item strong {
    color: var(--gold);
    font-size: 1.25rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.bento-card.span-6 {
    grid-column: span 6;
}

.bento-card.span-4 {
    grid-column: span 4;
}

.bento-card.span-8 {
    grid-column: span 8;
}

.bento-card.span-12 {
    grid-column: span 12;
}

.bento-card-dark {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: white;
}

.bento-card-emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: white;
}

.bento-card-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
}

/* ===== KEY FIGURES GRID ===== */
.key-figures-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: -30px;
    position: relative;
    z-index: 30;
}

.figure-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--transition-smooth);
}

.figure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 53, 26, 0.1);
    border-color: var(--gold-light);
}

.figure-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.figure-card:hover .figure-icon {
    background: var(--gold);
    color: white;
    transform: rotateY(180deg);
}

.figure-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.figure-label {
    font-size: 0.85rem;
    color: var(--slate-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
    .key-figures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .key-figures-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .key-figures-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bento-stat {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.bento-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ===== WHY EXHIBIT CARDS ===== */
.why-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--emerald);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 108, 53, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card.secondary::before {
    background: var(--gold);
}

.why-card.accent::before {
    background: var(--emerald-light);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 108, 53, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--emerald);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.why-card.secondary .why-icon {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
}

.why-card.accent .why-icon {
    background: rgba(0, 168, 84, 0.08);
    color: var(--emerald-light);
}

.why-card:hover .why-icon {
    scale: 1.1;
    transform: rotate(-5deg);
}

.why-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--charcoal);
}

.why-text {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.why-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--sand);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
}

/* ===== BENTO DETAILS CARDS ===== */
.bento-details-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 20, 0.05);
    transition: all 0.3s ease;
}

.bento-details-card:hover {
    background: var(--sand);
    border-color: var(--gold);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 108, 53, 0.1);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTOR CARDS ===== */
.sector-card {
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.sector-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-card:hover .sector-image img {
    transform: scale(1.1);
}

.sector-edition {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--emerald);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
}

.sector-content {
    padding: 1.5rem;
}

.sector-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.sector-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.bg-emerald-light {
    background: rgba(0, 108, 53, 0.1);
}

.text-emerald {
    color: var(--emerald) !important;
}

/* ===== SUMMIT BANNER ===== */
.summit-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate-800) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.summit-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.summit-content {
    position: relative;
    z-index: 1;
}

.summit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.summit-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.summit-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* ===== PROJECT GALLERY ===== */
.projects-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
}

.project-card {
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.project-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.project-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

/* ===== VENUE SECTION ===== */
.venue-section {
    background: var(--sand);
}

/* ===== CAROUSEL GRID SYSTEM ===== */
.carousel-container {
    position: relative;
    padding: 1rem 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.carousel-control:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.carousel-control.prev {
    left: -24px;
}

.carousel-control.next {
    right: -24px;
}

@media (max-width: 1200px) {
    .carousel-control {
        display: none;
        /* Hide on smaller screens, use native scroll */
    }
}



/* Adjustments for mobile */
@media (max-width: 768px) {
    .projects-gallery .project-card {
        flex: 0 0 280px;
    }

    .sectors-scroll .sector-card {
        flex: 0 0 260px;
    }
}

.venue-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.venue-info-card:hover {
    transform: translateX(5px);
}

.venue-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 108, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== CONTACT FORM ===== */
.form-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate-900) 100%);
}

.form-control-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    outline: none;
    color: white;
}

.form-select.form-control-dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Fix dropdown options visibility */
.form-select.form-control-dark option {
    background-color: #1a1a1a;
    color: white;
    padding: 0.75rem 1rem;
}

.form-select.form-control-dark option:hover,
.form-select.form-control-dark option:checked {
    background-color: #006C35;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand-badge {
    background: var(--emerald);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand-text span {
    color: var(--emerald);
}

.footer-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-stats {
        display: none;
    }

    .bento-card.span-6,
    .bento-card.span-4,
    .bento-card.span-8 {
        grid-column: span 6;
    }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-edition-number {
        font-size: 6rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.75rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .bento-card.span-6,
    .bento-card.span-4,
    .bento-card.span-8 {
        grid-column: span 12;
    }
}

@media (max-width: 767.98px) {
    .hero-edition {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-edition-text {
        writing-mode: horizontal-tb;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-cta {
        display: flex;
        gap: 0.75rem;
    }

    body {
        padding-bottom: 80px;
    }


}

@media (max-width: 575.98px) {
    .hero-edition-number {
        font-size: 4.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .bento-stat {
        font-size: 2.5rem;
    }

    .countdown-item {
        min-width: 55px;
    }
}

/* ===== INTERNATIONAL SUMMIT ===== */
.summit-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate-900) 100%);
    padding: 6rem 0;
    color: white;
}

.summit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.summit-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.summit-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.summit-img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991.98px) {
    .summit-banner {
        padding: 4rem 0;
        text-align: center;
    }

    .summit-desc {
        margin-left: auto;
        margin-right: auto;
    }
}