/* ========================================
   BISHOPS EPISCOPAL - WORLD CLASS NGO
   ======================================== */

/* Variables */
:root {
  --primary: #1a365d;
  --primary-dark: #0f2744;
  --primary-light: #2c5282;
  --accent: #c9a227;
  --accent-light: #d4b64a;
  --accent-dark: #a68519;
  --success: #38a169;
  --error: #e53e3e;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --gray-900: #171923;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-700); line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--primary); line-height: 1.2; }

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; color: var(--white); }
.preloader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  animation: pulse 2s infinite;
}
.preloader-icon { width: 100%; height: 100%; color: var(--accent); }
.preloader-text { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.2em; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
}
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header.scrolled .header-inner { padding: 1rem 1.5rem; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}
.header.scrolled .logo-name { color: var(--primary); }
.logo-tagline {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.nav { display: none; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(201,162,39,0.1); }
.header.scrolled .nav-link { color: var(--gray-600); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--accent); }

.header-actions { display: none; align-items: center; gap: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,162,39,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.5); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-ghost { color: rgba(255,255,255,0.85); }
.btn-ghost:hover { color: var(--accent); }
.header.scrolled .btn-ghost { color: var(--gray-600); }
.header.scrolled .btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn.light { border-color: var(--white); color: var(--white); }
.btn.light:hover { background: var(--white); color: var(--primary); }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline !important; }
.btn .btn-loading { display: none; }

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.header.scrolled .mobile-toggle span { background: var(--primary); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 999;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-link {
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
}
.mobile-link:hover { color: var(--accent); }
.mobile-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 8s linear;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 39, 68, 0.95) 0%,
    rgba(15, 39, 68, 0.85) 40%,
    rgba(15, 39, 68, 0.6) 70%,
    rgba(15, 39, 68, 0.4) 100%
  );
}

/* Particles */
.slide-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 60%; top: 80%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 90%; top: 70%; animation-delay: 3s; animation-duration: 24s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  25% { transform: translate(100px, -50px) rotate(90deg); opacity: 0.6; }
  50% { transform: translate(-50px, 100px) rotate(180deg); opacity: 0.3; }
  75% { transform: translate(50px, -100px) rotate(270deg); opacity: 0.6; }
}

/* Slide Navigation */
.slide-nav {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 20;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slide-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.slide-dot:hover::before {
  border-color: rgba(201, 162, 39, 0.5);
}

.slide-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.slide-dot.active::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* Slide Progress */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.slide-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 0%;
  animation: progress 6s linear infinite;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Hero Content - Left Aligned */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  padding: 8rem 3rem 4rem 5rem;
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-title-line:nth-child(1) {
  animation: fadeInUp 0.8s ease 0.5s backwards;
}

.hero-title-line:nth-child(2) {
  animation: fadeInUp 0.8s ease 0.7s backwards;
}

.hero-desc {
  animation: fadeInUp 0.8s ease 0.9s backwards;
}

.hero-actions {
  animation: fadeInUp 0.8s ease 1.1s backwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-line { width: 30px; height: 1px; background: var(--accent); }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title-line { display: block; }
.hero-title-line.accent { color: var(--accent); }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: left;
}

.hero-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem; 
  justify-content: flex-start;
  margin-bottom: 3rem;
}

/* Quick Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 5rem;
  background: linear-gradient(to top, rgba(15, 39, 68, 0.9), transparent);
  z-index: 10;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-plus, .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 6rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Hero Cards */
.hero-cards {
  position: absolute;
  bottom: 4rem;
  right: 5rem;
  display: none;
  gap: 1.5rem;
  z-index: 10;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease backwards;
}

.impact-card:nth-child(1) { animation-delay: 0.1s; }
.impact-card:nth-child(2) { animation-delay: 0.2s; }
.impact-card:nth-child(3) { animation-delay: 0.3s; }

.impact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.impact-icon svg { width: 24px; height: 24px; color: var(--white); }
.impact-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); }
.impact-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.25rem; }

/* ========================================
   SECTION STYLES
   ======================================== */
section { padding: 6rem 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header.light { color: var(--white); }
.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.section-tag.light { background: rgba(201,162,39,0.2); border-color: rgba(201,162,39,0.4); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-images { position: relative; }
.about-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,39,68,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.about-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-year { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; }
.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }

.about-content { padding-top: 2rem; }
@media (min-width: 1024px) { .about-content { padding-top: 0; } }
.about-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.about-text { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.8; }

.about-features { display: grid; gap: 1.5rem; margin: 2rem 0; }
.feature { display: flex; gap: 1rem; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--white); }
.feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature p { font-size: 0.9rem; color: var(--gray-500); }

/* ========================================
   IMPACT
   ======================================== */
.impact {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.impact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 0;
}
.impact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact .container { position: relative; z-index: 1; }

.impact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.impact-stat {
  text-align: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.impact-stat.visible { opacity: 1; transform: translateY(0); }
.impact-stat:nth-child(1) { transition-delay: 0.1s; }
.impact-stat:nth-child(2) { transition-delay: 0.2s; }
.impact-stat:nth-child(3) { transition-delay: 0.3s; }
.impact-stat:nth-child(4) { transition-delay: 0.4s; }

.stat-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
}
.stat-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.stat-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 8; }
.stat-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s ease;
}
.impact-stat.visible .stat-progress { stroke-dashoffset: 70; }
.stat-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.impact-stat h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.impact-stat p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ========================================
   PROGRAMS
   ======================================== */
.programs { background: var(--gray-50); }
.programs-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(4, 1fr); } }

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.program-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.program-icon svg { width: 28px; height: 28px; }
.program-card.blue .program-icon { background: rgba(66,153,225,0.15); color: #3182ce; }
.program-card.gold .program-icon { background: rgba(201,162,39,0.15); color: var(--accent); }
.program-card.green .program-icon { background: rgba(72,187,120,0.15); color: #48bb78; }
.program-card.purple .program-icon { background: rgba(159,122,234,0.15); color: #9f7aea; }
.program-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.program-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.program-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover .program-bar { transform: scaleX(1); }

.programs-cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
}
@media (min-width: 768px) {
  .programs-cta { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cta-content p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========================================
   LEADERSHIP
   ======================================== */
.leadership { background: var(--white); }
.leaders-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .leaders-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .leaders-grid { grid-template-columns: repeat(3, 1fr); } }

.leader-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.leader-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.leader-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.leader-card:hover .leader-image img { transform: scale(1.05); }
.leader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,39,68,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-base);
}
.leader-card:hover .leader-overlay { opacity: 1; }
.leader-social { display: flex; gap: 0.75rem; }
.leader-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-fast);
}
.leader-social a:hover { background: var(--accent); color: var(--white); }
.leader-social svg { width: 18px; height: 18px; }
.leader-info { padding: 1.5rem; }
.leader-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.leader-role { display: block; color: var(--accent); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.leader-info p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ========================================
   EVENTS
   ======================================== */
.events-section { background: var(--gray-50); }
.events-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}
@media (min-width: 768px) { .event-card { flex-direction: column; } }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.event-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  min-width: 80px;
}
.event-day { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.event-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.event-content h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.event-meta svg { width: 14px; height: 14px; color: var(--accent); }
.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  align-self: flex-start;
}
.event-btn:hover { background: var(--accent); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: var(--accent);
  opacity: 0.3;
}
.testimonial-quote svg { width: 100%; height: 100%; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--primary); }
.author-info span { font-size: 0.8rem; color: var(--gray-500); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,39,68,0.95) 0%, rgba(26,54,93,0.9) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1.5rem; }
.cta-content p { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
.cta-section .cta-actions { justify-content: center; }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--gray-50); }
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info .section-title { text-align: left; margin-bottom: 1rem; }
.contact-desc { color: var(--gray-500); margin-bottom: 2rem; line-height: 1.8; }
.contact-items { display: grid; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-error, .form-success {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-error.show, .form-success.show { display: flex; align-items: center; gap: 0.5rem; }
.form-error { background: #fef2f2; color: var(--error); border: 1px solid #feb2b2; }
.form-success { background: #f0fff4; color: var(--success); border: 1px solid #9ae6b4; }
.form-success svg { width: 20px; height: 20px; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--gray-900); color: var(--gray-400); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; } }

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-links-group h4,
.footer-newsletter h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.9rem; color: var(--gray-400); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter p { font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.newsletter-form button svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.875rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.875rem; color: var(--gray-500); }
.footer-legal a:hover { color: var(--accent); }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.back-to-top svg { width: 24px; height: 24px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
  .mobile-toggle { display: none; }
  .hero-cards { display: flex; }
}

@media (max-width: 1024px) {
  .hero-content { padding: 7rem 2rem 3rem 3rem; }
  .hero-stats { padding: 1.5rem 3rem; gap: 1.5rem; }
  .hero-scroll { right: 3rem; }
  .slide-nav { right: 2rem; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 767px) {
  section { padding: 4rem 0; }
  
  .hero-content {
    padding: 6rem 1.5rem 8rem;
    text-align: left;
  }
  
  .hero-badge { margin-bottom: 1.5rem; }
  .badge-line { width: 20px; }
  
  .hero-title { font-size: 2.25rem; margin-bottom: 1rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
  
  .hero-actions { justify-content: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
  .hero-stats {
    padding: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .stat-item { flex-direction: column; align-items: center; text-align: center; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { margin-left: 0; margin-top: 0.25rem; }
  .stat-divider { display: none; }
  
  .hero-scroll { display: none; }
  
  .slide-nav {
    right: 1rem;
    gap: 0.5rem;
  }
  
  .slide-dot { width: 10px; height: 10px; }
  
  .about-img-secondary { display: none; }
  
  .hero-desc { text-align: left; }
}
