/* ============================================================
   MUSAWAH 4 Y-D INITIATIVE — Premium Design System
   Grassroots Development & Civic Infrastructure Platform
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Primary Colors */
  --midnight: #0A1628;
  --midnight-light: #0D1B2A;
  --midnight-mid: #1B2838;
  --midnight-soft: #243447;
  
  /* Secondary */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --mid-gray: #6C757D;
  
  /* Accent: Premium Emerald */
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #34D399;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --emerald-glow-strong: rgba(16, 185, 129, 0.3);
  
  /* Accent: Warm Gold */
  --gold: #D4A574;
  --gold-bright: #F59E0B;
  --gold-light: #FCD34D;
  --gold-glow: rgba(212, 165, 116, 0.2);
  
  /* Accent: Civic Orange */
  --orange: #F97316;
  --orange-light: #FB923C;
  
  /* Gradients */
  --gradient-midnight: linear-gradient(135deg, #0A1628 0%, #1B2838 50%, #0D1B2A 100%);
  --gradient-emerald: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
  --gradient-gold: linear-gradient(135deg, #D4A574 0%, #F59E0B 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(5, 150, 105, 0.15) 50%, rgba(10, 22, 40, 0.88) 100%);
  --gradient-section: linear-gradient(180deg, #0A1628 0%, #0D1B2A 100%);
  --gradient-text: linear-gradient(135deg, #10B981 0%, #34D399 40%, #D4A574 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
  --shadow-glow-gold: 0 0 30px rgba(212, 165, 116, 0.15);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1280px;
  --container-wide: 1440px;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--midnight);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gradient-emerald);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--mid-gray);
  max-width: 680px;
  line-height: 1.8;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }
.stagger-7 { transition-delay: 0.7s !important; }
.stagger-8 { transition-delay: 0.8s !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.nav-logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-base);
}

.navbar.scrolled .nav-logo img {
  height: 45px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-logo-text .brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--emerald-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--emerald-light);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-emerald) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4) !important;
  background: var(--gradient-emerald) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Hero Background Slides */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease-smooth);
  will-change: opacity;
}

.hero-slide-bg.active {
  opacity: 1;
}

.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Each slide gets a unique background image with cinematic overlay */
.hero-slide-bg:nth-child(1) {
  background: 
    linear-gradient(135deg, rgba(10, 22, 40, 0.82) 0%, rgba(5, 150, 105, 0.08) 50%, rgba(10, 22, 40, 0.85) 100%),
    url('../assets/images/hero-1.jpg') center/cover no-repeat;
}

.hero-slide-bg:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.hero-slide-bg:nth-child(2) {
  background: 
    linear-gradient(160deg, rgba(10, 22, 40, 0.8) 0%, rgba(16, 185, 129, 0.08) 40%, rgba(10, 22, 40, 0.85) 100%),
    url('../assets/images/hero-2.jpg') center/cover no-repeat;
}

.hero-slide-bg:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.5) 100%);
}

.hero-slide-bg:nth-child(3) {
  background: 
    linear-gradient(145deg, rgba(10, 22, 40, 0.82) 0%, rgba(52, 211, 153, 0.06) 50%, rgba(10, 22, 40, 0.88) 100%),
    url('../assets/images/hero-3.png') center/cover no-repeat;
}

.hero-slide-bg:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.55) 100%);
}

.hero-slide-bg:nth-child(4) {
  background: 
    linear-gradient(130deg, rgba(10, 22, 40, 0.82) 0%, rgba(212, 165, 116, 0.06) 50%, rgba(10, 22, 40, 0.88) 100%),
    url('../assets/images/hero-4.png') center/cover no-repeat;
}

.hero-slide-bg:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.55) 100%);
}

/* Animated particles overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  animation: particleFloat 15s infinite linear;
}

.particle:nth-child(odd) {
  background: rgba(212, 165, 116, 0.3);
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 140px 0 100px;
}

.hero-slides {
  position: relative;
  min-height: 400px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-headline .accent {
  color: var(--emerald-light);
}

.hero-headline .gold {
  color: var(--gold);
}

.hero-headline .italic {
  font-style: italic;
  font-weight: 500;
}

.hero-subtext {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-emerald);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(16, 185, 129, 0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--emerald-light);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero slide indicators */
.hero-indicators {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-indicator {
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.hero-indicator.active {
  height: 48px;
  background: rgba(16, 185, 129, 0.3);
}

.hero-indicator.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--emerald);
  border-radius: 4px;
  animation: indicatorFill 6s linear forwards;
}

@keyframes indicatorFill {
  from { height: 0%; }
  to { height: 100%; }
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   INAUGURATION SECTION
   ============================================================ */
.inauguration {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.inauguration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--off-white) 100%);
  z-index: 1;
}

.inauguration-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212, 165, 116, 0.3);
  overflow: hidden;
}

.inauguration-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.inauguration-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inauguration-title {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 20px;
}

.inauguration-desc {
  font-size: 1.1rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.inauguration-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--emerald);
  transition: var(--transition-base);
}

.detail-item:nth-child(even) {
  border-left-color: var(--gold);
}

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

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

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-text strong {
  font-size: 0.85rem;
  color: var(--midnight-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.detail-text span {
  font-size: 0.95rem;
  color: var(--midnight);
  font-weight: 600;
}

.inauguration-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inauguration-flyer-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  transition: var(--transition-base);
  border: 6px solid var(--white);
}

.inauguration-flyer-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.inauguration-flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .inauguration-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  .inauguration-details {
    grid-template-columns: 1fr;
  }
  .inauguration-flyer-frame {
    max-width: 500px;
    margin: 0 auto;
    transform: rotate(0);
  }
}

/* ============================================================
   MOVEMENT SECTION (ABOUT)
   ============================================================ */
.movement {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.movement::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.movement-content {
  max-width: 560px;
}

.movement-text {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.movement-text strong {
  color: var(--midnight);
  font-weight: 600;
}

.movement-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 35px;
}

.movement-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.movement-feature:hover {
  border-color: var(--emerald-glow-strong);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.movement-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--emerald-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 1rem;
}

.movement-feature-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.4;
}

/* Movement Visual Side */
.movement-visual {
  position: relative;
}

.movement-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.movement-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gradient-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.movement-img-card:first-child {
  grid-row: span 2;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A4B 50%, #0A1628 100%);
}

.movement-img-card .img-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}

.movement-img-card .img-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.movement-img-card:nth-child(2) {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.movement-img-card:nth-child(3) {
  background: linear-gradient(135deg, #D4A574 0%, #F59E0B 100%);
}

/* Floating badge on movement visual */
.movement-float-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 28px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--midnight);
  font-size: 0.95rem;
  white-space: nowrap;
}

.movement-float-badge .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

/* ============================================================
   VISION SECTION (MANIFESTO)
   ============================================================ */
.vision {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.vision-header {
  text-align: center;
  margin-bottom: 70px;
}

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

.vision-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}

.vision-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card-number {
  font-family: var(--font-editorial);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.vision-card-title {
  font-family: var(--font-editorial);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.vision-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Vision quote */
.vision-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-editorial);
  font-size: 6rem;
  color: rgba(16, 185, 129, 0.15);
  line-height: 1;
}

.vision-quote p {
  font-family: var(--font-editorial);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.vision-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--emerald-light);
  font-weight: 600;
}

/* ============================================================
   COMMUNITY IMPACT SECTION
   ============================================================ */
.impact {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

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

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.impact-stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.impact-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-emerald);
  border-radius: 3px;
  transition: width 0.4s var(--ease-smooth);
}

.impact-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-glow-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.impact-stat-card:hover::after {
  width: 60%;
}

.impact-stat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.impact-stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.1;
  margin-bottom: 6px;
}

.impact-stat-number .counter-suffix {
  font-size: 0.7em;
  color: var(--emerald);
}

.impact-stat-label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Impact Info Cards */
.impact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.impact-info-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--gradient-midnight);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.impact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), transparent, rgba(212, 165, 116, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.impact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.impact-info-card h3 {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.impact-info-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ============================================================
   DEVELOPMENT PILLARS SECTION
   ============================================================ */
.pillars {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  position: relative;
}

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

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: default;
  group: true;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover::after {
  opacity: 1;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--emerald-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.pillar-card:hover .pillar-icon {
  background: var(--gradient-emerald);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Pillar accent colors for variety */
.pillar-card:nth-child(2) .pillar-icon { background: var(--gold-glow); }
.pillar-card:nth-child(2):hover .pillar-icon { background: var(--gradient-gold); }
.pillar-card:nth-child(2)::before { background: var(--gradient-gold); }

.pillar-card:nth-child(4) .pillar-icon { background: rgba(249, 115, 22, 0.12); }
.pillar-card:nth-child(4):hover .pillar-icon { background: linear-gradient(135deg, #F97316, #FB923C); }
.pillar-card:nth-child(4)::before { background: linear-gradient(135deg, #F97316, #FB923C); }

.pillar-card:nth-child(6) .pillar-icon { background: var(--gold-glow); }
.pillar-card:nth-child(6):hover .pillar-icon { background: var(--gradient-gold); }
.pillar-card:nth-child(6)::before { background: var(--gradient-gold); }

.pillar-card:nth-child(7) .pillar-icon { background: rgba(249, 115, 22, 0.12); }
.pillar-card:nth-child(7):hover .pillar-icon { background: linear-gradient(135deg, #F97316, #FB923C); }
.pillar-card:nth-child(7)::before { background: linear-gradient(135deg, #F97316, #FB923C); }

/* ============================================================
   GRASSROOTS STRUCTURE SECTION
   ============================================================ */
.structure {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.structure-header {
  text-align: center;
  margin-bottom: 70px;
}

.structure-visualization {
  max-width: 1000px;
  margin: 0 auto;
}

.structure-level {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 36px;
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.structure-level::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-emerald);
  opacity: 0.3;
  transition: opacity 0.4s;
}

.structure-level:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(8px);
}

.structure-level:hover::before {
  opacity: 1;
}

.structure-level-marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-base);
}

.structure-level:hover .structure-level-marker {
  background: var(--gradient-emerald);
  border-color: transparent;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.structure-level-info {
  flex: 1;
}

.structure-level-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.structure-level-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.structure-level-count {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--emerald-light);
  text-align: right;
  min-width: 80px;
}

/* Connector lines between levels */
.structure-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
  margin: 0 auto;
}

/* ============================================================
   PARTNERSHIP ECOSYSTEM SECTION
   ============================================================ */
.partnership {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

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

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-card {
  padding: 30px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  cursor: default;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  background: var(--white);
}

.partner-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease-bounce);
}

.partner-card:hover .partner-icon {
  transform: scale(1.15);
}

.partner-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 6px;
}

.partner-desc {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.partner-count-badge {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: var(--gradient-midnight);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.partner-count-badge span {
  color: var(--emerald-light);
}

/* ============================================================
   PROGRAMS & INITIATIVES SECTION
   ============================================================ */
.programs {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  position: relative;
}

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

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

.program-card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.program-card:nth-child(1) .program-card-visual { background: linear-gradient(135deg, #059669, #34D399); }
.program-card:nth-child(2) .program-card-visual { background: linear-gradient(135deg, #0A1628, #1B3A4B); }
.program-card:nth-child(3) .program-card-visual { background: linear-gradient(135deg, #D4A574, #F59E0B); }
.program-card:nth-child(4) .program-card-visual { background: linear-gradient(135deg, #1B2838, #243447); }
.program-card:nth-child(5) .program-card-visual { background: linear-gradient(135deg, #F97316, #FB923C); }

.program-card-visual .program-visual-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
}

.program-card-visual .program-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card-body {
  padding: 28px;
}

.program-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 10px;
}

.program-card-text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  transition: var(--transition-fast);
}

.program-card-link:hover {
  color: var(--emerald-dark);
  gap: 10px;
}

/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
.leadership {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.leadership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
}

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

.leadership-profile {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.leader-photo-frame {
  position: relative;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1B3A4B 0%, #0D1B2A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--emerald), var(--gold), var(--emerald));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.leader-photo .placeholder-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.leader-title-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 28px;
  background: var(--gradient-emerald);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  z-index: 2;
}

.leader-info {
  padding-top: 10px;
}

.leader-name {
  font-family: var(--font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.leader-role {
  font-size: 1rem;
  color: var(--emerald-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.leader-bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 20px;
}

.leader-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.leader-value-tag {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.leader-value-tag:hover {
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.08);
}

/* ============================================================
   INSPIRATION & VALUES SECTION
   ============================================================ */
.inspiration {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}

.value-card:hover::before {
  width: 300px;
  height: 300px;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-bounce);
}

.value-card:hover .value-icon {
  transform: scale(1.15);
}

.value-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Inspiration bottom banner */
.inspiration-banner {
  padding: 50px;
  background: var(--gradient-midnight);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inspiration-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent, rgba(212, 165, 116, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.inspiration-banner h3 {
  font-family: var(--font-editorial);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}

.inspiration-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   JOIN THE MOVEMENT CTA SECTION
   ============================================================ */
.join-cta {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.join-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
}

.join-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.join-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 30px;
}

.join-cta h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.join-cta h2 .accent {
  color: var(--emerald-light);
}

.join-cta-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.join-cta-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.join-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--emerald-light);
  line-height: 1.2;
}

.join-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 30px;
  background: #060D18;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 44px;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--emerald-glow);
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.3);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--emerald-light);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--emerald-light);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .movement-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vision-manifesto {
    grid-template-columns: 1fr;
  }
  
  .leadership-profile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .leader-photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .leader-values {
    justify-content: center;
  }
  
  .programs-showcase {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .impact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-indicators {
    right: 16px;
  }
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .partnership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-indicators {
    display: none;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .join-cta-stats {
    gap: 30px;
  }
  
  .movement-features {
    grid-template-columns: 1fr;
  }
  
  .movement-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .movement-img-card:first-child {
    grid-row: auto;
  }
  
  .inspiration-banner {
    padding: 30px 20px;
  }
  
  .structure-level {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  
  .structure-level-count {
    width: 100%;
    text-align: left;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-emerald);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  animation: preloaderPulse 1.5s infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-emerald);
  border-radius: 3px;
  animation: preloaderFill 2s ease-in-out forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes preloaderFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-emerald);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--midnight);
}

::-webkit-scrollbar-thumb {
  background: var(--midnight-soft);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-dark);
}

/* ============================================================
   FLOATING LANGUAGE SELECTOR
   ============================================================ */
.lang-selector-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  font-family: var(--font-primary);
}

.lang-btn {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
  background: var(--midnight);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.lang-btn .current-lang {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  min-width: 140px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom left;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 10px 20px;
  color: var(--midnight-soft);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-dropdown li:hover {
  background: rgba(16, 185, 129, 0.05);
  color: var(--emerald-dark);
}

.lang-dropdown li.active {
  color: var(--emerald);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.05);
}

.lang-dropdown li.active::after {
  content: '✓';
  font-size: 0.9rem;
}

/* Hide Google Translate Banner and UI */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
#goog-gt-tt { display: none !important; }
