/* ============================================================
   MEV FOUNDATION — GLOBAL STYLESHEET
   Covers: Home · About · Contact
   ============================================================ */


/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── DESIGN TOKENS ── */
:root {
  /* Brand colours */
  --orange:      #F2911B;
  --orange-dark: #d97d0f;
  --orange-light:#fdf3e7;
  --blue:        #14457D;
  --blue-dark:   #0e3260;
  --blue-light:  #e8f0f9;
  --white:       #ffffff;

  /* Grays */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    8px;
}


/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}


/* ── LAYOUT HELPERS ── */
section { padding: 96px 24px; }
.container { max-width: var(--container); margin: 0 auto; }


/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.22;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}


/* ── ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   NAVIGATION
   — transparent on home hero, solid on all other pages
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 24px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Solid state — JS adds .scrolled on home page */
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Add class="solid" to <nav> on pages without a hero (About, Contact) */
nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: filter 0.35s ease;
}

/* White logo on transparent nav (home hero) */
nav:not(.scrolled):not(.solid) .nav-logo img {
  filter: brightness(0) invert(1);
}

/* Coloured logo once nav is solid */
nav.scrolled .nav-logo img,
nav.solid    .nav-logo img {
  filter: none;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }

/* Default (transparent nav) — white links */
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover        { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-links a.active       { color: var(--white); background: rgba(255,255,255,0.12); }

/* Solid nav — dark links */
nav.scrolled .nav-links a,
nav.solid    .nav-links a { color: var(--gray-700); }

nav.scrolled .nav-links a:hover,
nav.solid    .nav-links a:hover { color: var(--blue); background: var(--blue-light); }

nav.scrolled .nav-links a.active,
nav.solid    .nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; transition: all 0.3s; background: rgba(255,255,255,0.9); }
nav.scrolled .hamburger span,
nav.solid    .hamburger span { background: var(--gray-700); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-lg   { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary       { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(242,145,27,0.4); }

.btn-outline       { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-white         { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover   { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-1px); }

.btn-outline-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* Outline button stays white when nav is transparent */
nav:not(.scrolled):not(.solid) .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}
nav:not(.scrolled):not(.solid) .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}


/* ============================================================
   PAGE HERO  (About & Contact — short, not full-screen)
   ============================================================ */
.page-hero {
  padding: 150px 24px 90px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1a5a9e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url("images/DSC_0306.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(242,145,27,0.16) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,145,27,0.18);
  border: 1px solid rgba(242,145,27,0.4);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.page-eyebrow::before { content: ''; display: block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 540px; margin: 0 auto 36px; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-tag  { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 500; padding: 6px 16px; border-radius: 100px; }


/* ============================================================
   HOME HERO  (full-screen with parallax)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("images/DSC_0306.jpg");
  background-size: cover;
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-attachment: scroll;
  z-index: 0;
}
.hero-accent  { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(242,145,27,0.2) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-accent2 { position: absolute; bottom: -80px; left: -80px;  width: 400px; height: 400px; background: radial-gradient(circle, rgba(242,145,27,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,145,27,0.2);
  border: 1px solid rgba(242,145,27,0.4);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.hero h1 { font-family: var(--font-heading); font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 20px; max-width: 820px; }
.hero h1 span { color: var(--orange); }

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.hero-sub span { display: inline-block; margin: 0 6px; color: var(--orange); }

.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 620px; line-height: 1.75; margin-bottom: 44px; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; justify-content: center; }

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%; max-width: 820px;
  gap: 2px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
}
.stat-box { background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); padding: 22px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-box:last-child { border-right: none; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after { content: ''; display: block; width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Partners strip */
.hero-partners {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.hero-partners-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; margin-right: 8px; }
.hero-partners-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.partner-tag         { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.55); transition: color 0.2s; white-space: nowrap; }
.partner-tag:hover   { color: rgba(255,255,255,0.85); }


/* ============================================================
   HOME — WHO WE ARE
   ============================================================ */
.about-section { background: var(--white); }
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual  { position: relative; }

.about-img-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 16px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-img-box::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S20 25.523 20 20zm0 0c0 5.523-4.477 10-10 10S0 25.523 0 20 4.477 10 10 10s10 4.477 10 10z'/%3E%3C/g%3E%3C/svg%3E"); }
.about-img-inner { text-align: center; color: rgba(255,255,255,0.9); z-index: 1; padding: 40px; }
.about-img-inner .big-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.about-img-inner p { font-size: 1.2rem; font-weight: 600; font-family: var(--font-heading); }

.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: var(--white); border-radius: 12px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 24px rgba(242,145,27,0.4); }
.about-badge .badge-num  { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .badge-text { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }

.about-content { padding-right: 16px; }
.about-body    { font-size: 1.02rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }

.about-tagline { display: flex; align-items: center; gap: 12px; background: var(--blue-light); border-left: 4px solid var(--orange); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 32px; }
.about-tagline p { font-size: 0.95rem; font-weight: 600; color: var(--blue); font-family: var(--font-heading); font-style: italic; }


/* ============================================================
   HOME — FOCUS AREAS
   ============================================================ */
.focus-section { background: var(--gray-50); }
.focus-header  { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.focus-header .section-subtitle { margin: 0 auto; }
.focus-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.focus-card { background: var(--white); border-radius: 14px; padding: 36px 30px; border: 1px solid var(--gray-200); transition: all 0.3s; position: relative; overflow: hidden; }
.focus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.focus-card:hover         { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.focus-card:hover::before { transform: scaleX(1); }

.focus-icon { width: 56px; height: 56px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: background 0.3s; }
.focus-card:hover .focus-icon { background: var(--orange); }
.focus-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.focus-card p  { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }


/* ============================================================
   HOME — PROGRAMS
   ============================================================ */
.programs-section { background: var(--white); }
.programs-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.programs-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.program-card       { border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.program-header { background: var(--blue); padding: 28px; position: relative; overflow: hidden; }
.program-header::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.program-num      { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.program-header h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.3; position: relative; z-index: 1; }
.program-header .program-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 100px; margin-top: 12px; position: relative; z-index: 1; }

.program-body   { padding: 28px; background: var(--white); }
.program-body p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

.program-features        { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.program-features li     { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-700); }
.program-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.program-outcome        { background: var(--orange-light); border-radius: 8px; padding: 12px 16px; font-size: 0.85rem; color: var(--blue); font-weight: 500; }
.program-outcome strong { color: var(--orange); }


/* ============================================================
   HOME — IMPACT
   ============================================================ */
.impact-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: var(--white); position: relative; overflow: hidden; }
.impact-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.impact-inner { position: relative; z-index: 1; }

.impact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 72px; }
.impact-top .section-title    { color: var(--white); }
.impact-top .section-subtitle { color: rgba(255,255,255,0.75); max-width: 480px; }

.sdg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sdg-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 16px; transition: background 0.2s; }
.sdg-chip:hover { background: rgba(255,255,255,0.14); }
.sdg-num  { font-size: 0.7rem; font-weight: 800; color: var(--orange); background: rgba(242,145,27,0.15); padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.sdg-chip span { font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.impact-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.impact-stat-box { background: rgba(255,255,255,0.06); padding: 36px 28px; text-align: center; transition: background 0.2s; border-right: 1px solid rgba(255,255,255,0.06); }
.impact-stat-box:last-child { border-right: none; }
.impact-stat-box:hover { background: rgba(255,255,255,0.1); }
.impact-stat-box .num   { font-size: 2.4rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; font-family: var(--font-heading); }
.impact-stat-box .label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }


/* ============================================================
   HOME — CTA / GET INVOLVED
   ============================================================ */
.cta-section { background: var(--orange-light); }

.cta-box { background: var(--white); border-radius: 20px; padding: 72px; text-align: center; border: 1px solid var(--gray-200); box-shadow: 0 4px 32px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.cta-box .section-title    { text-align: center; max-width: 560px; margin: 0 auto 16px; }
.cta-box .section-subtitle { text-align: center; margin: 0 auto 44px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--gray-200); }
.cta-card       { padding: 28px 24px; background: var(--gray-50); border-radius: 12px; text-align: left; border: 1px solid var(--gray-200); transition: all 0.3s; }
.cta-card:hover { background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.cta-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.cta-card h4   { font-family: var(--font-heading); font-size: 1rem; color: var(--blue); margin-bottom: 8px; font-weight: 700; }
.cta-card p    { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Mission / Vision strip */
.mv-strip { background: var(--blue-dark); padding: 0 24px; }
.mv-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.mv-card  { padding: 52px 48px; position: relative; }
.mv-card:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.mv-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.mv-card-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--orange); border-radius: 2px; }
.mv-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.mv-card p  { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.mv-big-num { position: absolute; right: 40px; top: 40px; font-family: var(--font-heading); font-size: 5rem; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; user-select: none; }

/* Story section */
.story-section { padding: 96px 24px; background: var(--white); }
.story-grid    { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual  { position: relative; }

.story-img-box { width: 100%; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--blue-light), #c8dcf2); border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.story-img-box::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(14,50,96,0.6), transparent); }
.story-img-icon { font-size: 6rem; opacity: 0.4; }

.story-quote-card { position: absolute; bottom: -28px; right: -28px; background: var(--white); border-radius: 16px; padding: 22px 24px; max-width: 260px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-left: 4px solid var(--orange); }
.story-quote-card p    { font-size: 0.85rem; color: var(--gray-700); line-height: 1.6; font-style: italic; margin-bottom: 10px; }
.story-quote-card cite { font-size: 0.75rem; font-weight: 600; color: var(--blue); font-style: normal; }

.story-year-badge { position: absolute; top: -20px; left: -20px; width: 80px; height: 80px; background: var(--orange); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(242,145,27,0.45); }
.story-year-badge .yr  { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; }
.story-year-badge .num { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--white); line-height: 1; }

.story-content { display: flex; flex-direction: column; gap: 20px; }
.story-body    { font-size: 0.96rem; color: var(--gray-600); line-height: 1.8; }
.story-values  { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.value-row     { display: flex; align-items: flex-start; gap: 14px; }
.value-dot     { width: 36px; height: 36px; flex-shrink: 0; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-top: 2px; }
.value-row h5  { font-size: 0.92rem; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.value-row p   { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }

/* Pillars */
.pillars-section { padding: 96px 24px; background: var(--gray-50); }
.pillars-header  { text-align: center; margin-bottom: 56px; }
.pillars-header .section-subtitle { margin: 0 auto; }
.pillars-grid    { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pillar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 40px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-number { font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: var(--gray-100); line-height: 1; margin-bottom: 8px; user-select: none; }
.pillar-icon   { font-size: 2.2rem; margin-bottom: 18px; }
.pillar-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.pillar-card p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* Team */
.team-section { padding: 96px 24px; background: var(--white); }
.team-header  { text-align: center; margin-bottom: 56px; }
.team-header .section-subtitle { margin: 0 auto; }
.team-grid    { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card       { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px; padding: 32px 28px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 6px 20px rgba(20,69,125,0.3); }
.team-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.team-role    { font-size: 0.8rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-card p  { font-size: 0.84rem; color: var(--gray-600); line-height: 1.65; }

/* About impact strip */
.impact-strip { padding: 80px 24px; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); position: relative; overflow: hidden; }
.impact-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.impact-inner        { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.impact-header-strip { text-align: center; margin-bottom: 52px; }
.impact-header-strip h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.impact-header-strip p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.impact-numbers  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.impact-num-box  { background: rgba(255,255,255,0.05); padding: 36px 24px; text-align: center; border-radius: var(--radius); transition: background 0.25s; }
.impact-num-box:hover { background: rgba(255,255,255,0.09); }
.impact-big      { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.impact-big span { color: var(--orange); }
.impact-label    { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* About CTA banner */
.cta-banner { padding: 96px 24px; background: var(--gray-50); }
.cta-banner-inner { max-width: 860px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; padding: 64px 56px; box-shadow: 0 4px 32px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.cta-banner-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.cta-banner-inner h2       { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }
.cta-banner-inner h2 span  { color: var(--orange); }
.cta-banner-inner p        { font-size: 1rem; color: var(--gray-600); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 24px 100px; background: var(--gray-50); }
.contact-wrap    { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }

.contact-left  { display: flex; flex-direction: column; gap: 32px; }
.connect-cards { display: flex; flex-direction: column; gap: 14px; }

.connect-card       { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 22px 24px; display: flex; align-items: flex-start; gap: 18px; transition: box-shadow 0.25s, transform 0.25s; }
.connect-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.connect-card-icon  { width: 48px; height: 48px; flex-shrink: 0; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; transition: background 0.25s; }
.connect-card:hover .connect-card-icon { background: var(--orange); }
.connect-card-text h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.connect-card-text p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; }

.contact-info-block    { background: var(--blue-dark); border-radius: 14px; padding: 28px; }
.contact-info-block h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.info-row              { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.info-row:last-child   { margin-bottom: 0; }
.info-icon  { width: 36px; height: 36px; flex-shrink: 0; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.info-row span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.info-row a    { color: var(--orange); text-decoration: none; font-size: 0.88rem; }
.info-row a:hover { text-decoration: underline; }
.social-row    { display: flex; gap: 10px; margin-top: 20px; }
.social-link   { 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.65); text-decoration: none; font-size: 0.82rem; font-weight: 600; transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--orange); color: var(--white); }

.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.07); position: sticky; top: 96px; }
.form-header       { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 28px 36px; position: relative; overflow: hidden; }
.form-header::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.form-header h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.form-header p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.intent-tabs { display: flex; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.intent-tab  { flex: 1; padding: 13px 10px; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--gray-600); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s, background 0.2s; font-family: var(--font-body); letter-spacing: 0.02em; }
.intent-tab:hover  { color: var(--blue); background: var(--blue-light); }
.intent-tab.active { color: var(--orange); border-bottom-color: var(--orange); background: var(--white); }

.form-body  { padding: 28px 36px 36px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group:last-of-type { margin-bottom: 0; }

label { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); letter-spacing: 0.04em; text-transform: uppercase; }

input, select, textarea {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-900);
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(242,145,27,0.12); }
input::placeholder, textarea::placeholder { color: var(--gray-600); opacity: 0.6; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b5563' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea { resize: vertical; min-height: 110px; }

.form-submit-row { margin-top: 24px; }
.form-note       { font-size: 0.76rem; color: var(--gray-600); margin-top: 12px; text-align: center; }

.form-success    { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 36px; gap: 16px; }
.success-icon    { width: 64px; height: 64px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.form-success h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--blue); font-weight: 700; }
.form-success p  { font-size: 0.88rem; color: var(--gray-600); max-width: 300px; line-height: 1.6; }


/* ============================================================
   FOOTER  (shared across all pages)
   ============================================================ */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 24px 40px;
}
.footer-top {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p   { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; max-width: 280px; }

.footer-social   { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social a svg { width: 18px; height: 18px; display: block; }

.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover, .footer-col ul li a:hover { color: var(--orange); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }

.footer-bottom {
  max-width: var(--container); margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Home */
  .hero-stats          { grid-template-columns: repeat(2, 1fr); }
  .hero-partners-logos { gap: 16px; }
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-visual        { order: -1; }
  .about-badge         { bottom: -16px; right: 16px; }
  .focus-grid          { grid-template-columns: 1fr; }
  .programs-grid       { grid-template-columns: 1fr; }
  .impact-top          { grid-template-columns: 1fr; gap: 48px; }
  .impact-stats        { grid-template-columns: repeat(2, 1fr); }
  .cta-box             { padding: 48px 32px; }
  .cta-card-grid       { grid-template-columns: 1fr; }

  /* About */
  .mv-inner            { grid-template-columns: 1fr; }
  .mv-card:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .story-grid          { grid-template-columns: 1fr; gap: 60px; }
  .story-visual        { order: -1; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .impact-numbers      { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-wrap      { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { position: static; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  section { padding: 72px 20px; }

  /* Home */
  .hero-buttons    { flex-direction: column; }
  .hero-stats      { grid-template-columns: 1fr 1fr; }
  .impact-stats    { grid-template-columns: 1fr 1fr; }
  .sdg-grid        { grid-template-columns: 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; }

  /* Page heroes */
  .page-hero { padding: 120px 20px 60px; }

  /* About */
  .story-quote-card { right: 0; bottom: -20px; max-width: 220px; }
  .team-grid        { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 44px 28px; }

  /* Contact */
  .contact-section { padding: 56px 20px 72px; }
  .form-row        { grid-template-columns: 1fr; }
  .form-body       { padding: 22px 24px 28px; }
  .form-header     { padding: 22px 24px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   LINE ICONS  — replaces all emoji icons site-wide
   ============================================================ */

/* Icon wrapper used for focus cards, cta cards, approach pillars etc */
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrap svg {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Focus cards — icon box */
.focus-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
  color: var(--orange);
}
.focus-card:hover .focus-icon { background: var(--orange); color: var(--white); }
.focus-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }

/* CTA cards icon */
.cta-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
  transition: background 0.3s, color 0.3s;
}
.cta-card:hover .cta-card-icon { background: var(--orange-light); color: var(--orange); }
.cta-card-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }

/* SDG mini row icons */
.sdg-mini-icon {
  flex-shrink: 0;
  color: var(--blue);
}
.sdg-mini-icon svg { width: 16px; height: 16px; stroke-width: 1.8; display: block; }

/* ============================================================
   MOBILE NAV DRAWER  (replaces the broken .open stack)
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 98;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { background: var(--blue-light); color: var(--blue); }
.mobile-menu-divider { height: 1px; background: var(--gray-200); margin: 10px 0; }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; padding: 0 0 4px; }
.mobile-menu-cta .btn { justify-content: center; width: 100%; }

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   VOICES UNHEARD — Hero programme teaser
   ============================================================ */
.voices-section {
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3f6e 100%);
  position: relative; overflow: hidden;
}
.voices-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.voices-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.voices-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,145,27,0.18); border: 1px solid rgba(242,145,27,0.4);
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.voices-label::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.voices-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.voices-inner h2 span { color: var(--orange); }
.voices-inner p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 28px; font-size: 1rem; }
.voices-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.voices-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; transition: background 0.2s;
}
.voices-tag:hover { background: rgba(255,255,255,0.15); }
.voices-image {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.voices-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voices-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,50,96,0.6) 0%, transparent 50%);
}
.voices-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--orange); color: var(--white);
  border-radius: 10px; padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(242,145,27,0.4);
  font-size: 0.8rem; font-weight: 700;
}

/* ============================================================
   COUNTERS / IMPACT NUMBERS
   ============================================================ */
.counters-section {
  padding: 72px 24px;
  background: var(--white);
}
.counters-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.counter-box {
  padding: 36px 24px; text-align: center;
  background: var(--gray-50); border-right: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.counter-box:last-child { border-right: none; }
.counter-box:hover { background: var(--white); }
.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px;
}
.counter-num span { color: var(--orange); }
.counter-label {
  font-size: 0.78rem; font-weight: 600; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* ============================================================
   FEATURE CARDS (Home page new section)
   ============================================================ */
.feature-cards-section { padding: 80px 24px; background: var(--gray-50); }
.feature-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 28px 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--orange-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 16px;
  transition: background 0.25s, color 0.25s;
}
.feature-card:hover .feature-card-icon { background: var(--orange); color: var(--white); }
.feature-card-icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.feature-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.feature-card p  { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .voices-inner        { grid-template-columns: 1fr; gap: 48px; }
  .counters-inner      { grid-template-columns: repeat(2, 1fr); }
  .feature-cards-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .counters-inner      { grid-template-columns: repeat(2, 1fr); }
  .feature-cards-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWS / LATEST EVENTS STRIP
   ============================================================ */
.news-strip-section { padding: 96px 24px; background: var(--white); }
.news-strip-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.news-tab-row { display: flex; gap: 6px; background: var(--gray-100); border-radius: 12px; padding: 5px; }
.news-tab {
  padding: 9px 20px; border-radius: 8px; border: none;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  color: var(--gray-600); background: transparent;
  transition: all 0.2s; font-family: var(--font-body); white-space: nowrap;
}
.news-tab.active { background: var(--white); color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.news-tab:hover:not(.active) { color: var(--blue); }
.news-tab-panel { display: none; }
.news-tab-panel.active { display: block; animation: fadeInPanel 0.3s ease; }
@keyframes fadeInPanel { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* Featured event card */
.featured-event-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.featured-event-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.13); transform: translateY(-3px); }
.featured-event-img { position: relative; overflow: hidden; min-height: 340px; }
.featured-event-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s; }
.featured-event-card:hover .featured-event-img img { transform: scale(1.04); }
.featured-event-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,50,96,0.72) 0%, rgba(20,69,125,0.55) 100%);
}
.featured-event-badges {
  position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 8px;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #ef4444; color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 2px 12px rgba(239,68,68,0.5);
}
.live-dot { width: 7px; height: 7px; background: var(--white); border-radius: 50%; flex-shrink: 0; }
.pulse { animation: livePulse 2s infinite; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(239,68,68,0.5); }
  50% { box-shadow: 0 2px 20px rgba(239,68,68,0.85); }
}
.event-type-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px); color: var(--white);
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
}
.featured-event-meta-overlay {
  position: absolute; bottom: 20px; left: 20px;
}
.featured-event-date-box {
  background: var(--orange); color: var(--white);
  border-radius: 10px; padding: 12px 18px; display: inline-block;
  box-shadow: 0 4px 16px rgba(242,145,27,0.45); text-align: center;
}
.date-day { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; line-height: 1; display: block; }
.date-mon { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; display: block; margin-top: 2px; }
.featured-event-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.featured-event-eyebrow {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--gray-600);
}
.featured-event-eyebrow svg { color: var(--orange); flex-shrink: 0; }
.featured-event-body h3 {
  font-family: var(--font-heading); font-size: clamp(1.2rem,2.2vw,1.7rem);
  font-weight: 800; color: var(--blue); line-height: 1.25;
}
.featured-event-body p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; }
.featured-event-schools { display: flex; flex-wrap: wrap; gap: 8px; }
.school-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.76rem; font-weight: 600; padding: 6px 14px; border-radius: 100px;
}
.school-chip svg { color: var(--orange); }
.featured-event-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.featured-event-actions .btn { display: inline-flex; align-items: center; gap: 7px; }

/* Mini event grid */
.mini-event-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mini-event-card {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 18px 16px; display: flex; align-items: center; gap: 14px;
  transition: all 0.25s;
}
.mini-event-card:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-2px); }
.mini-event-card.mini-event-cta-card { border-color: var(--orange-light); }
.mini-event-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.mini-event-icon.orange { background: var(--orange-light); color: var(--orange); }
.mini-event-icon svg { width: 18px; height: 18px; stroke-width: 1.7; }
.mini-event-body { flex: 1; }
.mini-event-label { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 3px; }
.mini-event-body h5 { font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-bottom: 1px; }
.mini-event-body p  { font-size: 0.76rem; color: var(--gray-600); }
.mini-event-arrow { font-size: 1rem; color: var(--gray-400); font-weight: 700; text-decoration: none; transition: color 0.2s, transform 0.2s; }
.mini-event-card:hover .mini-event-arrow { color: var(--orange); transform: translateX(3px); }
.orange-arrow { color: var(--orange) !important; }

/* Projects grid */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.project-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: all 0.25s; }
.project-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.project-card-top {
  padding: 20px; display: flex; align-items: center; justify-content: space-between;
}
.project-card-top.blue   { background: var(--blue-light); }
.project-card-top.orange { background: var(--orange-light); }
.project-card-top.purple { background: #ede9fe; }
.project-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.project-card-top.orange .project-icon { color: var(--orange); }
.project-card-top.purple .project-icon { color: #7c3aed; }
.project-icon svg { width: 20px; height: 20px; stroke-width: 1.7; }
.project-status {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.active-status   { background: #dcfce7; color: #166534; }
.planning-status { background: #fef3c7; color: #92400e; }
.upcoming-status { background: #ede9fe; color: #5b21b6; }
.project-card-body { padding: 22px 20px; }
.project-card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; font-family: var(--font-heading); }
.project-card-body p  { font-size: 0.83rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.project-progress { margin-bottom: 16px; }
.project-progress-label { display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.project-progress-bar { height: 6px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.project-progress-fill { height: 100%; background: var(--blue); border-radius: 100px; transition: width 1s ease; }
.project-progress-fill.planning { background: #f59e0b; }
.project-link { font-size: 0.82rem; font-weight: 700; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.project-card:hover .project-link { gap: 8px; }

/* Updates list */
.updates-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; }
.update-item {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center; padding: 22px 24px;
  border-bottom: 1px solid var(--gray-200); text-decoration: none; color: inherit;
  background: var(--white); transition: background 0.2s;
}
.update-item:last-child { border-bottom: none; }
.update-item:hover { background: var(--gray-50); }
.update-item.featured-update { background: var(--blue-light); border-left: 4px solid var(--blue); }
.update-item.featured-update:hover { background: #dbeafe; }
.update-date-box { text-align: center; flex-shrink: 0; }
.upd-day { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--orange); line-height: 1; display: block; }
.upd-mon { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gray-600); text-transform: uppercase; display: block; }
.update-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 10px; border-radius: 100px; margin-bottom: 5px;
}
.update-body h4 { font-size: 0.92rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; font-family: var(--font-heading); }
.update-body p  { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }
.update-arrow { font-size: 1rem; color: var(--gray-400); font-weight: 700; transition: color 0.2s, transform 0.2s; }
.update-item:hover .update-arrow { color: var(--orange); transform: translateX(4px); }

/* News responsive */
@media (max-width: 1024px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .featured-event-card { grid-template-columns: 1fr; }
  .featured-event-img { min-height: 260px; }
  .mini-event-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .news-strip-header { flex-direction: column; align-items: flex-start; }
  .update-item { grid-template-columns: auto 1fr; }
  .update-arrow { display: none; }
}
@media (max-width: 600px) {
  .news-tab-row { flex-wrap: wrap; }
  .projects-grid { grid-template-columns: 1fr; }
  .featured-event-body { padding: 24px 20px; }
}