/* ============================================================
   EASTERN DIGITAL BRIDGE — Website Stylesheet
   Version 1.0 | Brand: The Signal
   ============================================================ */

/* ── 1. FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

/* ── 2. BRAND VARIABLES ───────────────────────────────────── */
:root {
  --blue:       #0E4D8A;
  --teal:       #0891B2;
  --green:      #16A34A;
  --orange:     #EA580C;
  --navy:       #0F172A;
  --cloud:      #F8FAFC;
  --mist:       #94A3B8;
  --slate:      #475569;
  --white:      #FFFFFF;
  --border:     #E2E8F0;
  --light-blue: #DBEAFE;
  --light-teal: #CFFAFE;

  --font-body:    'Inter', -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --nav-height: 72px;
  --max-width:  1240px;
  --transition: 0.2s ease;
}

/* ── 3. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 4. UTILITY CLASSES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--cloud { background: var(--cloud); }
.section--blue  { background: var(--blue);  color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: #c94a08;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234,88,12,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover {
  background: #0b3d6e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,77,138,0.35);
}

.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ── 6. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text .line1 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
}

.nav__logo-text .line2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.nav.transparent .nav__logo-text .line1 { color: var(--white); }
.nav.transparent .nav__logo-text .line2 { color: rgba(255,255,255,0.85); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__link:hover { background: var(--cloud); color: var(--blue); }
.nav__link.active { color: var(--blue); font-weight: 600; }

.nav.transparent .nav__link { color: rgba(255,255,255,0.85); }
.nav.transparent .nav__link:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.nav__cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav__cta:hover { background: #c94a08; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.transparent .nav__toggle span { background: var(--white); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--white);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}

.nav__mobile.open { display: flex; flex-direction: column; gap: 4px; }

.nav__mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { background: var(--cloud); color: var(--blue); }
.nav__mobile-cta {
  margin-top: 12px;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated signal arc background */
.hero__signal-bg {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  opacity: 0.06;
  pointer-events: none;
}

.hero__signal-bg .arc {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  border: 2px solid var(--teal);
  border-left: none;
  border-radius: 0 50% 50% 0;
  animation: pulse-arc 3s ease-in-out infinite;
}

.hero__signal-bg .arc:nth-child(1) { width: 200px; height: 400px; animation-delay: 0s; }
.hero__signal-bg .arc:nth-child(2) { width: 350px; height: 700px; animation-delay: 0.5s; }
.hero__signal-bg .arc:nth-child(3) { width: 500px; height: 900px; animation-delay: 1s; }

@keyframes pulse-arc {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(8,145,178,0.2);
  border: 1px solid rgba(8,145,178,0.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #60CADF;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .highlight { color: var(--orange); }
.hero__title .accent    { color: #60CADF; }

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── 8. MISSION SECTION ───────────────────────────────────── */
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission__visual {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.mission__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}

.mission__overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(14,77,138,0.9);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--white);
}

.mission__overlay blockquote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.mission__overlay cite {
  display: block;
  font-size: 12px;
  color: #60CADF;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
}

.mission__pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pillar:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.pillar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.pillar__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── 9. PROGRAMMES ────────────────────────────────────────── */
.programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.prog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.prog-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  position: relative;
  overflow: hidden;
}

.prog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}

.prog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
}

.prog-card__body {
  padding: 24px;
}

.prog-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.prog-card__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.prog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.prog-card__link:hover { gap: 10px; }

/* ── 10. IMPACT COUNTER ───────────────────────────────────── */
.impact-bar {
  background: var(--blue);
  padding: 56px 0;
}

.impact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.impact-bar__item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.impact-bar__item:last-child { border-right: none; }

.impact-bar__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-bar__suffix { color: var(--orange); }

.impact-bar__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── 11. TESTIMONIALS ─────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testi-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 20px;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
}

.testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testi-card__role {
  font-size: 13px;
  color: var(--mist);
}

/* ── 12. CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a4a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: -80px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── 13. PARTNERS ─────────────────────────────────────────── */
.partners__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.partner-pill {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  transition: all var(--transition);
}
.partner-pill:hover {
  border-color: var(--teal);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

/* ── 14. TEAM ─────────────────────────────────────────────── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.team-card {
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); }

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  font-weight: 800;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card__bio {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── 15. VALUES GRID ──────────────────────────────────────── */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.value-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--cloud);
  border-left: 4px solid var(--teal);
  transition: all var(--transition);
}
.value-card:hover { background: var(--light-blue); border-left-color: var(--blue); }

.value-card__icon { font-size: 28px; margin-bottom: 12px; }
.value-card__title { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.value-card__text  { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ── 16. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a4a 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── 17. CONTACT FORM ─────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact__info-item:last-child { border-bottom: none; }

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact__info-label { font-size: 12px; font-weight: 600; color: var(--mist); text-transform: uppercase; letter-spacing: 1px; }
.contact__info-value { font-size: 15px; color: var(--navy); font-weight: 500; margin-top: 2px; }

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form__label .req { color: var(--orange); margin-left: 2px; }

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,77,138,0.12);
}

.form__textarea { resize: vertical; min-height: 140px; }

.form__submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  border: none;
}
.form__submit:hover { background: #0b3d6e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,77,138,0.3); }

/* ── 18. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue); transform: translateY(-2px); }

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* ── 19. GET INVOLVED PAGE ────────────────────────────────── */
.involve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.involve-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.involve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.involve-card__top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.involve-card__body { padding: 28px; }
.involve-card__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.involve-card__text  { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; }

/* ── 20. IMPACT PAGE ──────────────────────────────────────── */
.impact-stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.story-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }

.story-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.story-card__name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.story-card__state { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.story-card__quote { font-size: 14px; color: var(--slate); line-height: 1.7; font-style: italic; }

/* ── 21. SCROLL REVEAL ANIMATION ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 22. BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── 23. BREADCRUMB ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.8); }

/* ── 24. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .programmes__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__title { font-size: clamp(30px, 8vw, 44px); }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 24px; }

  .mission__grid       { grid-template-columns: 1fr; }
  .mission__visual     { height: 280px; }
  .programmes__grid    { grid-template-columns: 1fr; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .impact-bar__grid    { grid-template-columns: repeat(2, 1fr); }
  .values__grid        { grid-template-columns: 1fr; }
  .team__grid          { grid-template-columns: repeat(2, 1fr); }
  .contact__grid       { grid-template-columns: 1fr; }
  .form__row           { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .involve__grid       { grid-template-columns: 1fr; }
  .impact-stories__grid{ grid-template-columns: 1fr; }

  .impact-bar__num { font-size: 32px; }
}

@media (max-width: 480px) {
  .impact-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form { padding: 24px 16px; }
}
