
/* ===== MODERN CSS RESET & OPTIMIZATIONS ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Performance & Modern Optimizations */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== NEW COLOR SYSTEM ===== */
:root {
  /* Primary Colors - Deep Red */
  --primary: #b20000;
  --primary-light: #cc0000;
  --primary-dark: #8b0000;

  /* Neutral Colors - Dark Theme */
  --neutral-50: #faf9f6;
  --neutral-100: #f5f4f1;
  --neutral-200: #e8e6e0;
  --neutral-300: #d1cfc7;
  --neutral-400: #a8a69f;
  --neutral-500: #6b6960;
  --neutral-600: #4a4742;
  --neutral-700: #2a2724;
  --neutral-800: #1a1a1a;
  --neutral-900: #0f0f0f;

  /* Accent Colors - Warm complement to red */
  --accent: #d4af37;
  --accent-light: #e6c758;
  --accent-dark: #b8941f;

  /* Semantic Colors */
  --success: #059669;
  --warning: #d97706;
  --error: #b20000;
  --info: #0369a1;

  /* Background System */
  --background: #faf9f6;
  --background-secondary: #f5f4f1;
  --background-tertiary: #e8e6e0;
  --background-dark: #1a1a1a;
  --background-overlay: rgba(26, 26, 26, 0.9);

  /* Text System */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4742;
  --text-tertiary: #6b6960;
  --text-inverse: #faf9f6;
  --text-on-primary: #faf9f6;

  /* Border System */
  --border-light: #e8e6e0;
  --border-medium: #d1cfc7;
  --border-dark: #a8a69f;

  /* Shadow System */
  --shadow-sm: 0 1px 2px 0 rgba(26, 26, 26, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 26, 26, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(26, 26, 26, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(26, 26, 26, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(26, 26, 26, 0.25);
  --shadow-red: 0 10px 25px -5px rgba(178, 0, 0, 0.3);

  /* Radius System */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Spacing System */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== MODERN TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

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: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(178, 0, 0, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-6);
    height: 70px;
}

.nav-brand .nav-logo {
    height: 40px;
}

.nav-menu {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-base);
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--neutral-100);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta .cta-btn {
    /* border-radius: var(--radius-lg); */ /* Removed as redundant */
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem;
    border-bottom: 1px solid rgba(178, 0, 0, 0.1);
    height: 70px; /* Ensure consistent height with desktop nav */
}

.mobile-nav-logo {
    height: 30px;
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001; /* Ensure toggle is above overlay */
}

.mobile-toggle .hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.mobile-toggle .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.mobile-toggle .close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    color: var(--text-primary);
}

.mobile-toggle.active .hamburger-lines {
    opacity: 0;
    transform: rotate(45deg);
}

.mobile-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98); /* Lighter overlay */
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0); /* Smooth slide-in */
}

.mobile-menu-overlay.active {
    transform: translateX(0); /* Slide in */
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px 1rem; /* Padding to account for header */
    width: 100%;
    max-width: 400px; /* Limit width for better readability */
}

.mobile-nav-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem; /* Larger font size for mobile */
    font-weight: 600;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start below for animation */
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-link.active {
    color: var(--primary);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for links */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-overlay .mobile-cta {
    margin-top: 2rem; /* More space for CTA */
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

@media (min-width: 769px) {
    .navbar {
        display: block;
    }
    .mobile-nav {
        display: none;
    }
    .nav-menu {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary), transparent);
}

.hero-particle:nth-child(2) {
    bottom: 30%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent), transparent);
    animation-delay: 2s;
}

.hero-particle:nth-child(3) {
    top: 50%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    animation-delay: 1s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-12);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge svg {
    color: var(--accent);
}

.hero-logo {
    margin-bottom: var(--space-8);
    text-align: center;
}

.hero-logo img {
    max-width: min(700px, 85vw);
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(4px 6px 12px rgba(139, 0, 0, 0.15));
    transition: var(--transition-base);
    border-radius: var(--radius-lg);
}

.hero-logo img:hover {
    transform: scale(1.02);
    filter: drop-shadow(6px 8px 16px rgba(139, 0, 0, 0.25));
}

.hero-tagline {
    margin-bottom: var(--space-12);
}

.hero-tagline h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-align: center;
}

.hero-tagline p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-date-location {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-12);
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 16px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-date-location svg {
    color: var(--primary);
    font-size: 1.1em;
}

.hero-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    letter-spacing: 0.025em;
    min-height: 44px;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-on-primary);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
}

.btn-xl {
    min-width: 280px;
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    padding: 20px 40px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
}

.partners-header {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(178, 0, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(178, 0, 0, 0.15);
}

.partners-badge svg {
    font-size: 0.9em;
}

.partners-header h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.partners-header p {
    color: #525252;
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.sponsor-item {
    flex: 0 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    align-items: center;
}

.sponsor-item img {
    height: clamp(80px, 12vw, 180px);
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.sponsor-item:hover img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 25px rgba(178, 0, 0, 0.15));
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 8px 30px rgba(178,0,0,0.04);
    transition: var(--transition-base);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.video-badge.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 4px 15px rgba(178,0,0,0.3);
}

.video-badge.exclusive {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.video-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    overflow: hidden;
    border-radius: 16px;
    margin: 16px;
}

.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-9-16 { aspect-ratio: 9/16; }

.video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #000;
    object-fit: cover;
}

.video-info {
    padding: 2.5rem 2rem;
    position: relative;
}

.video-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.main-video .video-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 8px 25px rgba(178,0,0,0.2);
}

.secondary-video .video-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}

.video-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    line-height: 1.2;
}

.video-info p {
    color: var(--text-tertiary);
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    font-weight: 500;
}

.video-duration {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.main-video .video-duration {
    background: rgba(178,0,0,0.1);
    color: var(--primary);
}

.secondary-video .video-duration {
    background: rgba(212,175,55,0.1);
    color: var(--accent);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0 0 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 100px;
}

.about-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid rgba(178, 0, 0, 0.1);
}

.about-card .lead {
    font-weight: 600;
    color: var(--primary);
}

.about-card .highlight {
    font-weight: 700;
    color: var(--primary);
}

.quote-box {
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.05), rgba(212, 175, 55, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.quote-box p {
    margin: 0;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
}

.highlight-primary { color: var(--primary); }
.highlight-accent { color: var(--accent); }

.about-cta {
    margin-top: 3rem;
}

.objective-card {
    color: white;
    padding: 30px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin-bottom: 2rem; /* Add margin to prevent overlap when stacked */
}

/* To remove margin from the last card */
.objective-card:last-child {
    margin-bottom: 0;
}

.objective-card.primary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.objective-card.accent { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.objective-card.dark { background: linear-gradient(135deg, #1a1a1a, #0f0f0f); }

.objective-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.objective-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.objective-card li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.objective-card li svg {
    width: 16px;
    height: 16px;
}

.declaration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bottom-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(178, 0, 0, 0.1);
}

.bottom-quote .quote-text {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.3;
}

.bottom-quote p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== AGENDA SECTION ===== */
.agenda-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Desktop Timeline Styles */
.desktop-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: none; /* Hidden by default, shown on desktop */
}

.desktop-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--border-light);
}

.timeline-item {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    transform: translateX(-5%);
}

.timeline-item:nth-child(even) {
    left: 50%;
    transform: translateX(5%);
}

.timeline-content {
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-step {
    right: -25px;
    transform: translate(50%, -50%);
}

.timeline-item:nth-child(even) .timeline-step {
    left: -25px;
    transform: translate(-50%, -50%);
}

.timeline-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Agenda Stepper Styles */
.mobile-agenda-stepper {
    display: block; /* Hidden by default, shown on mobile */
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stepper-progress {
    margin-bottom: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--neutral-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.3s ease-in-out;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stepper-nav-tabs {
    display: flex;
    justify-content: flex-start; /* Align tabs to start, JS will handle centering */
    margin-bottom: 2rem;
    overflow-x: auto; /* Allow scrolling on small screens */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    position: relative; /* For the fading mask */
    padding: 0 1rem; /* Add padding for the fading effect */
}

.stepper-nav-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

/* Fading mask effect */
.stepper-nav-tabs::before,
.stepper-nav-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px; /* Width of the fade effect */
    pointer-events: none; /* Allow clicks through the mask */
    z-index: 1;
}

.stepper-nav-tabs::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.stepper-nav-tabs::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.stepper-tab {
    flex-shrink: 0; /* Prevent tabs from shrinking */
    min-width: 100px; /* Ensure tabs don't get too small */
    background: var(--neutral-100);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.5rem;
    margin: 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.stepper-tab:hover {
    background: var(--neutral-200);
    color: var(--text-primary);
}

.stepper-tab.active {
    background: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.stepper-cards-container {
    position: relative;
    overflow: hidden; /* Hide cards that are not active */
    min-height: 200px; /* Prevent layout shift */
}

.stepper-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stepper-card.active {
    position: relative; /* Bring active card into flow */
    opacity: 1;
    transform: translateX(0);
}

.stepper-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stepper-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Media Queries for Agenda Section */
@media (max-width: 768px) {
    .desktop-timeline {
        display: none;
    }
    .mobile-agenda-stepper {
        display: block;
    }
}

@media (min-width: 769px) {
    .desktop-timeline {
        display: block;
    }
    .mobile-agenda-stepper {
        display: none;
    }
}

.why-register {
    margin-top: 100px;
    background: white;
    padding: 80px 2rem;
    border-radius: 16px;
    text-align: center;
}

.why-register h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-register p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--background-secondary);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--neutral-100);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    background-color: var(--background);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-light);
    display: none; /* Hidden by default, controlled by JS */
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
}

/* ===== POLICY AGENDA SECTION ===== */
.policy-agenda-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.policy-agenda-section .section-header h2 {
    color: white;
}

.policy-agenda-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tactical-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.tactical-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tactical-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tactical-icon.primary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 10px 30px rgba(178, 0, 0, 0.4); }
.tactical-icon.accent { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }

.tactical-card h4 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
}

.tactical-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: var(--transition-base);
}

.cta-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 50px rgba(255,255,255,0.3);
}

.cta-card h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.cta-card p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .small-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: 1.6fr 1fr !important;
        gap: 2.5rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    /* No specific agenda display rules needed here anymore */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section-global {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%) !important;
    color: #fff !important;
    padding: 80px 0; /* Add some padding */
    text-align: center;
}

.countdown-section-global .countdown-title,
.countdown-section-global .countdown-date {
    color: #fff !important;
}

.countdown-section-global .countdown-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex: 1 1 auto; /* Allow items to grow and shrink */
    min-width: 100px; /* Minimum width before wrapping */
    max-width: 150px; /* Max width for items */
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 15px 20px; /* Smaller padding on very small screens */
        min-width: 80px;
        max-width: 120px;
    }

    .countdown-number {
        font-size: clamp(1.5rem, 8vw, 2.5rem); /* Adjust font size */
    }

    .countdown-label {
        font-size: 0.8rem; /* Adjust font size */
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-900);
    color: var(--text-inverse);
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px; /* Gap between columns */
}

.footer-brand,
.footer-info,
.footer-social {
    flex: 1;
    min-width: 200px; /* Allow items to wrap */
}

.footer-brand .footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end; /* Align social icons to the right on desktop */
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.footer-social .social-link:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom i {
    color: var(--primary);
    margin: 0 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-info,
    .footer-social {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: center; /* Center social icons on mobile */
    }
}