/* ============================================================
   ALKEBULAN GLOBAL ACADEMY — Main Stylesheet
   Colour palette: Deep Forest Green, Warm Gold, Ivory, Charcoal
   ============================================================ */

:root {
  --green-deep:   #1a3d2b;
  --green-mid:    #2a5c40;
  --green-light:  #3d7a57;
  --gold:         #c9922a;
  --gold-light:   #e5b455;
  --gold-pale:    #f5e6c8;
  --ivory:        #faf8f2;
  --white:        #ffffff;
  --charcoal:     #1e1e1e;
  --grey-dark:    #3a3a3a;
  --grey-mid:     #6b6b6b;
  --grey-light:   #e8e8e4;
  --border:       #ddd8cc;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.16);

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

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--grey-dark);
  font-size: 1.05rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.8rem;
  border-radius: 3rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,146,42,.35);
}
.btn-primary:hover {
  background: #b07d21;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,146,42,.45);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26,61,43,.97);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-emblem { color: var(--gold-light); font-size: 1.3rem; }
.logo-accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: 2rem;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-mid) 45%, #1e4a35 100%);
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,146,42,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,146,42,.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 50H5z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,146,42,.25);
  border: 1px solid rgba(201,146,42,.4);
  color: var(--gold-light);
  padding: .45rem 1.2rem;
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-top: .2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--grey-dark);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.highlight i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.highlight div { display: flex; flex-direction: column; }
.highlight strong { font-size: .95rem; color: var(--green-deep); margin-bottom: .2rem; }
.highlight span { font-size: .85rem; color: var(--grey-mid); }

.about-visual { display: flex; flex-direction: column; gap: 1.5rem; }

.visual-card {
  background: var(--green-deep);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.visual-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: .6;
}
.visual-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}
.visual-card cite {
  display: block;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--gold-light);
  font-style: normal;
}

.about-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.tag {
  background: var(--gold-pale);
  color: var(--green-deep);
  padding: .45rem 1rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(201,146,42,.3);
}

/* ============================================================
   PROGRAMMES
   ============================================================ */
.programmes { background: var(--ivory); }

.programmes-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.programme-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.programme-foundation::before { background: linear-gradient(90deg, var(--green-mid), var(--green-light)); }
.programme-hybrid::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.programme-foundation:hover { border-color: var(--green-light); }
.programme-hybrid:hover { border-color: var(--gold); }

.prog-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem;
}
.programme-foundation .prog-badge { background: rgba(42,92,64,.1); color: var(--green-mid); }
.programme-hybrid .prog-badge { background: var(--gold-pale); color: var(--gold); }

.prog-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
}
.programme-foundation .prog-icon { color: var(--green-mid); }
.programme-hybrid .prog-icon { color: var(--gold); }

.programme-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: .6rem;
}

.prog-tagline {
  color: var(--grey-mid);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.prog-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.prog-features li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--grey-dark);
}
.programme-foundation .prog-features li i { color: var(--green-mid); flex-shrink: 0; margin-top: .15rem; }
.programme-hybrid .prog-features li i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

.prog-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--grey-mid);
}
.programme-foundation .prog-note { background: rgba(42,92,64,.06); }
.programme-hybrid .prog-note { background: var(--gold-pale); }
.programme-foundation .prog-note i { color: var(--green-mid); }
.programme-hybrid .prog-note i { color: var(--gold); }

.prog-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.prog-arrow span {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-mid);
  text-align: center;
  max-width: 70px;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.pillars-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(201,146,42,.1) 0%, transparent 60%);
  pointer-events: none;
}

.pillars .section-label {
  background: rgba(201,146,42,.2);
  color: var(--gold-light);
}

.pillars .section-title { color: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(201,146,42,.4);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: .85rem;
  color: rgba(201,146,42,.6);
  margin-bottom: .8rem;
  font-weight: 700;
}
.pillar-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .7rem;
}
.pillar-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ============================================================
   NANNY TRAINING
   ============================================================ */
.nanny { background: var(--white); }

.nanny-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.nanny-text p {
  color: var(--grey-dark);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.nanny-modules {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.module {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.module:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.module i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}
.module div { display: flex; flex-direction: column; }
.module strong { font-size: .95rem; color: var(--green-deep); margin-bottom: .2rem; }
.module span { font-size: .84rem; color: var(--grey-mid); }

.nanny-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2.5rem;
}

.nanny-badge-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition);
}
.nanny-badge-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.nanny-badge-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .8rem;
}
.nanny-badge-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.nanny-badge-card p {
  font-size: .85rem;
  color: var(--grey-mid);
}

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey { background: var(--ivory); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green-mid), var(--gold));
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-deep);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.timeline-dot span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex: 1;
  transition: all var(--transition);
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.timeline-content p {
  font-size: .92rem;
  color: var(--grey-dark);
}

/* ============================================================
   SURVEY SECTION
   ============================================================ */
.survey {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0f2a1b 100%);
  position: relative;
  overflow: hidden;
}

.survey-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(201,146,42,.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(201,146,42,.08) 0%, transparent 50%);
  pointer-events: none;
}

.survey .section-label {
  background: rgba(201,146,42,.2);
  color: var(--gold-light);
}
.survey .section-title { color: var(--white); }

.survey-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.survey-intro p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.survey-benefits {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.8rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.benefit i { color: var(--gold-light); font-size: .9rem; }

/* Google Form Embed Container */
.survey-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.15);
}

.gform-header {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--green-deep);
  color: var(--gold-light);
  padding: 1rem 1.5rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.gform-header i { font-size: 1rem; }

.gform-wrap {
  width: 100%;
  background: var(--white);
  /* Scrollable on small screens */
  overflow-x: auto;
}

.gform-wrap iframe {
  display: block;
  width: 100%;
  min-width: 320px;
  border: none;
  background: var(--white);
}

.gform-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 1.5rem;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  text-align: center;
}
.gform-fallback p {
  font-size: .82rem;
  color: var(--grey-mid);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: .8rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h5,
.footer-contact h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  margin-bottom: .7rem;
}
.footer-contact i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-card:nth-child(4),
  .pillar-card:nth-child(5) { /* still fine in 3-col */ }

  .about-grid { gap: 3rem; }
  .nanny-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .about-grid,
  .nanny-grid { grid-template-columns: 1fr; }

  .programmes-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .prog-arrow {
    flex-direction: row;
    justify-content: center;
    transform: rotate(90deg);
  }

  .survey-wrapper { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }

  .hamburger { display: flex; z-index: 1001; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: .5rem; padding: 1.2rem; }
  .stat-divider { width: 60px; height: 1px; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .survey-form-container { padding: 1.8rem 1.4rem; }
  .form-navigation { flex-direction: column; }
  .form-navigation .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
