/* ============================================================
   JASAN GREEN EARTH — Premium Stylesheet v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --forest:       #0b2e1a;
  --emerald:      #1a5c35;
  --jade:         #24894f;
  --mint:         #3dbf70;
  --navy:         #0e2a5c;
  --blue:         #1a4a8a;
  --blue-mid:     #2060b8;
  --blue-light:   #e8f0fa;
  --gold:         #e8a832;
  --gold-light:   #fdf3dc;
  --cream:        #f7f4ef;
  --white:        #ffffff;
  --slate:        #1e2d24;
  --text:         #1a2420;
  --text-mid:     #4a5e54;
  --text-light:   #7a9085;
  --border:       #d8e8de;
  --shadow-sm:    0 2px 12px rgba(11,46,26,0.08);
  --shadow-md:    0 8px 32px rgba(11,46,26,0.12);
  --shadow-lg:    0 20px 60px rgba(11,46,26,0.16);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --max-w:        1140px;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--jade); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--emerald); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(11,46,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); font-family: var(--font-head);
}
.nav-logo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.25);
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text { line-height: 1.15; }
.nav-logo-text strong { display: block; font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }
.nav-logo-text span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.75; letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: #f0b83a !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,168,50,0.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #071a0e 0%, #0d2e50 35%, #0e3d22 70%, #0a2040 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 32px 60px;
}
/* Banner image as hero background */
.hero-banner-bg {
  position: absolute; inset: 0;
  background: url('banner.png') center center / cover no-repeat;
  opacity: 0.18;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #4cd687 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-orb-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,191,112,0.15) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-orb-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,74,138,0.20) 0%, transparent 70%);
  bottom: -100px; left: -50px; pointer-events: none;
}

/* Tagline badge */
.tagline-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(36,137,79,0.2), rgba(26,74,138,0.2));
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.90); font-size: 0.88rem; font-style: italic; font-weight: 500;
  padding: 8px 20px; border-radius: 30px; margin-top: 20px; margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* Banner section on homepage */
.banner-showcase {
  width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.12);
}
.banner-showcase img { width: 100%; display: block; }
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,191,112,0.15); border: 1px solid rgba(61,191,112,0.3);
  color: var(--mint); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.5); } }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--mint); }
.hero-title .gold { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,0.75); font-size: 1.08rem; line-height: 1.8;
  max-width: 520px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s var(--ease); cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: #f0b83a; color: var(--forest); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,50,0.4); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); transform: translateY(-2px); }
.btn-emerald { background: var(--jade); color: var(--white); }
.btn-emerald:hover { background: var(--emerald); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,137,79,0.35); }
.btn-outline-emerald { background: transparent; color: var(--jade); border: 1.5px solid var(--jade); }
.btn-outline-emerald:hover { background: var(--jade); color: var(--white); }

/* Hero right card */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 36px;
}
.hero-card-title {
  font-family: var(--font-head); color: var(--white);
  font-size: 1rem; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-stat-list { list-style: none; }
.hero-stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(61,191,112,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-stat-item span { color: rgba(255,255,255,0.80); font-size: 0.92rem; }
.hero-stat-item strong { display: block; color: var(--white); font-size: 0.92rem; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0%,100% { opacity:1; height:40px; } 50% { opacity:0.3; height:20px; } }

/* ── IMPACT STRIP ── */
.impact-strip {
  background: var(--forest);
  padding: 48px 32px;
}
.impact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius);
  overflow: hidden;
}
.impact-item {
  background: rgba(255,255,255,0.04);
  padding: 32px 24px; text-align: center;
  transition: background 0.2s;
}
.impact-item:hover { background: rgba(255,255,255,0.08); }
.impact-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 800;
  color: var(--mint); line-height: 1; margin-bottom: 8px;
}
.impact-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; letter-spacing: 0.04em; }

/* ── SECTION ── */
.section { padding: 88px 32px; }
.section-cream { background: var(--cream); }
.section-forest { background: var(--forest); }
.section-white { background: var(--white); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--jade); margin-bottom: 12px;
}
.section-eyebrow-light { color: var(--mint); }
.section-h {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--forest); line-height: 1.18;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.section-h-light { color: var(--white); }
.section-p { color: var(--text-mid); font-size: 1.02rem; max-width: 600px; line-height: 1.8; }
.section-p-light { color: rgba(255,255,255,0.70); }
.divider-line {
  width: 48px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--jade), var(--mint));
  margin: 16px 0 28px;
}
.divider-center { margin: 16px auto 28px; }

/* ── ABOUT PREVIEW ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  min-height: 480px; display: flex; align-items: center; justify-content: center;
}
.about-visual-inner { text-align: center; color: var(--white); padding: 48px; }
.about-visual-icon { font-size: 5rem; margin-bottom: 20px; }
.about-visual-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.about-visual-sub { opacity: 0.80; font-size: 0.97rem; line-height: 1.7; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 0.80rem; font-weight: 500;
  padding: 6px 14px; border-radius: 20px;
}
.about-content ul { list-style: none; margin: 24px 0 32px; }
.about-content ul li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--text-mid); font-size: 0.97rem; border-bottom: 1px solid var(--border);
}
.about-content ul li:last-child { border-bottom: none; }
.about-content ul li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--mint));
}

/* ── PROGRAMS ── */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prog-card-top {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.prog-card-body { padding: 24px; }
.prog-card-body h3 {
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
  color: var(--forest); margin-bottom: 8px;
}
.prog-card-body p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; }
.prog-tag {
  display: inline-block; margin-top: 14px;
  background: var(--cream); color: var(--jade);
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border);
}

/* Program color tops */
.prog-c1 { background: linear-gradient(135deg,#1a5c35,#27a85e); }
.prog-c2 { background: linear-gradient(135deg,#0d3d4f,#1a7a8a); }
.prog-c3 { background: linear-gradient(135deg,#2d1a5c,#6b3fbf); }
.prog-c4 { background: linear-gradient(135deg,#3d4a1a,#7a9627); }
.prog-c5 { background: linear-gradient(135deg,#5c1a1a,#bf4040); }
.prog-c6 { background: linear-gradient(135deg,#5c3d1a,#bf8c40); }
.prog-c7 { background: linear-gradient(135deg,#1a3d5c,#4080bf); }

/* ── YOUTUBE SECTION ── */
.yt-section {
  background: linear-gradient(135deg, #0b1f12, #0d3320, #1a5c35);
  padding: 88px 32px; position: relative; overflow: hidden;
}
.yt-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.yt-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.yt-thumb {
  background: linear-gradient(135deg, #1a0a0a, #3d1515);
  height: 220px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.yt-play {
  width: 68px; height: 68px; border-radius: 50%;
  background: #ff0000; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; cursor: pointer;
  box-shadow: 0 8px 24px rgba(255,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.yt-play:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(255,0,0,0.5); }
.yt-card-body { padding: 24px; }
.yt-channel-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.yt-card-body p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 16px; }
.yt-sub-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: var(--white); font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px; border-radius: 6px; transition: background 0.2s;
}
.yt-sub-badge:hover { background: #cc0000; color: var(--white); }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-card h4 { font-family: var(--font-head); color: var(--white); font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }

/* ── TRUSTEES ── */
.trustees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trustee-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trustee-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trustee-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(26,92,53,0.25);
}
.trustee-role {
  display: inline-block; background: var(--cream); color: var(--jade);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
.trustee-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.trustee-card .parent { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; }
.trustee-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ── SDG STRIP ── */
.sdg-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.sdg-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm); padding: 18px 12px; text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.sdg-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.sdg-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--mint); line-height: 1; margin-bottom: 6px; }
.sdg-item span { font-size: 0.74rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ── QUOTE BANNER ── */
.quote-section {
  background: linear-gradient(135deg, var(--jade), var(--emerald));
  padding: 72px 32px; text-align: center;
}
.quote-text {
  font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700; color: var(--white); max-width: 800px; margin: 0 auto 20px;
  line-height: 1.5; font-style: italic;
}
.quote-attr { color: rgba(255,255,255,0.75); font-size: 0.90rem; letter-spacing: 0.06em; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gold-light); padding: 80px 32px; text-align: center;
}
.cta-section .section-h { color: var(--forest); }

/* ── CONTACT GRID ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 4px 14px rgba(26,92,53,0.2);
}
.contact-item h4 { font-size: 0.80rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--jade); margin-bottom: 5px; font-weight: 700; }
.contact-item p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--cream); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--jade); background: var(--white);
  box-shadow: 0 0 0 4px rgba(36,137,79,0.10);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--jade), var(--emerald));
  color: var(--white); border: none; width: 100%;
  padding: 14px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(36,137,79,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,137,79,0.4); }
.form-success {
  display: none; margin-top: 16px; padding: 16px; border-radius: var(--radius-sm);
  background: #e6f7ed; border: 1px solid #b3e8c7; color: var(--emerald);
  font-size: 0.90rem; line-height: 1.6;
}
.form-error {
  display: none; margin-top: 16px; padding: 16px; border-radius: var(--radius-sm);
  background: #fdecea; border: 1px solid #f5c0bc; color: #c62828;
  font-size: 0.90rem;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, #071a0e 0%, #0d3320 50%, #1a5c35 100%);
  padding: 130px 32px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #4cd687 1px, transparent 0);
  background-size: 40px 40px;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.80rem; color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--mint); }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; }

/* ── PROGRAMS FULL ── */
.prog-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prog-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 80px 1fr;
  transition: transform 0.25s, box-shadow 0.25s;
}
.prog-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prog-full-icon {
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.prog-full-body { padding: 24px 24px 24px 0; }
.prog-full-body h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.prog-full-body p { color: var(--text-mid); font-size: 0.90rem; line-height: 1.7; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--cream); color: var(--jade); font-size: 0.73rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
}

/* ── FOOTER ── */
.footer { background: #061409; padding: 64px 32px 28px; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-icon {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: var(--white);
}
.footer-brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-text strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1rem; }
.footer-brand-text span { display: block; color: rgba(255,255,255,0.55); font-size: 0.72rem; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-yt {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,0,0,0.15); border: 1px solid rgba(255,0,0,0.25);
  color: #ff6b6b; font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 8px;
  transition: background 0.2s;
}
.footer-yt:hover { background: rgba(255,0,0,0.25); color: #ff6b6b; }
.footer h4 { color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.60); font-size: 0.88rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--mint); }
.footer-bottom {
  max-width: var(--max-w); margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.80rem; color: rgba(255,255,255,0.35);
}
.footer-sdg {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(61,191,112,0.10); border: 1px solid rgba(61,191,112,0.20);
  color: var(--mint); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .section { padding: 60px 20px; }
  .about-grid, .yt-inner, .contact-layout, .prog-full-grid { grid-template-columns: 1fr; gap: 36px; }
  .programs-grid { grid-template-columns: 1fr; }
  .trustees-grid { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 110px 20px 60px; }
}
@media (max-width: 480px) {
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
}
