/* ============================================================
   Learning Point Foundation — Global Stylesheet
   Palette: Green (#1A6B3C primary) + Navy (#1A2540 accent)
   Fonts: Montserrat (headings), Lato (body), Merriweather (quotes)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Merriweather:ital,wght@0,400;1,400;1,700&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --green-primary: #1A6B3C;
  --green-light:   #2D9156;
  --green-pale:    #E8F5EE;
  --green-dark:    #134F2C;
  --navy:          #1A2540;
  --navy-light:    #253660;
  --dark:          #1A1A1A;
  --text:          #1A1A1A;
  --text2:         #4A5568;
  --text3:         #8A9BB0;
  --white:         #FFFFFF;
  --light-grey:    #F4F6F5;
  --border:        #D1E5D9;
  --shadow:        0 4px 24px rgba(26,107,60,0.10);
  --shadow-lg:     0 12px 48px rgba(26,107,60,0.16);

  --font-heading: 'Montserrat', 'Raleway', sans-serif;
  --font-body:    'Lato', 'Open Sans', sans-serif;
  --font-quote:   'Merriweather', 'Playfair Display', serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s ease;
  --container: 1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text2); }

.section-title   { font-family: var(--font-heading); font-weight: 800; text-align: center; margin-bottom: 16px; }
.section-title .accent { color: var(--green-primary); }
.section-subtitle { text-align: center; max-width: 620px; margin: 0 auto 48px; font-size: 1.05rem; color: var(--text2); }
.section-label { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-primary); margin-bottom: 12px; text-align: center; }

/* ── Tag / badge ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section        { padding: 100px 0; }
.section-alt    { padding: 100px 0; background: var(--light-grey); }
.section-green  { padding: 100px 0; background: var(--green-primary); color: white; }
.section-pale   { padding: 100px 0; background: var(--green-pale); }
.section-navy   { padding: 100px 0; background: var(--navy); color: white; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--green-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(26,107,60,0.25);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,60,0.35);
}
.btn-navy {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 16px rgba(26,37,64,0.25);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,37,64,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ── Service link (text link with arrow) ──────────────────── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--green-dark); }

/* ── Grids ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── Card base ────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Programme / Initiative Card ─────────────────────────── */
.initiative-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.initiative-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.initiative-card h3 { font-size: 1.05rem; margin: 0; }
.initiative-card p  { font-size: 0.92rem; margin: 0; flex-grow: 1; }

/* ── Impact Stats Row ─────────────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.impact-stat {
  background: white;
  padding: 48px 24px;
  text-align: center;
}
.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
  display: block;
}
.impact-stat p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text2);
  margin-top: 10px;
}

/* ── Story Card ───────────────────────────────────────────── */
.story-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-pale);
  flex-shrink: 0;
}
.story-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.story-pull-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.6;
  border-left: 3px solid var(--green-primary);
  padding-left: 16px;
}
.story-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.story-card p { font-size: 0.9rem; }

/* Full story page card (testimonials page) */
.testimonial-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.testimonial-full-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-full-card .story-avatar { width: 90px; height: 90px; flex-shrink: 0; }
.testimonial-full-body { flex: 1; }
.testimonial-section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-primary);
  margin-top: 16px;
  margin-bottom: 4px;
}

/* ── Partner Logo Grid ────────────────────────────────────── */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text2);
  min-width: 160px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-logo:hover { border-color: var(--green-light); box-shadow: var(--shadow); }

/* ── Volunteer Category Cards ─────────────────────────────── */
.volunteer-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.volunteer-card:hover,
.volunteer-card.active {
  border-color: var(--green-primary);
  background: var(--green-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.volunteer-card .vol-icon { font-size: 2.2rem; margin-bottom: 12px; }
.volunteer-card h3 { font-size: 1rem; margin-bottom: 6px; }
.volunteer-card p  { font-size: 0.88rem; margin: 0; }
.volunteer-detail {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
  display: none;
}
.volunteer-detail.show { display: block; }

/* ── Donate Page ──────────────────────────────────────────── */
.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 320px;
  margin: 0 auto;
}
.qr-wrapper img { width: 200px; height: 200px; border-radius: var(--radius); }
.qr-wrapper p { font-size: 0.88rem; color: var(--text2); text-align: center; }
.qr-wrapper strong { font-family: var(--font-heading); font-size: 1.1rem; color: var(--green-primary); }

.preset-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.amount-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  background: white;
  cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--green-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,60,0.25);
}

.impact-note {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1rem;
  color: var(--green-dark);
  text-align: center;
  padding: 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-primary);
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img { height: 62px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green-primary); background: var(--green-pale); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  transform: translateX(-50%) translateY(-8px);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
  border-radius: 8px;
  margin: 0 8px;
}
.nav-dropdown a:hover { background: var(--green-pale); color: var(--green-primary); }
.chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.nav-item:hover .chevron,
.nav-item.dropdown-open .chevron { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-donate {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--green-primary);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(26,107,60,0.25);
}
.nav-donate:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top {
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
}
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-link.plain-link { display: block; }
.mobile-sub-links {
  padding: 0 0 12px 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-sub-links.open { display: flex; }
.mobile-sub-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  transition: color var(--transition);
}
.mobile-sub-links a:hover { color: white; }
.mobile-menu .btn-primary { margin-top: 24px; text-align: center; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,37,64,0.82) 0%, rgba(26,107,60,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 20px;
}
.hero-stat-badge .stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #7EE8A2;
}
.hero-stat-badge .stat-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-shortcuts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 20px;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  min-width: 90px;
  text-align: center;
}
.hero-shortcut:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.hero-shortcut .shortcut-icon { font-size: 1.6rem; }

/* ── About Strip ──────────────────────────────────────────── */
.about-strip {
  background: var(--green-primary);
  padding: 56px 0;
}
.about-strip p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}
.about-strip p strong { color: white; font-weight: 700; }

/* ── Donate CTA Banner ────────────────────────────────────── */
.donate-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.donate-banner h2 { color: white; margin-bottom: 16px; }
.donate-banner p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.donate-banner .qr-mini {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 28px;
}
.donate-banner .qr-mini img { width: 80px; height: 80px; border-radius: 8px; }
.donate-banner .qr-mini p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.88rem; }
.donate-banner .qr-mini strong { color: white; font-family: var(--font-heading); display: block; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1   { color: white; margin-bottom: 16px; }
.page-hero p    { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.page-hero .tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Founder Card ─────────────────────────────────────────── */
.founder-card {
  display: flex;
  gap: 48px;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img-wrap {
  flex-shrink: 0;
  width: 380px;
}
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.founder-body { padding: 48px 48px 48px 0; }
.founder-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.founder-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.founder-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  border-left: 4px solid var(--green-primary);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── Team Card ────────────────────────────────────────────── */
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--green-pale);
}
.team-card-body { padding: 20px 20px 24px; }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--green-primary); font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; }

/* ── Step Process ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  padding: 32px 24px;
  position: relative;
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--green-primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step h3 { font-size: 0.98rem; margin-bottom: 8px; }
.step p  { font-size: 0.88rem; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-primary); color: white; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner { padding: 0 0 20px; font-size: 0.95rem; color: var(--text2); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Enroll / CTA cards ───────────────────────────────────── */
.enroll-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.enroll-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); }
.enroll-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enroll-card h3 { font-size: 0.98rem; margin-bottom: 4px; }
.enroll-card p  { font-size: 0.88rem; margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: white; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 40px; width: auto; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; margin-top: 12px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
}
.footer-socials a:hover { background: var(--green-primary); color: white; }

/* ── Floating Buttons ─────────────────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.fab-whatsapp { background: #25D366; }
.fab-top { background: var(--green-primary); color: white; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── Preloader ────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-text { color: white; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.loader-text .accent { color: #7EE8A2; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--green-light), #7EE8A2); border-radius: 3px; animation: load 1.2s ease forwards; }
@keyframes load { from { width: 0; } to { width: 100%; } }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: white; }
.text-green  { color: var(--green-primary); }
.text-navy   { color: var(--navy); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { flex-direction: column; }
  .founder-img-wrap { width: 100%; }
  .founder-img-wrap img { min-height: 300px; }
  .founder-body { padding: 32px; }
}

@media (max-width: 900px) {
  /* Stack all two-column grids */
  .grid-2 { grid-template-columns: 1fr; }

  /* Founder callout on homepage */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .section, .section-alt, .section-pale, .section-navy, .section-green { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-shortcuts { gap: 10px; }
  .hero-shortcut { padding: 12px 14px; min-width: 76px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .testimonial-full-card { flex-direction: column; }
  .preset-amounts { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Page hero sizing */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Donate banner */
  .donate-banner { padding: 60px 0; }
  .donate-banner .qr-mini { padding: 16px 20px; gap: 14px; }
  .donate-banner .qr-mini img { width: 60px; height: 60px; }

  /* Team / founder card mobile */
  .team-card-avatar { height: 160px; }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .partner-grid { gap: 12px; }
  .partner-logo { padding: 14px 20px; min-width: 130px; }

  /* Container padding on small phones */
  .container { padding: 0 16px; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }

  /* Cards */
  .card, .initiative-card, .initiative-card-v2 { padding: 24px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
}

/* ── Inline SVG Icon Helper ──────────────────────────────── */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.initiative-icon-v2 svg,
.initiative-icon svg {
  display: block;
}

