@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===================================
   ATI Design System - CSS Variables
   Based on Design System Documentation
   =================================== */

:root {
    /* Color Palette */
    --navy: #08312A;
    /* Main Headers, Footer, Brand */
    --deep-navy: #08312A;
    /* Consistent with navy */
    --gold: #00E47C;
    /* Accent Green */
    --gold-light: #33E996;
    /* Lighter Accent */
    --gold-dark: #00B361;
    /* Darker Accent */
    --ivory: #FFFFFF;
    /* Main Background */
    --charcoal: #08312A;
    /* Dark Green for text consistency */
    --sage-green: #1AD27F;
    --crimson: #DC143C;

    /* New Background Variables */
    --bg-light: #E0F0FF;
    /* Very Light Blue */
    --bg-muted: #B0C0D0;
    /* Grey-blue */
    --neutral-pale: #E0B0A0;
    /* Pale neutral */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, #05201B 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(8, 49, 42, 0.9) 0%, rgba(8, 49, 42, 0.95) 100%);

    /* Typography */
    --font-heading: 'Arimo', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing (8px base unit) */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4rem;
    /* 64px */
    --space-3xl: 6rem;
    /* 96px */

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(0, 228, 124, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-md);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--ivory);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

.text-large {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* ===================================
   Layout Components
   =================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-3xl) 0;
}

.overview.section {
    padding-top: var(--space-md);
}

.section--dark {
    background: var(--gradient-primary);
    color: var(--ivory);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--ivory);
}

.section--light {
    background-color: var(--bg-light);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.section--dark .section__subtitle {
    color: var(--ivory);
}

/* ===================================
   Navigation Header
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* "A darkened, low-contrast background image related to trade... with a brand-color overlay" */
    background:
        linear-gradient(180deg, rgba(8, 49, 42, 0.95) 0%, rgba(8, 49, 42, 0.98) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80&fit=crop');
    /* Corporate/Infrastructure texture */
    background-size: cover;
    background-position: center;
    color: var(--ivory);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

#nav-close {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    #nav-close {
        display: block !important;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__logo-img {
    height: 50px;
    /* Slightly increased for visibility */
    width: auto;
    object-fit: contain;
}

.hero-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: var(--space-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-xs);
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    color: var(--ivory);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-base);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 80%;
}

.nav__link:hover {
    color: var(--gold);
}

.nav__link.active {
    color: var(--gold);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--ivory);
    cursor: pointer;
}

#nav-close {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: var(--gradient-primary);
        padding: var(--space-4xl) 0;
        transition: top 0.4s ease-in-out;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        text-align: center;
        visibility: hidden;
    }

    .nav__menu.show-menu {
        top: 0;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--space-xl);
    }

    #nav-close {
        display: block !important;
        position: absolute;
        top: var(--space-lg);
        right: var(--space-lg);
        font-size: 1.8rem;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}




.hero__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero__parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero__content {
    text-align: center;
    color: var(--ivory);
    z-index: 1;
    padding: var(--space-2xl) 0;
}

.hero__title {
    color: var(--ivory);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

/* ===================================
   New Event Highlight Section
   =================================== */

.event-highlight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    /* Removed padding to let image bleed or fit layout naturally */
}

.event-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .event-layout-grid {
        grid-template-columns: 1fr 1fr;
        /* 50/50 split */
        gap: var(--space-3xl);
    }
}

/* Left Column: Flyer */
.event-flyer-column {
    position: relative;
    padding: var(--space-md);
}

.flyer-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flyer-wrapper:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.main-flyer-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    /* Prevent pixel gap */
}

/* Right Column: Info */
.event-info-column {
    padding: var(--space-lg);
}

.event-info-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.event-badge {
    align-self: flex-start;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.event-title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--navy);
    margin: 0;
}

.event-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-style: italic;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
    border-left: 4px solid var(--gold);
    padding-left: var(--space-md);
}

.event-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.meta-block {
    background: #f4fcf8;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 228, 124, 0.2);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    transition: transform 0.2s ease;
}

.meta-block:hover {
    transform: translateY(-3px);
    background: #eefbf5;
}

.meta-icon {
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
}

.meta-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.event-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

/* ===================================
   Sponsors Section Refinement
   =================================== */

.section--sponsors {
    background-color: #fcfcfc;
    /* Off-white / clean neutral */
    border-top: 1px solid #eee;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.sponsor-item {
    background: white;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    min-width: 250px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.sponsor-item span {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sponsor-item small {
    font-weight: 400;
    color: #666;
    font-size: 0.9rem;
}

/* ===================================
   Tourist Attractions Section
   =================================== */

#attractions {
    background-color: #f6fdf9;
    /* Soft mint green to match ATI theme */
}

.attractions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row */
    }
}

.attraction-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.attraction-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.attraction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.attraction-card:hover .attraction-img {
    transform: scale(1.05);
}

.attraction-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
}

.badge--nature {
    border-left: 3px solid #4CAF50;
}

.badge--culture {
    border-left: 3px solid #FF9800;
}

.badge--heritage {
    border-left: 3px solid #795548;
}

.badge--leisure {
    border-left: 3px solid #2196F3;
}

.attraction-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.attraction-title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.attraction-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.attraction-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.attraction-link:hover {
    color: var(--gold);
    gap: var(--space-sm);
}

.hero__title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll-link {
    color: var(--gold);
    font-size: 2rem;
}

/* Curiosity Wheel */
.curiosity-wheel {
    position: absolute;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 150px;
    height: 150px;
}

.wheel__container {
    position: relative;
}

.wheel__circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    opacity: 0.5;
}

.wheel__spoke {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
    opacity: 0.3;
}

.wheel__fact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 0.75rem;
    color: var(--ivory);
    padding: var(--space-xs);
    max-width: 120px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--ivory);
    border-color: var(--gold);
}

.btn--ghost:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn--small {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

/* ===================================
   Cards
   =================================== */

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--navy);
}

.card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 49, 42, 0.2);
    /* Subtle brand overlay */
    transition: background var(--transition-base);
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    /* Soften the image */
    transition: transform var(--transition-base), filter var(--transition-base);
}

.card--hover:hover .card__image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.card--hover:hover .card__image::after {
    background: rgba(8, 49, 42, 0);
}

.card__content {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card--hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card__description {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.card__link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.card__link:hover {
    gap: var(--space-sm);
}

/* ===================================
   Overview Grid
   =================================== */

.overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* ===================================
   Impact Process Section
   =================================== */

.impact {
    background-color: #f8fcfb;
    /* Very subtle site-matched background */
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    position: relative;
}

.process-step {
    position: relative;
    padding: var(--space-lg);
    z-index: 1;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        /* Aligned with icon center */
        left: 60%;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
        opacity: 0.3;
        z-index: -1;
    }
}

.process-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.process-step:hover .process-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
    box-shadow: var(--shadow-small);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}


/* ===================================
   Programs & Leadership Sections
   =================================== */

.programs {
    background-color: var(--bg-white);
}

.leadership {
    background-color: #f8fcfb;
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.leadership__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* Specific styling for leader images to feel like portraits */
.leadership .card__image {
    height: 180px;
    /* Compact portrait height */
}

.leader-name {
    margin-top: var(--space-xs);
    margin-bottom: 2px;
    font-size: 1rem;
    /* Reduced font size */
}

.leader-title {
    color: var(--gold);
    font-size: 0.75rem;
    /* Reduced font size */
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure buttons are centered or start-aligned based on section feel */
.leadership .card__content {
    padding: var(--space-sm) var(--space-md);
    /* Tightened padding */
}

.leadership .card__content .btn {
    display: none;
    /* Hidden for simplicity */
}

/* Responsive */
@media (max-width: 991px) {

    .programs__grid,
    .leadership__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .programs__grid,
    .leadership__grid {
        grid-template-columns: 1fr;
    }
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat__label {
    font-size: 1.125rem;
    color: var(--ivory);
    opacity: 0.9;
}

/* ===================================
   CTA Section
   =================================== */


/* ===================================
   Partners & Ecosystem Section
   =================================== */

.partners {
    background-color: #f8fcfb;
    padding: var(--space-2xl) 0;
}

.partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: var(--space-xl);
}

.partner-logo {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   Final Call to Action Section
   =================================== */

.final-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
    /* Premium brand watermark background */
    background: linear-gradient(135deg, rgba(8, 49, 42, 0.9) 0%, rgba(5, 32, 27, 0.95) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.final-cta__content {
    position: relative;
    z-index: 2;
}

.final-cta__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--ivory) !important;
}

.final-cta__description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    opacity: 0.9;
    line-height: 1.8;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.final-cta .btn {
    min-width: 220px;
}

.final-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .partners__grid {
        gap: 2rem;
    }

    .partner-logo {
        max-height: 40px;
    }

    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
}

.btn--xlarge {
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 228, 124, 0.3);
    /* Green glow matching primary btn */
}

.btn--xlarge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 228, 124, 0.5);
}

/* ===================================
   Sponsors Visual Update
   =================================== */

.sponsor-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-md);
    filter: grayscale(100%);
    /* Elegant monochromatic look initially */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-img {
    filter: grayscale(0%);
    /* Full color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   Footer
   =================================== */

.footer {
    /* "Apply the same abstract / branded background style used in the navigation bar" */
    background:
        linear-gradient(180deg, rgba(8, 49, 42, 0.95) 0%, rgba(8, 49, 42, 0.98) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--ivory);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__logo-img {
    height: 40px;
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__tagline {
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer__title {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    opacity: 0.8;
    transition: var(--transition-base);
}

.footer__link:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: var(--space-xs);
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__newsletter-text {
    opacity: 0.8;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.footer__newsletter-input {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ivory);
    font-family: var(--font-body);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 240, 0.5);
}

.footer__bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal-link {
    opacity: 0.7;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer__legal-link:hover {
    opacity: 1;
    color: var(--gold);
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
}

.page-header--navy {
    background: var(--gradient-primary);
    color: var(--ivory);
}

.page-header__title {
    color: inherit;
    margin-bottom: var(--space-md);
}

.page-header__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===================================
   Responsive Design
   =================================== */

@media screen and (max-width: 1024px) {
    :root {
        --space-3xl: 4rem;
    }

    .curiosity-wheel {
        width: 120px;
        height: 120px;
        bottom: var(--space-lg);
        right: var(--space-lg);
    }
}



.attraction-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 768px) {
        .nav__menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--deep-navy);
            padding: var(--space-3xl) var(--space-lg);
            transition: var(--transition-base);
            box-shadow: var(--shadow-lg);
        }

        .nav__menu.show-menu {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-md);
        }

        .nav__toggle,
        .nav__close {
            display: block;
        }

        .nav__close {
            position: absolute;
            top: var(--space-lg);
            right: var(--space-lg);
        }

        .hero__parallax {
            background-attachment: scroll;
        }

        .hero__cta {
            flex-direction: column;
            align-items: center;
        }

        .curiosity-wheel {
            display: none;
        }

        .footer__bottom {
            flex-direction: column;
            text-align: center;
        }

        .section {
            padding: var(--space-2xl) 0;
        }
    }

    @media screen and (max-width: 480px) {
        :root {
            --container-padding: var(--space-sm);
        }

        .btn {
            width: 100%;
        }

        .hero__cta .btn {
            width: auto;
            min-width: 200px;
        }
    }

    /* ===================================
   Event Page Redesign
   =================================== */

    .event-hero {
        padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
        background: linear-gradient(rgba(8, 49, 42, 0.9), rgba(8, 49, 42, 0.8)), url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?w=1920&h=1080&fit=crop');
        background-size: cover;
        background-position: center;
        text-align: center;
        color: var(--ivory);
    }

    .event-hero__badge {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        padding: var(--space-xs) var(--space-md);
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: var(--space-md);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .event-hero__title {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: var(--space-md);
        line-height: 1.1;
    }

    .text-gold {
        color: var(--gold);
    }

    .event-hero__subtitle {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto var(--space-xl);
        opacity: 0.9;
    }

    .event-hero__meta {
        display: flex;
        justify-content: center;
        gap: var(--space-xl);
        margin-bottom: var(--space-xl);
        flex-wrap: wrap;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        font-size: 1.125rem;
        background: rgba(255, 255, 255, 0.1);
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-md);
        backdrop-filter: blur(5px);
    }

    .meta-item i {
        color: var(--gold);
    }

    .event-hero__actions {
        display: flex;
        justify-content: center;
        gap: var(--space-md);
    }

    /* Event Layout */
    .event-layout {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-2xl);
        align-items: start;
    }

    @media (max-width: 900px) {
        .event-layout {
            grid-template-columns: 1fr;
        }
    }

    .flyer-showcase {
        background: white;
        padding: var(--space-sm);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-bottom: var(--space-xl);
    }

    .flyer-img {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .event-info-block {
        margin-bottom: var(--space-xl);
    }

    .side-attraction {
        background: var(--bg-light);
        padding: var(--space-lg);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        gap: var(--space-md);
        margin-top: var(--space-xl);
        border-left: 4px solid var(--gold);
    }

    .attraction-icon {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Speakers */
    .event-sidebar {
        background: white;
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        position: sticky;
        top: 100px;
    }

    .sidebar-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-sm);
        border-bottom: 2px solid var(--bg-light);
    }

    .speakers-list {
        display: flex;
        flex-direction: column;
        gap: var(--space-lg);
    }

    .speaker-card {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }

    .speaker-img-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
        overflow: hidden;
    }

    .speaker-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .speaker-info h4 {
        font-size: 1rem;
        margin-bottom: 4px;
        color: var(--navy);
    }

    .speaker-info p {
        font-size: 0.875rem;
        color: var(--charcoal);
    }

    .btn {
        width: 100%;
    }

    .hero__cta .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ===================================
   Event Page Redesign
   =================================== */

.event-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(rgba(8, 49, 42, 0.9), rgba(8, 49, 42, 0.8)), url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--ivory);
}

.event-hero__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.text-gold {
    color: var(--gold);
}

.event-hero__subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
}

.event-hero__meta {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

.meta-item i {
    color: var(--gold);
}

.event-hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Event Layout */
.event-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .event-layout {
        grid-template-columns: 1fr;
    }
}

.flyer-showcase {
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.flyer-img {
    width: 100%;
    border-radius: var(--radius-md);
}

.event-info-block {
    margin-bottom: var(--space-xl);
}

.side-attraction {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--gold);
}

.attraction-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Speakers */
.event-sidebar {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg-light);
}

.speakers-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.speaker-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.speaker-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.speaker-info p {
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Sponsors */
.sponsors-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    text-align: center;
}

.sponsor-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
    max-width: 300px;
    padding: var(--space-md);
    border: 1px solid rgba(8, 49, 42, 0.1);
    border-radius: var(--radius-md);
}

/* Large Speaker Grid */
.speakers-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.speaker-card-large {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: var(--space-md);
}

.speaker-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.speaker-img-large-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.speaker-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-info-large {
    padding: 0 var(--space-md);
}

.speaker-name-large {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.speaker-role-large {
    font-size: 0.9rem;

    .meta-item i {
        color: var(--gold);
    }

    .event-hero__actions {
        display: flex;
        justify-content: center;
        gap: var(--space-md);
    }

    /* Event Layout */
    .event-layout {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-2xl);
        align-items: start;
    }

    @media (max-width: 900px) {
        .event-layout {
            grid-template-columns: 1fr;
        }
    }

    .flyer-showcase {
        background: white;
        padding: var(--space-sm);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-bottom: var(--space-xl);
    }

    .flyer-img {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .event-info-block {
        margin-bottom: var(--space-xl);
    }

    .side-attraction {
        background: var(--bg-light);
        padding: var(--space-lg);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        gap: var(--space-md);
        margin-top: var(--space-xl);
        border-left: 4px solid var(--gold);
    }

    .attraction-icon {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Speakers */
    .event-sidebar {
        background: white;
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        position: sticky;
        top: 100px;
    }

    .sidebar-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-sm);
        border-bottom: 2px solid var(--bg-light);
    }

    .speakers-list {
        display: flex;
        flex-direction: column;
        gap: var(--space-lg);
    }

    .speaker-card {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }

    .speaker-img-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
        overflow: hidden;
    }

    .speaker-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .speaker-info h4 {
        font-size: 1rem;
        margin-bottom: 4px;
        color: var(--navy);
    }

    .speaker-info p {
        font-size: 0.875rem;
        color: var(--charcoal);
        opacity: 0.8;
        margin: 0;
        line-height: 1.4;
    }

    /* Sponsors */
    .sponsors-grid {
        display: flex;
        justify-content: center;
        gap: var(--space-xl);
        flex-wrap: wrap;
        text-align: center;
    }

    .sponsor-item {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.125rem;
        color: var(--navy);
        max-width: 300px;
        padding: var(--space-md);
        border: 1px solid rgba(8, 49, 42, 0.1);
        border-radius: var(--radius-md);
    }

    /* Large Speaker Grid */
    .speakers-grid-large {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-xl);
        margin-top: var(--space-xl);
    }

    .speaker-card-large {
        background: white;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: var(--space-md);
    }

    .speaker-card-large:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .speaker-img-large-wrapper {
        width: 100%;
        height: 300px;
        overflow: hidden;
        margin-bottom: var(--space-md);
    }

    .speaker-img-large {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .speaker-info-large {
        padding: 0 var(--space-md);
    }

    .speaker-name-large {
        font-size: 1.25rem;
        color: var(--navy);
        margin-bottom: var(--space-xs);
    }

    .speaker-role-large {
        font-size: 0.9rem;
        color: var(--charcoal);
        opacity: 0.8;
        line-height: 1.4;
    }

    .mb-xl {
        margin-bottom: var(--space-xl);
    }

    .mt-xl {
        margin-top: var(--space-xl);
    }

    /* Event Content Layout - Side by Side */
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .event-layout {
        grid-template-columns: 1fr;
    }
}

.flyer-showcase {
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.flyer-img {
    width: 100%;
    border-radius: var(--radius-md);
}

.event-info-block {
    margin-bottom: var(--space-xl);
}

.side-attraction {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--gold);
}

.attraction-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Speakers */
.event-sidebar {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg-light);
}

.speakers-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.speaker-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.speaker-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.speaker-info p {
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Sponsors */
.sponsors-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    text-align: center;
}

.sponsor-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
    max-width: 300px;
    padding: var(--space-md);
    border: 1px solid rgba(8, 49, 42, 0.1);
    border-radius: var(--radius-md);
}

/* Large Speaker Grid */
.speakers-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.speaker-card-large {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: var(--space-md);
}

.speaker-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.speaker-img-large-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.speaker-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-info-large {
    padding: 0 var(--space-md);
}

.speaker-name-large {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg-light);
}

.speakers-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.speaker-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.speaker-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.speaker-info p {
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Sponsors */
.sponsors-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    text-align: center;
}

.sponsor-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
    max-width: 300px;
    padding: var(--space-md);
    border: 1px solid rgba(8, 49, 42, 0.1);
    border-radius: var(--radius-md);
}

/* Large Speaker Grid */
.speakers-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.speaker-card-large {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: var(--space-md);
}

.speaker-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.speaker-img-large-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.speaker-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-info-large {
    padding: 0 var(--space-md);
}

.speaker-name-large {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.speaker-role-large {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.4;
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mt-xl {
    margin-top: var(--space-xl);
}

/* Event Content Layout - Side by Side */
.event-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .event-content-layout {
        grid-template-columns: 1fr;
    }
}

.flyer-column {
    position: sticky;
    top: 100px;
}

/* Compact Speaker Cards */
.speakers-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

@media (max-width: 600px) {
    .speakers-grid-compact {
        grid-template-columns: 1fr;
    }
}

.speaker-card-compact {
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.speaker-name-compact {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.speaker-role-compact {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.3;
}

.flyer-showcase {
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.flyer-img {
    width: 100%;
    border-radius: var(--radius-md);
}

.event-info-block {
    margin-bottom: var(--space-xl);
}

.side-attraction {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--gold);
}

.attraction-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ====== LAYOUT EXTENSIONS (NO COLOR / FONT CHANGES) ====== */

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 20px;
}

.section-text {
    max-width: 800px;
    margin-bottom: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 30px;
    border-radius: 8px;
}

.attend-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.attend-list {
    margin: 20px 0;
    padding-left: 20px;
}

.attend-list li {
    margin-bottom: 10px;
}

.attend-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.attend-image img {
    width: 100%;
    border-radius: 10px;
}

.cta-box {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .attend-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== Attend Call-To-Action Section ===== */

.attend-cta {
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
}

.attend-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.attend-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
}

.attend-box p {
    max-width: 800px;
    margin: 0 auto 45px;
    font-size: 18px;
    line-height: 1.7;
}

/* Buttons */
.attend-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Primary Attend Button */
.btn-primary {
    background: #173e3c;
    color: #02ff17;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    border: 1px solid #ddd;
    color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .attend-box {
        padding: 50px 25px;
    }
}

/* ===== About the Summit Section ===== */

.about-summit {
    padding: var(--space-3xl) 20px var(--space-md);
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Text */
.about-text h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.read-more-btn:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #f4fcf8;
    padding: 10px;
    border-radius: var(--radius-lg);
}

.about-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-text p {
        max-width: 100%;
    }

    .about-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .about-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* css for focus areas */
.focus-areas {
    padding: 80px 20px;
    background-color: #ffffff;
}

.focus-areas .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.focus-areas h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.focus-areas .intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.focus-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.focus-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.focus-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* new background */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 45, 32, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    color: #1ee37b;
}

.hero p {
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 650px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #1ee37b;
    color: #043020;
}

.btn.primary:hover {
    background: #18c968;
}

.btn.outline {
    border: 2px solid #1ee37b;
    color: #fff;
}

.btn.outline:hover {
    background: #1ee37b;
    color: #043020;
}


/* ===================================
   Brand Watermark Background
   =================================== */


.bg-brand-watermark {
    /* "Use a darkened, low-contrast background image related to trade... with a brand-color overlay" */
    background-image:
        /* Brand overlay: Deep navy with a hint of transparency for the image to show through subtly */
        linear-gradient(135deg, rgba(8, 49, 42, 0.85) 0%, rgba(5, 32, 27, 0.90) 100%),
        /* Texture image: Trade/Infrastructure related */
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80&fit=crop');

    /* "Keep the design clean and premium" */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Cover the entire area */
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    position: relative;
    z-index: 1;
    color: var(--ivory);
}

/* Ensure content sits on top of the background */

/* ===================================
   Directors Page
   =================================== */
/* ===================================
   Directors Page (Redesign)
   =================================== */
.directors-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    max-width: 1000px;
    margin: 0 auto;
}

.director-card-wide {
    display: flex;
    background: #fff;
    /* Clean, sharp edges as requested */
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.director-card-wide:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.director-image-wrapper {
    flex: 0 0 35%;
    max-width: 35%;
}

.director-image-wide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.director-info-wide {
    flex: 1;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.director-bio-short {
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.director-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.view-profile-btn {
    border-radius: 0;
    /* Sharp edges */
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.director-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--space-xl);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}

.director-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

.modal-name {
    color: var(--navy);
    margin-bottom: 5px;
}

.modal-role {
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.modal-body p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.modal-contact {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.modal-social {
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .director-card-wide {
        flex-direction: column;
    }

    .director-image-wrapper {
        flex: none;
        max-width: 100%;
        height: 300px;
    }

    .director-info-wide {
        padding: var(--space-lg);
    }
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.director-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.director-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    background-color: var(--bg-light);
}

.director-info {
    padding: var(--space-md) var(--space-lg);
}

.director-name {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.director-role {
    font-size: 0.95rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-bio {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.director-social {
    display: flex;
    justify-content: flex-end;
}

.director-linkedin {
    color: #0077b5;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.director-linkedin:hover {
    color: var(--navy);
    transform: scale(1.1);
}

.bg-brand-watermark>* {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .bg-brand-watermark {
        /* Darker overlay on mobile for better readability */
        background-image:
            linear-gradient(180deg, rgba(8, 49, 42, 0.92) 0%, rgba(8, 49, 42, 0.96) 100%),
            url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1000&q=80&fit=crop');
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }
}

/* ===================================
   Hero Carousel (Redesign)
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
    padding: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Smooth Fade transition only (no zoom) */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Neutral dark gradient for better readability without oversaturation */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: var(--ivory);
}

/* Animations for text fade-in */
.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
    /* Starts hidden */
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
    /* Starts hidden */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-transform: capitalize;
}

.hero-title span {
    display: block;
    color: var(--gold);
    font-size: 0.8em;
    margin-top: 10px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: var(--space-2xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
}

.hero .btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Rounded buttons for the hero as per modern trends */
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero .btn--primary {
    background: var(--navy);
    color: var(--gold);
    border: none;
}

.hero .btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 228, 124, 0.4);
}

.hero .btn--ghost {
    background: transparent;
    color: var(--ivory);
    border: 2px solid var(--ivory);
}

.hero .btn--ghost:hover {
    background: var(--ivory);
    color: var(--navy);
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--ivory);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--ivory);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .scroll-down {
        display: none;
    }
}

/* ===================================
   Panning Map Section (About Page)
   =================================== */

.panning-map {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--navy);
}

.panning-map .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.map-bg-panning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for vertical panning */
    background-image: linear-gradient(rgba(8, 49, 42, 0.7), rgba(8, 49, 42, 0.7)),
        url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: 1;
}

.panning-map__title {
    color: var(--ivory);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.panning-map__subtitle {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 500;
}

/* ===================================
   Broader CTA Section (Join Our Mission)
   =================================== */

.cta--broad {
    padding: var(--space-4xl) 0;
}

.cta--broad .container {
    max-width: 1400px;
    /* Broader limit */
    width: 95%;
}

.cta--broad .cta__content {
    max-width: 1000px;
    /* wider content */
    margin: 0 auto;
    text-align: center;
}

.cta--broad .cta__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
}

.cta--broad .cta__description {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: var(--space-2xl);
    opacity: 1;
}

@media (max-width: 768px) {
    .panning-map {
        height: 400px;
    }

    .cta--broad {
        padding: var(--space-3xl) 0;
    }
}