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

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --primary: #2d7a4f;
  --primary-dark: #1f5a39;
  --primary-light: #e8f5ee;
  --accent: #f5a623;
  --accent-dark: #d48c10;

  /* Warm secondary tints (icon chips & variety) */
  --coral: #ec7a66;
  --coral-light: #fdede9;
  --sky: #3f9bd1;
  --sky-light: #e8f4fb;
  --lilac: #9277c4;
  --lilac-light: #f1ecf9;

  /* Text */
  --text: #33323b;
  --text-light: #6c6b78;

  /* Surfaces — warm off-whites */
  --white: #fff;
  --cream: #fbf7f1;
  --gray-light: #f8f4ed;
  --gray: #ebe5db;

  /* Soft, warm, layered shadows */
  --shadow: 0 4px 18px rgba(58,44,18,0.06);
  --shadow-lg: 0 16px 44px rgba(58,44,18,0.13);

  /* Softer radii */
  --radius: 18px;
  --radius-sm: 12px;

  --transition: all 0.3s ease;
  --max-width: 1200px;

  /* Type */
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .section-title, .stat-num, .rule-num, .stage-num {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-dark); border-color: var(--white); }
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ===== Section Layout ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--cream); }
.section-primary { background: var(--primary-light); }

.section-header { margin-bottom: 48px; }
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; line-height: 1.22; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; }

.tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.8rem; font-weight: 700; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 10px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.tag-accent { background: #fff4e0; color: var(--accent-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1rem; color: var(--primary-dark);
  text-decoration: none; line-height: 1.25;
}
.brand-icon {
  width: 54px; height: 54px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text span { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-light); }

.nav-menu { display: flex; list-style: none; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 14px; font-weight: 600; font-size: 0.92rem;
  color: var(--text); border-radius: 8px;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; border: none; background: none;
  font-family: inherit;
}
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }

.chevron { display: inline-block; transition: transform 0.3s; font-style: normal; font-size: 0.75rem; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 230px; list-style: none;
  padding: 8px 8px 8px; padding-top: 14px; z-index: 1001; border: 1px solid var(--gray);
}
/* Invisible bridge fills the visual gap so the mouse never leaves the hit area */
.dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
/* Triggered by JS (desktop) – also kept for keyboard/focus nav */
.nav-item.dd-open .dropdown-menu,
.nav-item:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 14px;
  color: var(--text); border-radius: 8px; font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--primary-light); color: var(--primary); }

.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a4a2e 0%, var(--primary) 55%, #3d9e68 100%);
  color: white; padding: 104px 0 88px; position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.34; z-index: 0; pointer-events: none;
}
/* Left-to-right scrim keeps text legible while the photo stays vibrant on the right */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(20,58,36,0.94) 0%, rgba(20,58,36,0.82) 36%,
    rgba(20,58,36,0.45) 68%, rgba(20,58,36,0.12) 100%);
}
/* Warm decorative glow */
.hero::after {
  content: ''; position: absolute; z-index: 1; pointer-events: none;
  width: 420px; height: 420px; right: -80px; top: -120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.22) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  z-index: 2; line-height: 0; pointer-events: none;
}
.hero-wave svg { width: 100%; height: 54px; display: block; }
.hero-tag {
  display: inline-block; background: rgba(255,255,255,0.18);
  color: white; padding: 6px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 22px;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn-primary, .hero-btn-outline { font-family: var(--font-head); }
.hero-btn-primary {
  background: var(--accent); color: white;
  padding: 16px 36px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; border: 2px solid var(--accent); transition: var(--transition);
}
.hero-btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}
.hero-btn-outline {
  background: transparent; color: white;
  padding: 16px 36px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; border: 2px solid rgba(255,255,255,0.55); transition: var(--transition);
}
.hero-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap;
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.8; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a4a2e, var(--primary));
  color: white; padding: 84px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.3; z-index: 0; pointer-events: none;
}
/* Even darkening scrim for centred text legibility over the photo */
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,58,36,0.78) 0%, rgba(20,58,36,0.62) 100%);
}
.page-hero::after {
  content: ''; position: absolute; z-index: 1; pointer-events: none;
  width: 360px; height: 360px; left: -90px; bottom: -150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 560px; margin: 0 auto; }

/* ===== PROGRAMME CARDS ===== */
.programmes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.programme-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); border: 1px solid var(--gray);
  transition: var(--transition); position: relative; overflow: hidden;
}
.programme-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--primary);
}
.programme-card:nth-child(2)::before { background: var(--accent); }
.programme-card:nth-child(3)::before { background: #e74c3c; }
.programme-card:nth-child(4)::before { background: #8e44ad; }
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.programme-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px; overflow: hidden;
}
.programme-icon img { width: 100%; height: 100%; object-fit: cover; }
.programme-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.age-badge {
  font-size: 0.78rem; color: var(--primary); font-weight: 700;
  background: var(--primary-light); padding: 3px 10px;
  border-radius: 50px; display: inline-block; margin-bottom: 14px;
}
.programme-card p { color: var(--text-light); font-size: 0.92rem; }

/* ===== STORY PHOTO ===== */
.story-photo {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  object-fit: cover; display: block;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  margin-bottom: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== FEATURE CARDS ===== */
.features-grid-2 {
  /* shows 2 columns */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--gray); transition: var(--transition);
}
.feature-card.feature-card-img { padding: 0; overflow: hidden; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.feature-card-body { padding: 28px 24px; }
.feature-icon { font-size: 2.8rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.93rem; }

/* ===== ICON CHIPS (SVG icon system) ===== */
.icon-chip {
  width: 58px; height: 58px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--primary-light); color: var(--primary);
  flex-shrink: 0; transition: var(--transition);
}
.icon-chip svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
.feature-card:hover .icon-chip { transform: scale(1.06) rotate(-3deg); }
.icon-chip.chip-accent { background: #fff2dc; color: var(--accent-dark); }
.icon-chip.chip-coral  { background: var(--coral-light);  color: var(--coral); }
.icon-chip.chip-sky    { background: var(--sky-light);    color: var(--sky); }
.icon-chip.chip-lilac  { background: var(--lilac-light);  color: var(--lilac); }

/* ===== DECORATIVE ACCENTS ===== */
.blob {
  position: absolute; border-radius: 50%; filter: blur(8px);
  pointer-events: none; z-index: 0;
}

/* ===== STAFF GRID ===== */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.staff-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px 24px; box-shadow: var(--shadow); border: 1px solid var(--gray);
  transition: var(--transition); text-align: center;
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.staff-photo-wrap {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 18px;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  flex-shrink: 0;
}
.staff-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.staff-card-body { padding: 0; }
.staff-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; color: white; font-size: 2rem;
  font-weight: 700; margin: 0 auto 18px;
}
.staff-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.staff-role { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; display: block; }
.staff-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; text-align: left; }

/* ===== ACCORDION ===== */
.accordion { border: 1px solid var(--gray); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 20px 24px;
  background: var(--white); border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--primary-dark);
  text-align: left; transition: var(--transition); font-family: inherit;
}
.accordion-header:hover, .accordion-header.active { background: var(--primary-light); }
.accordion-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--primary);
  transition: transform 0.3s; flex-shrink: 0;
}
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 4px 24px 24px; color: var(--text-light); line-height: 1.8; }
.accordion-body.show { display: block; }
.accordion-body p { margin-bottom: 12px; }
.accordion-body p:last-child { margin-bottom: 0; }

/* ===== TABS ===== */
.tab-list {
  display: flex; list-style: none; gap: 0;
  border-bottom: 2px solid var(--gray); overflow-x: auto; margin-bottom: 36px;
}
.tab-btn {
  padding: 13px 22px; border: none; background: none;
  font-weight: 600; font-size: 0.93rem; color: var(--text-light);
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; white-space: nowrap; transition: var(--transition);
  font-family: inherit;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1a4a2e, var(--primary));
  color: white; padding: 84px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; pointer-events: none;
  width: 460px; height: 460px; left: 50%; top: -60%;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.16) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--primary-light); border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 28px 0;
}
.quote-block p { font-size: 1.1rem; font-style: italic; color: var(--primary-dark); font-weight: 500; }

/* ===== VALUES LIST ===== */
.values-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.values-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--white);
  border-radius: 8px; border: 1px solid var(--gray); font-weight: 500; font-size: 0.93rem;
}
.values-list li::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

/* ===== NEWS CARDS ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card .news-tag {
  background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 14px; letter-spacing: 0.5px;
}
.news-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.news-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.news-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.88rem; color: var(--primary);
  margin-top: 16px;
}
.news-link:hover { color: var(--primary-dark); }

/* ===== ARTICLE CARDS (UNCRC) ===== */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.article-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 24px; border: 1px solid var(--gray); box-shadow: var(--shadow);
}
.article-num {
  display: inline-block; background: var(--primary); color: white;
  font-weight: 700; padding: 4px 14px; border-radius: 50px; font-size: 0.82rem; margin-bottom: 10px;
}
.article-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.article-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ===== BRITISH VALUES ===== */
.bv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.bv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--primary);
}
.bv-card:nth-child(2) { border-top-color: var(--accent); }
.bv-card:nth-child(3) { border-top-color: #e74c3c; }
.bv-card:nth-child(4) { border-top-color: #8e44ad; }
.bv-icon { font-size: 2.2rem; margin-bottom: 14px; }
.bv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.bv-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; }
.bv-card p:last-child { margin-bottom: 0; }

/* ===== GOLDEN RULES ===== */
.golden-rules { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; list-style: none; }
.golden-rules li {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 16px; text-align: center;
  box-shadow: var(--shadow); border: 2px solid var(--primary-light);
}
.rule-num { display: block; font-size: 2.2rem; color: var(--primary); font-weight: 800; margin-bottom: 8px; }
.rule-text { font-weight: 700; color: var(--primary-dark); font-size: 0.9rem; }

/* ===== SCHEDULE ===== */
.schedule-list { list-style: none; }
.schedule-item { display: flex; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--gray); align-items: baseline; }
.schedule-item:last-child { border-bottom: none; }
.schedule-time { font-weight: 700; color: var(--primary); min-width: 110px; font-size: 0.88rem; }
.schedule-desc { color: var(--text); font-size: 0.93rem; }

/* ===== SETTLING STAGES ===== */
.stages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.stage-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); text-align: center;
  border: 1px solid var(--gray);
}
.stage-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.stage-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.stage-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 50px; height: 50px; background: var(--primary-light);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  color: var(--primary);
}
.contact-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.contact-info-item h4 { font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-light); font-size: 0.95rem; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--white); border: none; cursor: pointer;
  font-weight: 700; color: var(--primary-dark); text-align: left;
  font-size: 0.95rem; transition: var(--transition); font-family: inherit;
}
.faq-question:hover, .faq-question.active { background: var(--primary-light); }
.faq-arrow { transition: transform 0.3s; font-style: normal; font-size: 0.9rem; }
.faq-question.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 4px 24px 20px; color: var(--text-light); line-height: 1.8; font-size: 0.93rem; }
.faq-answer.show { display: block; }

/* ===== FUNDING TABLE ===== */
.funding-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.funding-table th { background: var(--primary); color: white; padding: 14px 20px; text-align: left; font-weight: 700; font-size: 0.92rem; }
.funding-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray); font-size: 0.92rem; }
.funding-table tr:nth-child(even) td { background: var(--gray-light); }
.funding-table tr:last-child td { border-bottom: none; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white; box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 9999; padding: 20px 0; border-top: 3px solid var(--primary);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { flex: 1; font-size: 0.88rem; color: var(--text-light); min-width: 240px; }
.cookie-inner p a { color: var(--primary); font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px; border-radius: 50px; font-weight: 700;
  font-size: 0.88rem; cursor: pointer; border: 2px solid; transition: var(--transition);
  font-family: inherit;
}
.cookie-btn-accept { background: var(--primary); color: white; border-color: var(--primary); }
.cookie-btn-accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.cookie-btn-decline { background: transparent; color: var(--text); border-color: var(--gray); }
.cookie-btn-decline:hover { background: var(--gray-light); }

/* ===== FOOTER ===== */
.footer { background: #0f2e1c; color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { color: white; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.footer-contact-row svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,0.75); }
.footer-contact-row a:hover { color: white; }
.footer-col h4 { color: white; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.84rem; opacity: 0.65; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.84rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.info-box {
  background: var(--primary-light); border-radius: var(--radius);
  padding: 24px 28px; border: 1px solid rgba(45,122,79,0.2); margin: 24px 0;
}
.info-box h4 { color: var(--primary-dark); font-weight: 700; margin-bottom: 8px; }
.info-box p { color: var(--text-light); font-size: 0.93rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .hide-on-mobile { display: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; padding: 20px;
    overflow-y: auto; box-shadow: var(--shadow-lg); z-index: 999;
    align-items: stretch; gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; box-shadow: none; border: none;
    background: var(--gray-light); border-radius: 8px;
    margin: 6px 0; min-width: auto;
  }
  .nav-item.mob-open .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.75rem; }
  .hero { padding: 72px 0 60px; }
  .hero-stats { gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col-text { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-btn-primary, .hero-btn-outline { text-align: center; }
  .programmes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .bv-grid { grid-template-columns: 1fr; }
}
