/* ================================================
   DreamDo Africa — Main Stylesheet
   Website : dreamdoafrica.org
   Email   : info@dreamdoafrica.org
   Phone   : +250 786 857 090 / +250 786 354 394
   ================================================
   TABLE OF CONTENTS
    1. Design Tokens (CSS Variables)
    2. Base Reset & Typography
    3. Layout Utilities
    4. Buttons
    5. Top Bar
    6. Navigation & Mega Dropdown
    7. Hero / Carousel
    8. Accordion Sections
    9. Who We Are
   10. How It Works / Dream Box
   11. Programs
   12. Coaching
   13. Green Skills
   14. Vision / Impact
   15. Join / Contact
   16. Footer
   17. Animations & Scroll Reveal
   18. Responsive / Mobile
================================================ */

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --navy:    #0c1f3f;
  --navy2:   #122654;
  --blue:    #1a55c4;
  --blue-lt: #3b7de8;
  --orange:  #f47c20;
  --orange2: #e56a0e;
  --amber:   #ffc847;
  --green:   #1e9a54;
  --green-lt:#26c469;
  --cream:   #faf8f4;
  --sand:    #f2ede4;
  --white:   #ffffff;
  --text:    #111827;
  --text-2:  #374151;
  --text-3:  #6b7280;
  --border:  rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius:  16px;
  --radius-lg: 24px;
  --nav-h:   68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
.display { font-family: 'Playfair Display', serif; }
h1,h2,h3 { line-height: 1.15; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--orange); }
.section-body {
  font-size: 1.05rem; color: var(--text-2);
  line-height: 1.75; font-weight: 500;
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 0; }
.section.alt-bg { background: var(--sand); }
.section.dark-bg {
  background: var(--navy);
  color: #fff;
}
.section.dark-bg .section-title { color: #fff; }
.section.dark-bg .section-body { color: rgba(255,255,255,0.8); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.3px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px rgba(244,124,32,0.4);
}
.btn-primary:hover { background: var(--orange2); box-shadow: 0 8px 28px rgba(244,124,32,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff; border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 0 5%;
  height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 600;
  letter-spacing: 0.3px;
}
.topbar-left {
  display: flex; align-items: center; gap: 0;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--amber);
}
.topbar-left span { opacity: 0.6; font-size: 0.65rem; }
.topbar-right {
  display: flex; align-items: center; gap: 20px;
}
.topbar-right a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
  font-size: 0.72rem; font-weight: 600;
}
.topbar-right a:hover { color: var(--amber); }
.topbar-right a svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 2;
  flex-shrink: 0;
}
.topbar-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  height: var(--nav-h);
  display: flex; align-items: stretch;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
/* Logo */
.nav-logo {
  display: flex; align-items: center;
  padding: 0 32px 0 5%;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--navy); flex-shrink: 0;
  letter-spacing: -0.3px;
  border-right: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
}
.nav-logo .dot { color: var(--orange); }
/* Menu */
.nav-menu {
  display: flex; align-items: stretch;
  list-style: none; flex: 1; margin: 0; padding: 0;
}
.nav-item {
  position: relative; display: flex; align-items: center;
}
.nav-item > a,
.nav-item > button {
  display: flex; align-items: center; gap: 4px;
  height: 100%; padding: 0 18px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-2); background: none; border: none;
  cursor: pointer; font-family: inherit;
  position: relative; white-space: nowrap;
  transition: color 0.18s;
}
.nav-item > a::after,
.nav-item > button::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-item:hover > a::after,
.nav-item:hover > button::after,
.nav-item.active > a::after,
.nav-item.active > button::after {
  transform: scaleX(1);
}
.nav-item:hover > a,
.nav-item:hover > button,
.nav-item.active > a,
.nav-item.active > button {
  color: var(--navy);
}
/* Chevron */
.nav-chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5; flex-shrink: 0;
  transition: transform 0.25s;
  margin-left: 1px;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* ── MEGA DROPDOWN ───────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 8px 40px rgba(12,31,63,0.13);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 10px 10px;
  list-style: none; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown li a {
  display: flex; align-items: center;
  padding: 11px 22px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.1px;
  transition: all 0.14s;
  border-left: 2px solid transparent;
}
.nav-dropdown li a::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: 0;
  flex-shrink: 0; margin-right: 10px;
  transition: opacity 0.14s;
}
.nav-dropdown li a:hover {
  background: #fafafa;
  color: var(--navy);
  border-left-color: var(--orange);
  padding-left: 26px;
}
.nav-dropdown li a:hover::before { opacity: 1; }
.nav-dropdown .dd-section-label {
  display: block; padding: 10px 22px 6px;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--text-3); border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
/* Nav right side */
.nav-right {
  display: flex; align-items: stretch;
  flex-shrink: 0;
}
.nav-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 0 22px;
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  white-space: nowrap; text-decoration: none;
  transition: background 0.2s;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.nav-cta:hover { background: var(--orange2); }
.nav-cta-donate {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 0 20px;
  background: var(--navy); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  white-space: nowrap; text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.nav-cta-donate svg { width: 14px; height: 14px; stroke: var(--amber); flex-shrink: 0; }
.nav-cta-donate:hover { background: #1a3060; }
.nav-cta-phone {
  display: flex; align-items: center; gap: 7px;
  padding: 0 20px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--navy); white-space: nowrap;
  text-decoration: none;
  border-left: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-cta-phone svg { width: 13px; height: 13px; fill: none; stroke: var(--orange); stroke-width: 2; flex-shrink:0; }
.nav-cta-phone:hover { color: var(--orange); }
/* Hamburger */
.nav-burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  cursor: pointer; padding: 0 18px;
  background: none; border: none;
  margin-left: auto; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; z-index: 199;
    overflow-y: auto; max-height: calc(100vh - var(--nav-h));
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
    padding-bottom: 20px;
  }
  .nav-menu.open .nav-item { flex-direction: column; align-items: stretch; }
  .nav-menu.open .nav-item > a,
  .nav-menu.open .nav-item > button {
    height: auto; padding: 14px 5%;
    font-size: 0.78rem; justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open .nav-item > a::after,
  .nav-menu.open .nav-item > button::after { display: none; }
  .nav-menu.open .nav-chevron { transform: none !important; }
  .nav-menu.open .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none; border-top: none;
    border-radius: 0; border-left: 3px solid var(--orange);
    margin-left: 5%; min-width: unset; padding: 4px 0;
  }
  .nav-menu.open .nav-dropdown li a { padding: 10px 18px; border-left: none; }
  .nav-menu.open .nav-dropdown li a::before { display: none; }
  .nav-menu.open .nav-dropdown .dd-section-label { padding: 8px 18px 4px; }
  .nav-burger { display: flex; }
  .nav-right .nav-cta-phone { display: none; }
}

/* ═══════════════════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════════════════ */
.carousel {
  position: relative; width: 100%;
  height: calc(100vh - var(--nav-h) - 35px);
  min-height: 540px; max-height: 820px;
  overflow: hidden; background: var(--navy);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1); z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  filter: blur(20px) brightness(0.35) saturate(1.5); z-index: 0;
}
.slide-img {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%; width: auto; max-width: none;
  object-fit: contain; z-index: 1;
}
.slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, rgba(12,31,63,0.92) 35%, rgba(12,31,63,0.5) 65%, transparent 100%);
  display: flex; align-items: center; padding: 0 6%;
}
.slide-caption { max-width: 560px; }
.slide.active .slide-caption { animation: captionIn 0.8s 0.3s ease both; }
@keyframes captionIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.slide-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.slide-eyebrow::before { content:''; width:24px; height:2px; background:var(--amber); border-radius:2px; }
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff; line-height: 1.15; margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.slide-sub {
  font-size: 1rem; color: rgba(255,255,255,0.82);
  font-weight: 500; line-height: 1.65;
  margin-bottom: 28px; max-width: 440px;
}
.slide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 50px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(244,124,32,0.45);
  transition: all 0.2s;
}
.slide-cta:hover { background: var(--orange2); transform: translateY(-2px); }
/* Carousel controls */
.carousel-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--orange); z-index: 10;
  width: 0%; transition: none;
}
.carousel-progress.running { transition: width 4.5s linear; width: 100%; }
.carousel-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.sdot {
  width: 28px; height: 3px; border-radius: 2px;
  border: none; background: rgba(255,255,255,0.35);
  cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.sdot.sdot-active { background: #fff; width: 44px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all 0.2s;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }
.slide-counter {
  position: absolute; bottom: 22px; right: 5%;
  z-index: 10; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25); padding: 4px 12px;
  border-radius: 20px; backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION (text + mini carousel)
═══════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 80px 5%;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 75% 50%, rgba(26,85,196,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content:''; width:24px; height:2px; background:var(--amber); border-radius:2px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: #fff; line-height: 1.08; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,0.78);
  line-height: 1.75; font-weight: 500; margin-bottom: 32px;
  max-width: 480px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.hero-tag {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Mini carousel */
.mini-carousel {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; max-height: 520px;
  background: #07183a;
}
.ms { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.ms.ms-active { opacity: 1; z-index: 1; }
.ms-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  filter: blur(16px) brightness(0.35); z-index: 0;
}
.ms-img {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  height: 100%; width: auto; max-width: none;
  object-fit: contain; z-index: 1;
}
.mini-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.mdot {
  width: 22px; height: 3px; border-radius: 2px; border: none;
  background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.mdot.mdot-a { background: #fff; width: 34px; }
.mini-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 34px; height: 34px; border-radius: 50%;
  font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mini-arrow:hover { background: rgba(0,0,0,0.65); }
.mini-prev { left: 10px; }
.mini-next { right: 10px; }

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--orange);
  padding: 32px 5%;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════════
   PHILOSOPHY / PURPOSE
═══════════════════════════════════════════════════ */
.philosophy {
  padding: 90px 5%;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.philosophy::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(26,85,196,0.25), transparent 70%);
  pointer-events:none;
}
.philosophy-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.philosophy-text .section-eyebrow { color: var(--amber); }
.philosophy-text .section-eyebrow::before { background: var(--amber); }
.philosophy-text .section-title { color: #fff; }
.philosophy-body p {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; font-weight: 500; margin-bottom: 16px;
}
.philosophy-body p strong { color: var(--amber); font-weight: 700; }
.philosophy-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 28px;
}
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.1); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.pillar-title {
  font-weight: 700; color: var(--amber); font-size: 0.88rem;
  margin-bottom: 4px; display: block;
}
.pillar-desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.55; }
/* Philosophy image column */
.philosophy-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  position: relative;
}
.p-img {
  border-radius: var(--radius); overflow: hidden;
  background: #07183a;
  box-shadow: var(--shadow-lg);
}
.p-img img { width: 100%; height: 200px; object-fit: contain; display: block; }
.p-img.tall img { height: 420px; }
.p-img-full { grid-column: 1/-1; }
.p-img-full img { height: 280px; }
.p-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--orange); color: #fff;
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 700;
  box-shadow: var(--shadow); max-width: 180px;
  text-align: center; line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   ACCORDION SYSTEM
═══════════════════════════════════════════════════ */
.accordions { background: var(--cream); }
.acc {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.acc:first-child { border-top: 1px solid var(--border); }
.acc-trigger {
  width: 100%; background: none; border: none;
  padding: 0; cursor: pointer; text-align: left;
  display: block;
}
.acc-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 26px 5%;
  transition: background 0.2s;
}
.acc-header:hover { background: rgba(244,124,32,0.03); }
.acc-trigger[aria-expanded="true"] .acc-header {
  background: rgba(244,124,32,0.05);
  border-left: 4px solid var(--orange);
  padding-left: calc(5% - 4px);
}
.acc-left { display: flex; align-items: center; gap: 18px; }
.acc-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.acc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--navy); font-weight: 700;
}
.acc-subtitle { font-size: 0.82rem; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.acc-chevron {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.9rem; flex-shrink: 0;
  transition: transform 0.35s, background 0.2s, color 0.2s;
}
.acc-trigger[aria-expanded="true"] .acc-chevron {
  transform: rotate(180deg);
  background: var(--orange); color: #fff;
}
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1);
}
.acc-body.open { max-height: 10000px; }
.acc-content { padding: 0 5% 60px; }

/* ═══════════════════════════════════════════════════
   WHO WE ARE (inside accordion)
═══════════════════════════════════════════════════ */
.about-grid { margin-top: 48px; }
.about-desc {
  font-size: 1.05rem; color: var(--text-2);
  line-height: 1.8; font-weight: 500; margin-bottom: 20px;
}
.vision-box {
  background: var(--navy); color: #fff;
  padding: 24px 28px; border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid var(--amber);
}
.vision-box strong { color: var(--amber); display: block; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.vision-box p { font-size: 1rem; font-weight: 600; line-height: 1.7; color: rgba(255,255,255,0.88); }
.approach-box {
  background: rgba(30,154,84,0.07);
  border-left: 4px solid var(--green);
  padding: 18px 22px; border-radius: 10px;
  font-size: 0.95rem; color: var(--text-2);
  font-weight: 600; line-height: 1.65;
}
.approach-box strong { color: var(--green); }
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 10px;
}
.pillar-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.pillar-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pillar-card-title { font-weight: 800; color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.pillar-card-desc { font-size: 0.83rem; color: var(--text-3); font-weight: 500; line-height: 1.55; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); }
.about-img img { width: 100%; height: 380px; object-fit: contain; display: block; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS (inside accordion)
═══════════════════════════════════════════════════ */
.how-intro { max-width: 640px; margin: 48px 0 60px; }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 28px; top: 56px; bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--green));
  z-index: 0;
}
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px;
  align-items: start; padding: 0 0 48px; position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  flex-shrink: 0; z-index: 1; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.step-body { padding-top: 8px; }
.step-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px; display: block;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 10px;
}
.step-desc { font-size: 0.95rem; color: var(--text-2); font-weight: 500; line-height: 1.75; }
.step-img { margin-top: 16px; border-radius: var(--radius); overflow: hidden; background: #07183a; }
.step-img img { width: 100%; height: 180px; object-fit: contain; display: block; }
.step-img-caption {
  background: var(--cream); padding: 8px 14px;
  font-size: 0.78rem; color: var(--text-3); font-weight: 600; font-style: italic;
}
.how-visual { position: relative; }
.how-visual-img { border-radius: var(--radius-lg); overflow: hidden; background: #07183a; }
.how-visual-img img { width: 100%; height: 440px; object-fit: contain; display: block; }

/* ═══════════════════════════════════════════════════
   PROGRAMS (inside accordion)
═══════════════════════════════════════════════════ */
.programs-intro { max-width: 640px; margin: 48px 0 50px; }
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prog-header { padding: 28px 24px 20px; }
.prog-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 14px; background: rgba(255,255,255,0.18);
}
.prog-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.prog-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.82); font-weight: 500; line-height: 1.5; }
.prog-body { padding: 18px 24px 24px; }
.prog-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prog-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--text-2); font-weight: 600; line-height: 1.45;
}
.prog-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════
   COACHING (inside accordion)
═══════════════════════════════════════════════════ */
.coaches-intro { max-width: 640px; margin: 48px 0 50px; }
.coaches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.coaches-img { border-radius: var(--radius-lg); overflow: hidden; background: #07183a; box-shadow: var(--shadow-lg); }
.coaches-img img { width: 100%; height: 480px; object-fit: contain; display: block; }
.merit-box {
  background: var(--navy); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px; box-shadow: var(--shadow);
}
.merit-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--amber); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; flex-shrink: 0;
}
.merit-text strong { color: var(--amber); display: block; font-size: 0.9rem; margin-bottom: 5px; }
.merit-text p { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.6; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream); border-radius: var(--radius);
  padding: 16px 18px; border-left: 4px solid var(--blue-lt);
  transition: border-color 0.2s;
}
.feature:hover { border-left-color: var(--orange); }
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.feature-title { font-weight: 800; color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
.feature-desc { font-size: 0.82rem; color: var(--text-3); font-weight: 500; line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   GREEN SKILLS
═══════════════════════════════════════════════════ */
.green-section { background: var(--sand); }
.green-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.green-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 50px; }
.green-items { display: flex; flex-direction: column; gap: 14px; }
.green-item {
  background: #fff; border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px;
  border-left: 4px solid var(--green); box-shadow: var(--shadow-sm);
}
.green-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.green-item-title { font-weight: 800; color: var(--navy); font-size: 0.9rem; display: block; margin-bottom: 3px; }
.green-item-desc { font-size: 0.82rem; color: var(--text-3); font-weight: 500; }
.green-highlight {
  background: linear-gradient(135deg, var(--green), #1a7a44);
  border-radius: var(--radius-lg); padding: 28px;
  color: #fff; margin-bottom: 18px; box-shadow: var(--shadow);
}
.green-highlight h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; }
.green-highlight p { font-size: 0.92rem; line-height: 1.65; opacity: 0.9; font-weight: 500; }
.harvest-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--navy);
  padding: 8px 18px; border-radius: 50px;
  font-weight: 800; font-size: 0.85rem; margin-top: 14px;
}
.green-earn { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.earn-item {
  background: rgba(255,255,255,0.18); border-radius: 10px;
  padding: 10px 14px; font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.pilot-pill {
  background: var(--orange); color: #fff;
  border-radius: var(--radius); padding: 20px 24px;
  font-weight: 800; text-align: center; font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.green-img { border-radius: var(--radius-lg); overflow: hidden; background: #0f2a1a; box-shadow: var(--shadow-lg); }
.green-img img { width: 100%; height: 280px; object-fit: contain; display: block; }

/* ═══════════════════════════════════════════════════
   VISION (Rwanda Commitment)
═══════════════════════════════════════════════════ */
.vision-section {
  background: var(--navy); padding: 90px 5%;
  position: relative; overflow: hidden; text-align: center;
}
.vision-section::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,85,196,0.25), transparent 70%);
  pointer-events: none;
}
.vision-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.vision-section .section-eyebrow { justify-content: center; color: var(--amber); }
.vision-section .section-eyebrow::before { display: none; }
.vision-section .section-title { color: #fff; }
.vision-section .section-title em { color: var(--amber); }
.vision-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 36px 0;
}
.vision-photo {
  border-radius: var(--radius); overflow: hidden;
  background: #07183a; box-shadow: var(--shadow);
}
.vision-photo img { width: 100%; height: 200px; object-fit: contain; display: block; }
.vision-commitment {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 28px 36px;
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85);
  line-height: 1.75; text-align: left;
}
.vision-commitment strong { color: var(--amber); }

/* ═══════════════════════════════════════════════════
   JOIN / CTA
═══════════════════════════════════════════════════ */
.join-section { padding: 90px 5%; background: var(--cream); }
.join-inner { max-width: 1200px; margin: 0 auto; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; margin-top: 50px; }
.join-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.join-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--sand);
  display: flex; align-items: center; gap: 10px;
}
.join-opt {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.join-opt:last-of-type { border-bottom: none; }
.join-opt-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.join-opt-title { font-weight: 800; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.join-opt-desc { font-size: 0.82rem; color: var(--text-3); font-weight: 500; line-height: 1.5; }
.contact-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 36px; color: #fff; box-shadow: var(--shadow-lg);
}
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--amber); margin-bottom: 6px;
}
.contact-card-sub { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 12px; color: #fff; font-weight: 700;
  transition: background 0.2s;
}
.contact-row:hover { background: rgba(255,255,255,0.14); }
.contact-row-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-row-label { font-size: 0.72rem; opacity: 0.6; display: block; font-weight: 600; }
.contact-row-value { font-size: 0.95rem; font-weight: 800; }
.sponsor-box {
  background: rgba(255,196,71,0.12);
  border: 1px solid rgba(255,196,71,0.3);
  border-radius: var(--radius); padding: 18px;
  margin-top: 20px; font-size: 0.88rem;
  font-weight: 600; color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.sponsor-box strong { color: var(--amber); display: block; font-size: 0.92rem; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #080f1e; padding: 60px 5% 30px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff; font-weight: 900; margin-bottom: 14px;
}
.footer-logo .dot { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; font-style: italic; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-contact-list li a:hover { color: var(--amber); }
.footer-col-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 18px; display: block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500;
  transition: color 0.2s; display: block;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; z-index: 199;
    padding: 12px 0 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    overflow-y: auto; max-height: calc(100vh - var(--nav-h));
  }
  .nav-menu.open .nav-item { width: 100%; flex-direction: column; align-items: flex-start; }
  .nav-menu.open .nav-item > a, .nav-menu.open .nav-item > button {
    height: auto; padding: 14px 5%; width: 100%; border-bottom: none;
  }
  .nav-menu.open .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none; border-top: none; border-radius: 0;
    border-left: 4px solid var(--orange); margin-left: 5%; width: auto; min-width: unset;
    padding: 4px 0;
  }
  .nav-burger { display: flex; }
  .nav-right { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .mini-carousel { max-height: 360px; }
  .grid-2, .philosophy-inner, .green-grid, .coaches-grid, .join-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .programs-grid { grid-template-columns: 1fr; }
  .grid-4, .stats-inner { grid-template-columns: 1fr 1fr; }
  .vision-photos { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .slide-overlay { background: linear-gradient(to top, rgba(12,31,63,0.95) 0%, rgba(12,31,63,0.6) 50%, rgba(12,31,63,0.2) 100%); align-items: flex-end; padding: 0 5% 68px; }
  .slide-caption { max-width: 100%; }
  .p-img.tall img, .p-img-full img { height: 220px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 16px 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .section { padding: 60px 0; }
  .vision-photos { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   POSTER SHOWCASE STRIPS
═══════════════════════════════════════════════════ */
.poster-strip {
  padding: 72px 5%;
}
.poster-strip.alt { background: var(--sand); }
.poster-strip-inner { max-width: 1200px; margin: 0 auto; }
.poster-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; margin-top: 48px;
}
.poster-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px;
}
.poster-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.poster-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,0.16); }
.poster-card img {
  width: 100%; display: block;
  object-fit: contain; background: #f5f5f5;
}
.poster-card img.landscape { height: 280px; object-fit: cover; }
.poster-card img.portrait  { height: 420px; }
.poster-card img.tall      { height: 520px; }
.poster-card-caption {
  padding: 18px 22px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.poster-card-caption strong {
  display: block; font-size: 0.88rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.poster-card-caption span {
  font-size: 0.78rem; color: var(--text-3); font-weight: 500; line-height: 1.5;
}
.poster-text { }
.poster-text .section-title { margin-bottom: 18px; }
.poster-text .section-body { margin-bottom: 24px; }
.poster-text .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   VOLUNTEER / INTERNSHIP SECTION
═══════════════════════════════════════════════════ */
.vol-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 32px 0;
}
.vol-benefit {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px; border-left: 4px solid var(--orange);
  transition: border-color 0.2s, transform 0.2s;
}
.vol-benefit:hover { border-left-color: var(--navy); transform: translateX(4px); }
.vol-benefit-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.vol-benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.vol-benefit-title { font-weight: 800; color: var(--navy); font-size: 0.9rem; margin-bottom: 5px; }
.vol-benefit-desc { font-size: 0.8rem; color: var(--text-3); font-weight: 500; line-height: 1.55; }
/* Application form */
.vol-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.vol-form-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--navy); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--sand);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.3px; text-transform: uppercase;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: inherit;
  font-size: 0.9rem; color: var(--text);
  background: #fff; 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(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkgroup { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.form-checkgroup label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
  text-transform: none; letter-spacing: 0; cursor: pointer;
  background: var(--cream); padding: 7px 12px;
  border-radius: 50px; border: 1.5px solid var(--border);
  transition: all 0.15s;
}
.form-checkgroup input[type="checkbox"] { accent-color: var(--orange); width: 14px; height: 14px; }
.form-checkgroup label:has(input:checked) {
  background: rgba(244,124,32,0.08); border-color: var(--orange); color: var(--orange);
}
.form-note { font-size: 0.75rem; color: var(--text-3); font-weight: 500; margin-top: 4px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 10px;
  background: var(--orange); color: #fff; border: none;
  font-family: inherit; font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.5px; cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--orange2); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════
   MEMBERSHIP PLANS
═══════════════════════════════════════════════════ */
.membership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 50px;
}
.plan-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(244,124,32,0.18);
  transform: translateY(-4px);
}
.plan-card.featured:hover { transform: translateY(-12px); }
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.plan-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.plan-tier {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.plan-price span { font-size: 0.85rem; font-weight: 600; color: var(--text-3); font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-tagline { font-size: 0.82rem; color: var(--text-3); font-weight: 500; line-height: 1.5; }
.plan-body { padding: 22px 28px 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-2); font-weight: 600; line-height: 1.4;
}
.plan-features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(30,154,84,0.12); flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231e9a54' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.plan-cta {
  display: block; width: 100%; margin-top: 20px;
  padding: 12px 20px; border-radius: 10px; text-align: center;
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.3px;
  cursor: pointer; border: 2px solid var(--navy); color: var(--navy);
  background: transparent; font-family: inherit;
  transition: all 0.2s;
}
.plan-cta:hover { background: var(--navy); color: #fff; }
.plan-card.featured .plan-cta {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.plan-card.featured .plan-cta:hover { background: var(--orange2); border-color: var(--orange2); }

@media (max-width: 900px) {
  .poster-grid-2, .poster-grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .vol-benefits { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .membership-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}