:root {
  --green: #2eaa5c;
  --green-dark: #1d7a40;
  --green-light: #e8f7ee;
  --gold: #e8a020;
  --gold-light: #fdf3e0;
  --dark: #0f1a12;
  --text: #1e2d22;
  --muted: #5a7060;
  --border: #d4e8db;
  --white: #ffffff;
  --section-pad: clamp(60px, 8vw, 110px);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(15,26,18,0.1); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 52px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.1rem; color: var(--green); }
.logo-text .sub { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 8px; }
nav a {
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 8px 14px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover { background: var(--green-light); color: var(--green); }
nav a.active { color: var(--green); font-weight: 600; }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── HERO / VIDEO CAROUSEL ── */
.hero {
  margin-top: 80px;
  position: relative; height: calc(100vh - 80px); min-height: 560px;
  overflow: hidden; display: flex; align-items: center;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Gradient fallback slides with rich African-inspired imagery feel */
.slide:nth-child(1) .slide-bg { background: linear-gradient(135deg, #0d3320 0%, #1d7a40 50%, #2eaa5c 100%); }
.slide:nth-child(2) .slide-bg { background: linear-gradient(135deg, #3a1a00 0%, #8b4a00 50%, #e8a020 100%); }
.slide:nth-child(3) .slide-bg { background: linear-gradient(135deg, #0a1f2e 0%, #1a4a6e 50%, #2eaa5c 100%); }

.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 100%);
}

/* Pattern overlay for texture */
.slide-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
}

.slide-content {
  position: relative; z-index: 3;
  max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 24px;
}

.slide-label {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
}

.slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
  max-width: 680px; margin-bottom: 20px;
}

.slide p {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.85);
  max-width: 520px; line-height: 1.65; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.4); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* Carousel controls */
.carousel-controls {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.carousel-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; z-index: 10;
  display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none;
}
.arrow {
  pointer-events: all; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.arrow:hover { background: rgba(255,255,255,0.3); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.6);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollLine 1.6s infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ── STATS BAND ── */
.stats-band {
  background: var(--dark); padding: 48px 24px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900;
  color: var(--gold); display: block; line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 8px; }

/* ── SECTIONS ── */
section { padding: var(--section-pad) 24px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-block; color: var(--green); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.2; color: var(--dark); margin-bottom: 20px;
}
.section-lead {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 580px;
}

/* ── MISSION / VISION ── */
.mission-section { background: var(--green-light); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.mission-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mission-icon { font-size: 6rem; opacity: 0.3; }
.mission-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--dark);
  padding: 14px 20px; border-radius: 12px; font-weight: 700;
  font-size: 0.9rem; line-height: 1.3;
}

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.pillar {
  background: var(--white); border-radius: 12px; padding: 20px;
  border-left: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(46,170,92,0.12); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 10px; }
.pillar h4 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.pillar p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── IMPACT PROGRAMS ── */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.program-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white); border: 1px solid var(--border);
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.program-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.program-card:nth-child(1) .program-img { background: linear-gradient(135deg, #1d7a40, #2eaa5c); }
.program-card:nth-child(2) .program-img { background: linear-gradient(135deg, #8b4a00, #e8a020); }
.program-card:nth-child(3) .program-img { background: linear-gradient(135deg, #1a3a5c, #2d6aa0); }
.program-card:nth-child(4) .program-img { background: linear-gradient(135deg, #5c1a4a, #a0386e); }
.program-card:nth-child(5) .program-img { background: linear-gradient(135deg, #1a4a2e, #35805a); }
.program-card:nth-child(6) .program-img { background: linear-gradient(135deg, #4a3800, #9a7400); }

.program-body { padding: 24px; }
.program-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.program-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.program-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px; }

/* ── VIDEO SECTION ── */
.video-section { background: var(--dark); color: var(--white); }
.video-section .section-title { color: var(--white); }
.video-section .section-lead { color: rgba(255,255,255,0.65); }
.video-section .section-tag { color: var(--gold); }

.video-carousel-wrap { margin-top: 48px; position: relative; }
.video-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 8px;
}
.video-track::-webkit-scrollbar { display: none; }

.video-card {
  min-width: 340px; border-radius: 16px; overflow: hidden;
  scroll-snap-align: start; cursor: pointer; position: relative;
  background: #1a2a1e;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.video-card:hover { transform: scale(1.02); }

.video-thumb {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.video-card:nth-child(1) .video-thumb { background: none; }
.video-card:nth-child(2) .video-thumb { background: none; }
.video-card:nth-child(3) .video-thumb { background: none; }
.video-card:nth-child(4) .video-thumb { background: none; }

.video-thumb video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  z-index: 2; pointer-events: none;
}
.video-card:hover .play-btn { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: white; font-size: 0.75rem;
  padding: 3px 8px; border-radius: 4px;
}

.video-info { padding: 16px; }
.video-info h4 { font-weight: 600; font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.video-info p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-stack { position: relative; }
.about-main-img {
  border-radius: 20px; overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1d7a40, #2eaa5c);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.about-accent-img {
  position: absolute; bottom: -30px; right: -30px; width: 55%;
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #8b4a00, #e8a020);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  border: 6px solid var(--white); box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Real image styles */
.about-main-img img,
.about-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-reg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-light); color: var(--green);
  padding: 10px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  margin-top: 28px;
}
.about-reg::before { content: '✓'; background: var(--green); color: white; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; }

/* ── CONTACT / FORM ── */
.contact-section { background: var(--green-light); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green); color: white; display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--border);
  display: grid; place-items: center; text-decoration: none; color: var(--text);
  font-size: 1rem; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-link:hover { transform: translateY(-3px); }
.social-link.fb:hover { background: #1877f2; color: white; border-color: #1877f2; }
.social-link.tw:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.social-link.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: #cc2366; }
.social-link.yt:hover { background: #ff0000; color: white; border-color: #ff0000; }
.social-link.li:hover { background: #0a66c2; color: white; border-color: #0a66c2; }
.social-link.wa:hover { background: #25d366; color: white; border-color: #25d366; }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fafcfa;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,170,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%; padding: 15px; border-radius: 50px;
  background: var(--green); color: white; border: none;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── DONATE BANNER ── */
.donate-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.donate-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
}
.donate-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; margin-bottom: 16px; position: relative; }
.donate-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; position: relative; }
.donate-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-gold { background: var(--gold); color: var(--dark); padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.4); }
.btn-white-outline { border: 2px solid rgba(255,255,255,0.7); color: white; padding: 16px 40px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 24px 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-img { filter: brightness(0) invert(1); height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-brand .reg { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 12px; }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--dark); border-radius: 20px; padding: 40px; max-width: 700px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 12px; }
.modal-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 24px; }
.modal-video { width: 100%; aspect-ratio: 16/9; background: #111; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); }

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none; background: var(--green-light); border: 1px solid var(--green);
  border-radius: 12px; padding: 20px; text-align: center; margin-top: 16px;
  color: var(--green); font-weight: 600;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--white); padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a { padding: 12px 16px; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.mobile-nav a:hover { background: var(--green-light); color: var(--green); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mission-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-accent-img { right: 0; width: 45%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .programs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .carousel-arrows { display: none; }
}

/* ── DONATE MODAL ── */
.donate-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.donate-overlay.open { opacity: 1; pointer-events: all; }

.donate-modal-box {
  background: var(--white); border-radius: 24px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: modalSlideUp 0.35s ease;
}
@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.donate-close {
  position: absolute; top: 16px; right: 20px;
  background: #f0f0f0; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 0.9rem;
  cursor: pointer; color: var(--text);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.donate-close:hover { background: #e0e0e0; }

.donate-step-indicator {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 28px;
}
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: #e8e8e8; display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700; color: #aaa;
  flex-shrink: 0; transition: all 0.3s;
}
.step-dot.active { background: var(--green); color: white; }
.step-dot.done { background: var(--green); color: white; font-size: 0.75rem; }
.step-line {
  flex: 1; height: 2px; background: #e8e8e8; transition: background 0.3s;
}
.step-line.active { background: var(--green); }

.donate-icon { font-size: 2.8rem; margin-bottom: 12px; text-align: center; }
.donate-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--dark); text-align: center; margin-bottom: 8px;
}
.donate-subtitle {
  color: var(--muted); font-size: 0.9rem;
  text-align: center; line-height: 1.65; margin-bottom: 28px;
}

.donate-form-group { margin-bottom: 18px; }
.donate-form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 7px;
}
.donate-form-group input,
.donate-form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fafcfa;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.donate-form-group input:focus,
.donate-form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,170,92,0.1);
}
.donate-form-group textarea { resize: vertical; min-height: 100px; }

.donate-btn-primary {
  width: 100%; padding: 14px; border-radius: 50px;
  background: var(--green); color: white; border: none;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.donate-btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.donate-btn-secondary {
  width: 100%; padding: 12px; border-radius: 50px;
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; margin-top: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.donate-btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* Account Card */
.account-card {
  background: var(--green-light); border-radius: 16px;
  padding: 24px; border: 1px solid var(--border);
}
.account-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.account-row:last-child { border-bottom: none; }
.account-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.account-value { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.account-number-wrap { display: flex; align-items: center; gap: 10px; }
.copy-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  display: grid; place-items: center; cursor: pointer;
  color: var(--muted); transition: all 0.2s;
}
.copy-btn:hover { border-color: var(--green); color: var(--green); }

/* Thank You Step */
.thankyou-wrap { text-align: center; }
.thankyou-icon { font-size: 4rem; margin-bottom: 16px; animation: pop 0.5s ease; }
@keyframes pop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.thankyou-promise {
  background: var(--green-light); border-radius: 12px;
  padding: 18px 20px; margin: 20px 0;
  font-size: 0.88rem; color: var(--text); line-height: 1.7;
  border-left: 4px solid var(--green);
}
.thankyou-quote {
  font-style: italic; color: var(--muted);
  font-size: 0.82rem; margin-bottom: 24px; line-height: 1.6;
}

/* Mobile */
@media (max-width: 480px) {
  .donate-modal-box { padding: 28px 20px; }
  .donate-title { font-size: 1.35rem; }
}