@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
:root {
  --primary: #6BAE46;
  --primary-dark: #4E8A2E;
  --primary-deep: #3C7322;
  --secondary: #F2A24E;
  --secondary-dark: #E8923D;
  --accent: #81C784;
  --bg: #F5F9F5;
  --bg-alt: #FFFFFF;
  --dark: #3a3f36;
  --muted: #6f7a68;
  --border: #e3ecdd;
  --wa: #25D366;
  --shadow-sm: 0 2px 8px rgba(46,125,50,0.08);
  --shadow-md: 0 8px 24px rgba(46,125,50,0.12);
  --shadow-lg: 0 16px 40px rgba(46,125,50,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.2; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem;
  font-weight: 600; color: var(--secondary-dark); margin-bottom: 10px;
}
.section { padding: 76px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); color: var(--primary-deep); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px; font-weight: 600;
  font-family: 'Fredoka', sans-serif; font-size: 0.95rem; cursor: pointer;
  border: none; transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-primary { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-orange { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #fff; }
.btn-orange:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--primary-dark); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Header (white nav — matches homepage) */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 14px rgba(60,115,34,0.10);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.nav-logo img { height: 56px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--primary-dark); padding: 9px 14px; border-radius: 30px; transition: background 0.15s, color 0.15s; }
.nav-links a:hover { background: #eef6e9; color: var(--primary-deep); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.9rem; }
.hamburger { display: none; background: none; border: none; font-size: 1.7rem; color: var(--primary-dark); cursor: pointer; }

/* Hero */
.hero { position: relative; color: #fff; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,94,32,0.62) 0%, rgba(27,94,32,0.78) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 96px 24px 104px; max-width: 860px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hero .lead { font-size: clamp(1rem, 2.2vw, 1.25rem); font-weight: 500; margin-bottom: 6px; }
.hero .lead-sub { font-size: 1rem; opacity: 0.92; margin-bottom: 28px; }
.hero .btn { font-size: 1.05rem; padding: 15px 34px; }

/* Trust features */
.features { background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { text-align: center; padding: 26px 16px; border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .ico { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 50%; background: var(--primary-light, #E8F5E9); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.feature h3 { font-size: 1.02rem; color: var(--primary-deep); }

/* Stats */
.stats { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .num { font-family: 'Fredoka', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: #fff; }
.stat .lbl { font-size: 0.88rem; opacity: 0.9; margin-top: 4px; }

/* Programmes */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prog-card { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prog-card .pic { aspect-ratio: 4/3; overflow: hidden; }
.prog-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prog-card:hover .pic img { transform: scale(1.07); }
.prog-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prog-card .tag { align-self: flex-start; background: #E8F5E9; color: var(--primary-dark); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.prog-card h3 { color: var(--primary-deep); font-size: 1.22rem; margin-bottom: 4px; }
.prog-card .zh { color: var(--secondary-dark); font-weight: 600; font-size: 1rem; margin-bottom: 12px; }
.prog-card ul { list-style: none; margin-bottom: 16px; }
.prog-card li { font-size: 0.9rem; color: var(--muted); padding: 3px 0 3px 22px; position: relative; }
.prog-card li::before { content: '🌿'; position: absolute; left: 0; font-size: 0.8rem; }
.prog-card .btn { margin-top: auto; align-self: flex-start; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 8px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.95; }
.cta-band .btn { background: #fff; color: var(--secondary-dark); }
.cta-band .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Split about */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--primary-deep); margin-bottom: 18px; }
.split .point { display: flex; gap: 12px; margin-bottom: 16px; }
.split .point .dot { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #E8F5E9; color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.split .point p { color: var(--muted); font-size: 0.96rem; }

/* Testimonial */
.testimonial { background: var(--bg-alt); }
.quote-card { max-width: 760px; margin: 0 auto; text-align: center; position: relative; padding: 20px; }
.quote-card .mark { font-family: 'Fredoka', sans-serif; font-size: 5rem; color: var(--accent); line-height: 0.6; opacity: 0.5; }
.quote-card blockquote { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 500; color: var(--dark); margin: 6px 0 18px; font-family: 'Fredoka', sans-serif; }
.quote-card .stars { color: #F5A623; font-size: 1.2rem; margin-bottom: 10px; }
.quote-card .who { color: var(--primary-dark); font-weight: 600; }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.loc-card { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.loc-card .pic { aspect-ratio: 16/11; overflow: hidden; }
.loc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.loc-card:hover .pic img { transform: scale(1.06); }
/* Programme page: per-programme weekly calendar */
.pcal { display: grid; grid-template-columns: repeat(var(--cols, 5), minmax(120px, 168px)); justify-content: center; gap: 10px; }
.pcal-col { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px 10px; display: flex; flex-direction: column; gap: 9px; }
.pcal-col .d { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--primary-deep); text-align: center; padding-bottom: 6px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.pcal .sched-cls .loc { font-size: 0.66rem; font-weight: 700; color: var(--secondary-dark); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 3px; }
.psched-note { text-align: center; color: var(--muted); font-size: 0.84rem; max-width: 640px; margin: 22px auto 0; line-height: 1.6; }
@media (max-width: 640px) {
  .pcal { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 72%; justify-content: start; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .pcal-col { scroll-snap-align: start; }
}

/* Programme page: back link + other-programmes switcher */
.crumb-bar { padding-top: 22px; padding-bottom: 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--primary-dark); }
.back-link:hover { color: var(--primary-deep); }
.prog-switch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.prog-switch-card { background: var(--bg-alt); border: 1px solid var(--border); border-top: 5px solid var(--primary); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.2s, box-shadow 0.2s; }
.prog-switch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prog-switch-card.mini { border-top-color: #F5A962; }
.prog-switch-card.little { border-top-color: #66BB6A; }
.prog-switch-card.forest { border-top-color: #2E7D32; }
.prog-switch-card.explorers { border-top-color: #FFCA64; }
.prog-switch-card .se { font-size: 2.4rem; line-height: 1; margin-bottom: 10px; }
.prog-switch-card .sn { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--dark); line-height: 1.2; }
.prog-switch-card .ss { font-size: 0.84rem; color: var(--muted); margin: 2px 0 10px; }
.prog-switch-card .sa { font-size: 0.8rem; font-weight: 700; color: var(--primary-dark); background: #E8F5E9; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.prog-switch-card .sl { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--secondary-dark); margin-top: auto; }
@media (max-width: 780px) { .prog-switch-grid { grid-template-columns: 1fr; max-width: 360px; } }

/* Trial / booking box (programme pages) */
.trial-box { display: grid; grid-template-columns: 1.45fr 1fr; gap: 0; background: var(--bg-alt); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.trial-main { padding: 34px 32px; }
.trial-main h2 { color: var(--primary-deep); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.trial-main > p { color: var(--muted); margin-bottom: 16px; }
.trial-points { list-style: none; margin: 0 0 22px; }
.trial-points li { padding: 6px 0 6px 26px; position: relative; color: var(--dark); font-size: 0.94rem; }
.trial-points li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.trial-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.venue-note { background: #FFF8EC; border: 1px solid #F6E2C0; border-radius: var(--radius-sm); padding: 14px 16px; margin: 0 0 18px; }
.venue-note strong { display: block; color: var(--secondary-dark); font-family: 'Fredoka', sans-serif; font-size: 0.9rem; margin-bottom: 6px; }
.venue-note ul { list-style: none; margin: 0; }
.venue-note li { position: relative; padding-left: 16px; color: var(--dark); font-size: 0.86rem; line-height: 1.5; margin-bottom: 5px; }
.venue-note li:last-child { margin-bottom: 0; }
.venue-note li::before { content: '•'; position: absolute; left: 3px; color: var(--secondary-dark); }
.trial-price { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%); color: #fff; padding: 34px 30px; display: flex; flex-direction: column; justify-content: center; }
.trial-price .tp-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.trial-price .tp-row span { font-size: 0.98rem; opacity: 0.92; }
.trial-price .tp-row strong { font-family: 'Fredoka', sans-serif; font-size: 1.9rem; }
.trial-price .tp-note { font-size: 0.78rem; opacity: 0.82; margin-top: 16px; line-height: 1.55; }
.trial-price.enquire { justify-content: center; }
.trial-price.enquire .tp-lead { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; margin-bottom: 10px; }
.trial-price.enquire p { font-size: 0.92rem; opacity: 0.92; line-height: 1.6; margin-bottom: 20px; }
@media (max-width: 760px) { .trial-box { grid-template-columns: 1fr; } .trial-price { padding: 28px 30px; } }

.media-soon { aspect-ratio: 4/3; border-radius: var(--radius); box-shadow: var(--shadow-md); background: linear-gradient(135deg, #FFF7E0 0%, #FCEBB8 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--secondary-dark); text-align: center; padding: 20px; }
.media-soon .ps-emoji { font-size: 3rem; line-height: 1; }
.media-soon .ps-text { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1rem; opacity: 0.9; }

.pic-soon { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #EAF7E8 0%, #D6EFD2 100%); color: var(--primary-dark); text-align: center; padding: 16px; }
.pic-soon .ps-emoji { font-size: 2.4rem; line-height: 1; }
.pic-soon .ps-text { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.95rem; opacity: 0.9; }
.loc-card .body { padding: 20px; }
.loc-card h3 { color: var(--primary-deep); font-size: 1.15rem; }
.loc-card p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

/* Contact / footer */
.footer { background: linear-gradient(135deg, var(--primary-deep) 0%, #143d16 100%); color: #fff; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer img.flogo { height: 56px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer p, .footer a { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.9; }
.footer a:hover { color: #fff; }
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer ul { list-style: none; }
.footer .copyright { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* Floating WhatsApp */
.fab-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: #fff; font-size: 1.7rem;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Mobile sticky CTA bar (shown on phones, hidden on desktop) */
.mbar { display: none; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 940px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-grid, .loc-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split .media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 82px; left: 0; right: 0;
    background: #fff; padding: 18px 24px; gap: 16px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border);
  }
  .nav-cta .btn-text { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* Always-visible Book a Trial + WhatsApp bar on mobile */
  .mbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 96; background: #fff; border-top: 1px solid var(--border); padding: 10px 12px; gap: 10px; box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
  .mbar .btn { flex: 1; padding: 12px; font-size: 0.92rem; }
  .fab-wa { bottom: 82px; }
  body { padding-bottom: 64px; }
}
@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .features-grid, .prog-grid, .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ INNER PAGES ============ */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%); color: #fff; text-align: center; padding: 70px 24px 60px; position: relative; }
.page-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { opacity: 0.92; font-size: 1.05rem; max-width: 680px; margin: 0 auto; }
.page-hero .eyebrow { color: #C8E6C9; }

/* Experience / trust band */
.exp-band { background: var(--bg-alt); }
.exp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.exp-grid .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.exp-grid h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--primary-deep); margin-bottom: 16px; }
.exp-grid > .content > p { color: var(--muted); margin-bottom: 14px; }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefits-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .benefits-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .benefits-grid.cols-4 { grid-template-columns: 1fr; } }
.benefit-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; transition: transform 0.2s, box-shadow 0.2s; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card .bico { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { color: var(--primary-deep); font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: 0.92rem; }

/* Programme comparison table */
.prog-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.prog-table { width: 100%; border-collapse: collapse; background: var(--bg-alt); min-width: 640px; }
.prog-table th, .prog-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.prog-table thead th { background: var(--primary-dark); color: #fff; font-family: 'Fredoka',sans-serif; font-size: 0.9rem; }
.prog-table tbody tr:hover { background: #F1F8F1; }
.prog-table td .pname { font-weight: 700; color: var(--primary-deep); font-family: 'Fredoka',sans-serif; }
.prog-table .badge-zh { display: inline-block; background: #FFF1E2; color: var(--secondary-dark); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; }

/* Programme detail blocks */
.prog-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; scroll-margin-top: 90px; }
.prog-detail:nth-child(even) .media { order: 2; }
.prog-detail .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.prog-detail .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 14px; }
.prog-detail .chip { background: #E8F5E9; color: var(--primary-dark); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.prog-detail .chip.orange { background: #FFF1E2; color: var(--secondary-dark); }
.prog-detail h3 { font-size: 1.5rem; color: var(--primary-deep); }
.prog-detail > .content > p { color: var(--muted); margin-bottom: 12px; font-size: 0.97rem; }
.prog-detail ul.themed { list-style: none; margin: 4px 0 16px; }
.prog-detail ul.themed li { padding: 4px 0 4px 24px; position: relative; color: var(--dark); font-size: 0.93rem; }
.prog-detail ul.themed li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-cat { font-family:'Fredoka',sans-serif; color: var(--primary-deep); margin: 30px 0 12px; font-size: 1.15rem; }
details.faq { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
details.faq summary { padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; color: var(--primary); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.2s; }
details.faq[open] summary::after { content: '−'; }
details.faq .ans { padding: 0 20px 18px; color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* Enquiry / book-a-trial */
.enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.enq-info h2 { color: var(--primary-deep); font-size: clamp(1.6rem,3.2vw,2.1rem); margin-bottom: 14px; }
.enq-info p { color: var(--muted); margin-bottom: 14px; }
.enq-info .perk { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.enq-info .perk .d { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #E8F5E9; color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.enq-card { background: var(--bg-alt); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 28px; }
.enq-card h3 { color: var(--primary-deep); margin-bottom: 4px; }
.enq-card .hint { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }
.frow { margin-bottom: 13px; }
.frow.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.frow label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; }
.frow label .req { color: var(--secondary-dark); }
.frow input, .frow select, .frow textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 9px; font-family: inherit; font-size: 0.92rem; }
.phone-row { display: flex; gap: 8px; }
.phone-row select { width: auto; flex: 0 0 auto; max-width: 118px; padding: 11px 6px 11px 10px; }
.phone-row input { flex: 1; min-width: 0; }
.frow input:focus, .frow select:focus, .frow textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(76,175,80,0.15); }
.dual-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.dual-btns .btn { width: 100%; justify-content: center; }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.enq-msg { padding: 11px 14px; border-radius: 8px; font-size: 0.88rem; margin-bottom: 14px; display: none; }
.enq-msg.err { background: #FFEBEE; color: #C62828; display: block; }
.enq-msg.ok { background: #E8F5E9; color: var(--primary-deep); display: block; }

/* Address cards */
.addr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.addr-card { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.addr-card .pic { aspect-ratio: 16/10; overflow: hidden; }
.addr-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.addr-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.addr-card h3 { color: var(--primary-deep); font-size: 1.18rem; margin-bottom: 8px; }
.addr-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.addr-card .btn { margin-top: auto; align-self: flex-start; margin-top: 16px; }

@media (max-width: 940px) {
  .exp-grid, .prog-detail, .enq-grid { grid-template-columns: 1fr; gap: 28px; }
  .prog-detail:nth-child(even) .media { order: -1; }
  .exp-grid .media { order: -1; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .addr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .benefits-grid, .addr-grid { grid-template-columns: 1fr; }
  .dual-btns { grid-template-columns: 1fr; }
  .frow.two { grid-template-columns: 1fr; }
}

/* ===== Friendly programme snapshot cards (replaces formal table) ===== */
.snap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.snap-card { background: var(--bg-alt); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.snap-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.snap-head { display: flex; align-items: center; gap: 12px; padding: 20px 20px 16px; }
.snap-emoji { font-size: 2.2rem; width: 54px; height: 54px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; box-shadow: 0 3px 10px rgba(0,0,0,0.06); }
.snap-head h3 { font-size: 1.12rem; color: var(--primary-deep); line-height: 1.15; }
.snap-sib { font-size: 0.78rem; font-weight: 600; color: var(--secondary-dark); }
.snap-body { padding: 0 20px 22px; flex: 1; display: flex; flex-direction: column; }
.snap-age { display: inline-block; align-self: flex-start; background: #fff; border: 1.5px solid var(--border); color: var(--primary-dark); font-weight: 700; font-size: 0.86rem; padding: 6px 14px; border-radius: 30px; margin-bottom: 14px; }
.snap-age small { font-weight: 500; color: var(--muted); }
.snap-fact { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-top: 1px dashed var(--border); }
.snap-fact .fi { font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.snap-fact div { font-size: 0.86rem; color: var(--dark); line-height: 1.35; }
.snap-fact b { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); font-weight: 700; margin-bottom: 1px; }
.snap-body .btn { margin-top: 16px; align-self: stretch; justify-content: center; }

/* soft, friendly colour per programme */
.snap-card.mini .snap-head { background: linear-gradient(135deg, #FFF0DC 0%, #FFE3C2 100%); }
.snap-card.little .snap-head { background: linear-gradient(135deg, #EAF7E8 0%, #D6EFD2 100%); }
.snap-card.forest .snap-head { background: linear-gradient(135deg, #DCF1E4 0%, #BFE6CF 100%); }
.snap-card.explorers .snap-head { background: linear-gradient(135deg, #FFF7E0 0%, #FCEBB8 100%); }

@media (max-width: 940px) { .snap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .snap-grid { grid-template-columns: 1fr; } }

/* Programmes infographic (Canva) */
.infographic-wrap { max-width: 560px; margin: 0 auto; }
.infographic-wrap img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-md); display: block; }

/* ===== Consolidated programmes banner (hand-built, crisp text) ===== */
.po-band {
  background: linear-gradient(135deg, #EAF7E8 0%, #F4FBF3 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.po-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.po-lane {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(46,125,50,0.07);
  border-top: 6px solid var(--primary);
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.po-lane:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.po-lane.mini { border-top-color: #F5A962; }
.po-lane.little { border-top-color: #66BB6A; }
.po-lane.forest { border-top-color: #2E7D32; }
.po-lane.explorers { border-top-color: #FFCA64; }
.po-emoji {
  font-size: 2.6rem; width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.po-lane.mini .po-emoji { background: #FFF0DC; }
.po-lane.little .po-emoji { background: #E8F5E9; }
.po-lane.forest .po-emoji { background: #DCF1E4; }
.po-lane.explorers .po-emoji { background: #FFF7E0; }
.po-age {
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--primary-deep); background: #F1F8F1; padding: 6px 16px; border-radius: 30px; margin-bottom: 12px;
}
.po-name { font-size: 1.25rem; color: var(--dark); line-height: 1.15; }
.po-sib { color: var(--secondary-dark); font-weight: 600; font-size: 0.92rem; margin-bottom: 14px; }
.po-sib.po-sib-name { color: var(--dark); font-family: 'Fredoka', sans-serif; font-size: 1.25rem; font-weight: 600; line-height: 1.15; }
.po-meta { list-style: none; margin: 0; padding: 0; width: 100%; }
.po-meta li {
  font-size: 0.92rem; color: var(--dark); padding: 9px 6px;
  border-top: 1px solid #EEF5EE; line-height: 1.35;
}
.po-meta li:first-child { border-top: none; }

@media (max-width: 940px) {
  .po-track { grid-template-columns: 1fr 1fr; }
  .po-band { padding: 22px; }
}
@media (max-width: 540px) {
  .po-track { grid-template-columns: 1fr; }
  .po-emoji { width: 64px; height: 64px; font-size: 2.2rem; }
}

/* (Primary button is orange globally; nav sits on a white bar.) */

/* Banner image under a section head */
.class-banner { margin-bottom: 28px; }
.class-banner img { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-md); }
@media (max-width: 560px) { .class-banner img { height: 210px; } }

/* Anchor scroll offset so the sticky nav doesn't cover the target */
.prog-detail, .addr-card { scroll-margin-top: 100px; }

/* Clickable snapshot cards */
.po-lane { cursor: pointer; }
.po-link { margin-top: 14px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--secondary-dark); opacity: 0; transform: translateY(4px); transition: opacity 0.2s, transform 0.2s; }
.po-lane:hover .po-link { opacity: 1; transform: none; }

/* ===== Testimonial carousel (side-scroll) ===== */
.tcar { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--primary) #e3ecdd; }
.tcar::-webkit-scrollbar { height: 8px; }
.tcar::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 20px; }
.tcar::-webkit-scrollbar-track { background: #e3ecdd; border-radius: 20px; }
.tcard { scroll-snap-align: start; flex: 0 0 86%; max-width: 380px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 26px; display: flex; flex-direction: column; }
@media (min-width: 760px) { .tcard { flex-basis: 360px; } }
.tcard .stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 10px; }
.tcard blockquote { font-size: 1rem; line-height: 1.65; color: var(--dark); font-weight: 500; margin-bottom: 14px; }
.tcard .who { margin-top: auto; font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--primary-dark); }
.tcard .who small { display: block; color: var(--muted); font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.8rem; }
.tcar-hint { text-align: center; color: var(--muted); font-size: 0.84rem; margin-top: 6px; }

/* ===== Class schedule ===== */
.sched-loc { margin-bottom: 32px; }
.sched-loc .sched-h { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.sched-loc .sched-h h3 { color: var(--primary-deep); font-size: 1.25rem; }
.sched-loc .sched-h span { color: var(--muted); font-size: 0.9rem; }
.sched-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.sched-day { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.sched-day .d { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--primary-deep); text-align: center; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.sched-cls { border-radius: 10px; padding: 9px 10px 9px 11px; border-left: 5px solid transparent; }
.sched-cls .n { font-weight: 700; color: var(--dark); font-size: 0.84rem; line-height: 1.25; }
.sched-cls .t { font-weight: 700; color: var(--primary-deep); font-size: 0.82rem; margin-top: 2px; }
.sched-cls .m { color: var(--muted); font-size: 0.72rem; margin-top: 1px; }
.sched-cls.mini { background: #FFF0DC; border-left-color: #F5A962; }
.sched-cls.little { background: #EAF7E8; border-left-color: #66BB6A; }
.sched-cls.mini-mandarin { background: #FCE3F1; border-left-color: #EC6FA6; }
.sched-cls.little-mandarin { background: #ECE3F8; border-left-color: #9B6FD4; }
.sched-cls.forest { background: #CFEBDA; border-left-color: #2E7D32; }
.sched-cls.explorers { background: #DDEFF7; border-left-color: #4FA3D1; }
.sched-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 6px; }
.sched-branch { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 18px; text-align: center; }
.sched-branch h4 { color: var(--primary-deep); font-size: 1.05rem; }
.sched-branch .day { color: var(--secondary-dark); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin: 4px 0 12px; }
.sched-legend { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin: 6px 0 26px; font-size: 0.8rem; color: var(--muted); }
.sched-legend span { display: inline-flex; align-items: center; gap: 6px; }
.sched-legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.sched-note { color: var(--muted); font-size: 0.86rem; text-align: center; margin-top: 18px; line-height: 1.6; }
@media (max-width: 880px) {
  .sched-grid { grid-auto-flow: column; grid-auto-columns: 76%; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .sched-day { scroll-snap-align: start; }
}
@media (max-width: 620px) { .sched-branches { grid-template-columns: 1fr; } }
