/* =============================================
   BLOOMING BUDZZ — MAIN STYLESHEET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --pink:   #b11ca2;
  --blue:   #3678bd;
  --coral:  #ea479b;
  --red:    #d42a1e;
  --dark:   #1a1a2e;
  --body:   #555;
  --light-bg: #fdf4fb;
  --radius: 24px;
  --shadow: 0 8px 32px rgba(177,28,162,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.pink   { color: var(--coral); }
.blue   { color: var(--blue); }
.purple { color: var(--pink); }

.gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ── */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .5s ease, transform .5s ease;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.js-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(177,28,162,.08);
  color: var(--pink);
  border: 1px solid rgba(177,28,162,.18);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--body);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 10px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(177,28,162,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(177,28,162,.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,.1);
  transition: border-color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--coral); transform: translateY(-2px); }

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fce4f6 0%, #f0e8ff 50%, #e8f0ff 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.loader-sweeper-wrap {
  white-space: nowrap;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  line-height: 1.3;
  /* allow wrap on very small screens */
  white-space: normal;
  text-align: center;
}

@media (min-width: 480px) {
  .loader-sweeper-wrap { white-space: nowrap; }
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-nav{
  height: 70px;
  width: auto;
}


.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-enroll {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: #fff !important;
  font-weight: 800;
  font-size: .88rem;
  padding: 11px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(177,28,162,.28);
}
.btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(177,28,162,.38); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: #fae6f8;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* ── Clouds ── */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-cloud {
  position: absolute;
  fill: rgba(255,255,255,.55);
}
.hc-1 { width: 380px; top: 4%;  left: -90px; }
.hc-2 { width: 240px; top: 58%; left: 4%;    opacity: .5; }
.hc-3 { width: 320px; top: 2%;  right: -70px; }
.hc-4 { width: 180px; bottom: 18%; right: 4%; opacity: .45; }

/* ── Wave bottom ── */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(177,28,162,.15);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink);
  padding: 6px 16px;
  margin-bottom: 22px;
}
.badge-icon { font-size: .9rem; }

.hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-desc {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(177,28,162,.08);
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--body);
  margin-top: 4px;
}

/* Hero right */
.hero-right { position: relative; display: flex; justify-content: center; }

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px 32px 80px 32px;
  box-shadow: 0 20px 60px rgba(177,28,162,.18);
}

.hero-badge-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  white-space: nowrap;
}
.hero-badge-float small { display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #999; }
.hero-badge-float strong { display: block; font-size: .88rem; font-weight: 800; color: var(--dark); }

.today-card { top: 28px; right: -20px; }
.today-icon { font-size: 1.4rem; }
.parents-say-card { bottom: 40px; right: -16px; }
.heart-icon { font-size: 1.3rem; color: var(--coral); }

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  padding: 80px 0;
  background: #fff;
}

/* Centred header */
.about-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.about-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.about-header .section-sub { max-width: 100%; margin-top: 0; text-align: center; }

/* 3-col layout */
.about-body {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

/* Feature columns */
.about-feats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.05);
  transition: background .22s, transform .22s, box-shadow .22s;
  cursor: default;
}
.about-feat-item:hover {
  background: #fff;
  box-shadow: 0 6px 22px rgba(177,28,162,.08);
  transform: translateY(-2px);
}
.about-feat-item:hover .feat-icon { transform: scale(1.08); }
.afi-text h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
  margin-bottom: 5px;
}
.afi-text p {
  font-size: .81rem;
  color: var(--body);
  line-height: 1.6;
}

/* Centre image column */
.about-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.about-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(177,28,162,.14);
  width: 100%;
}
.about-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.about-img-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: 0 8px 28px rgba(177,28,162,.14);
  margin-top: -1px;
  position: relative;
  z-index: 2;
  transform: translateY(-16px);
  width: calc(100% - 32px);
}
.aic-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ea479b, #b11ca2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(177,28,162,.3);
}

/* Shared icon square */
.feat-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: transform .2s ease-out;
}
.feat-icon svg { display: block; }

/* =============================================
   WHY BLOOMING BUDZZ — 6-CARD GRID
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px 24px;
  border: 1.5px solid color-mix(in srgb, var(--wc) 18%, transparent);
  box-shadow:
    0 4px 22px rgba(0,0,0,.06),
    inset 0 4px 0 var(--wc);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 44px color-mix(in srgb, var(--wc) 18%, transparent),
    inset 0 4px 0 var(--wc);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
  flex-shrink: 0;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.why-list li {
  font-size: .82rem;
  color: #555;
  line-height: 1.62;
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wc);
  opacity: .65;
  flex-shrink: 0;
}

/* Closing tagline strip */
.why-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 26px 32px;
  background: linear-gradient(135deg, rgba(177,28,162,.05) 0%, rgba(234,71,155,.05) 100%);
  border: 1.5px dashed rgba(177,28,162,.22);
  border-radius: 20px;
  margin-bottom: 32px;
}

.why-tagline-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.why-tagline p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.why-tagline strong {
  color: var(--pink);
  font-weight: 800;
}

/* CTA row */
.about-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* =============================================
   PROGRAMS
   ============================================= */
.programs-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #fdf4fb 100%);
}

.programs-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}
.programs-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}
.programs-header .section-sub {
  max-width: 560px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: start;
}

.prog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  /* inset shadow draws the top accent bar INSIDE the element so border-radius is respected */
  box-shadow: 0 6px 28px rgba(177,28,162,.10),
              inset 0 4px 0 var(--card-accent, #b11ca2);
  border: 1.5px solid var(--card-border, rgba(177,28,162,.22));
  transition: transform .28s, box-shadow .28s;
  display: flex;
  flex-direction: column;
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(177,28,162,.18),
              inset 0 4px 0 var(--card-accent, #b11ca2);
}

/* Card header — icon + title area */
.prog-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1.5px solid var(--card-border, rgba(177,28,162,.18));
}
.prog-header-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.prog-header-text {
  flex: 1;
  min-width: 0;
}
.prog-header-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  margin-top: 6px;
}
.prog-header-text .prog-tagline {
  font-size: .82rem;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 0;
}

.prog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prog-age-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.prog-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.prog-tagline {
  font-size: .85rem;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 18px;
}

.prog-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.prog-features li {
  font-size: .82rem;
  font-weight: 700;
  color: #444;
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1.4;
}
.prog-features li span {
  font-size: .6rem;
  flex-shrink: 0;
}

.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid;
  color: var(--c);
  transition: background .22s ease-out, color .22s ease-out, border-color .22s ease-out, transform .22s ease-out;
  width: fit-content;
}
.prog-cta:hover {
  background: var(--c);
  border-color: var(--c);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Card actions row (CTA + Show More) ── */
.prog-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

/* ── Show More button ── */
.prog-show-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  color: var(--accent);
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .22s;
  white-space: nowrap;
}
.prog-show-more:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  transform: translateY(-1px);
}
.show-more-icon {
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.prog-show-more[aria-expanded="true"] .show-more-icon {
  transform: rotate(180deg);
}

/* ── Expandable details panel ── */
.prog-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
}
.prog-details.open {
  max-height: 600px;
  opacity: 1;
}

.prog-details-inner {
  border-top: 1px dashed rgba(177,28,162,.14);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prog-detail-section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.prog-detail-section ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prog-detail-section ul li {
  font-size: .78rem;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

.prog-detail-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(177,28,162,.05);
  border: 1px solid rgba(177,28,162,.12);
  border-radius: 12px;
  padding: 10px 14px;
  gap: 8px;
  flex-wrap: wrap;
}
.fee-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pink);
}
.fee-value {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
}

/* ── Phonics level cards ── */
.prog-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.prog-level-card {
  border: 1.5px solid color-mix(in srgb, var(--lc) 22%, transparent);
  background: color-mix(in srgb, var(--lc) 5%, #fff);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prog-level-badge {
  display: inline-flex;
  align-items: center;
  background: var(--lc);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 2px;
}
.prog-level-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.prog-level-age {
  font-size: .7rem;
  font-weight: 700;
  color: var(--lc);
}
.prog-level-card p {
  font-size: .75rem;
  color: var(--body);
  line-height: 1.45;
}
.prog-level-card ul {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prog-level-card ul li {
  font-size: .72rem;
  font-weight: 600;
  color: #555;
  line-height: 1.35;
}

/* ── Activity pills ── */
.prog-activity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.prog-pill {
  display: inline-flex;
  align-items: center;
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--pc) 10%, transparent);
  color: var(--pc);
  border: 1px solid color-mix(in srgb, var(--pc) 22%, transparent);
  white-space: nowrap;
}

/* ── Wide card: spans full row ── */
.prog-card--wide {
  grid-column: 1 / -1;
}
.prog-card--wide .prog-details.open {
  max-height: 900px;
}

/* =============================================
   FACULTY
   ============================================= */
.faculty-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf4fb 0%, #f8f0ff 100%);
  position: relative;
  overflow: hidden;
}

.faculty-bg-blob {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,28,162,.07) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}

.faculty-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.faculty-header-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}
.faculty-header-right {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  padding-bottom: 6px;
}

/* ── Featured educator card (Founder / Principal) ── */
.fc-featured-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(177,28,162,.10),
              inset 0 4px 0 var(--fc-accent, #b11ca2);
  border: 1.5px solid color-mix(in srgb, var(--fc-accent, #b11ca2) 18%, transparent);
  margin-bottom: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fc-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(177,28,162,.16),
              inset 0 4px 0 var(--fc-accent, #b11ca2);
}

.fc-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.fc-photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-photo-initials {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.72);
  letter-spacing: -2px;
  user-select: none;
  position: relative;
  z-index: 1;
}

.fc-content {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 7px;
}

.fc-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
}

.fc-cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fc-cred {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(177,28,162,.07);
  color: var(--pink);
  border: 1px solid rgba(177,28,162,.16);
}

.fc-bio {
  font-size: .87rem;
  color: var(--body);
  line-height: 1.74;
  margin: 0;
}

.fc-quote {
  border-left: 3px solid var(--fc-accent, #b11ca2);
  padding-left: 16px;
  margin: 0;
  font-style: italic;
  font-size: .86rem;
  color: var(--dark);
  line-height: 1.65;
}

/* ── 3-educator card grid ── */
.fc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fc-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07),
              inset 0 4px 0 var(--fc-accent, #ea479b);
  border: 1.5px solid color-mix(in srgb, var(--fc-accent, #ea479b) 16%, transparent);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--fc-accent) 18%, transparent),
              inset 0 4px 0 var(--fc-accent);
}

.fc-card-photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fc-card-photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-card-initials {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.72);
  user-select: none;
  position: relative;
  z-index: 1;
}

.fc-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fc-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 5px;
}

.fc-card-bio {
  font-size: .82rem;
  color: var(--body);
  line-height: 1.68;
  flex: 1;
  margin: 0;
}

.fc-card-quote {
  border-left: 3px solid var(--fc-accent);
  padding-left: 12px;
  margin: 0;
  font-style: italic;
  font-size: .78rem;
  color: var(--dark);
  line-height: 1.55;
}

/* =============================================
   ACTIVITIES
   ============================================= */
.activities-section {
  padding: 80px 0;
  background: #fff;
}
.activities-section > .section-container > .section-badge { margin-bottom: 12px; }
.activities-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1.55fr .9fr .9fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  margin-top: 40px;
}

.act-cell { border-radius: 22px; overflow: hidden; }
.act-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.act-cell:hover img { transform: scale(1.04); }

/* Row layout matches screenshot */
.act-img-large {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 360px;
}
.act-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  min-height: 160px;
  position: relative;
}
.act-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  position: absolute;
  top: 18px; left: 18px;
}
.act-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}
.act-card p { font-size: .82rem; font-weight: 700; opacity: .85; margin-top: 4px; }

.act-img-mid {
  grid-column: 2;
  grid-row: 2;
  height: 180px;
}
.act-pink-card { min-height: 180px; }
.act-pink-card h3 { font-size: 2rem; }

.act-img-small {
  height: 180px;
  grid-row: 3;
}
.act-img-small:first-of-type, .act-cell.act-img-small:nth-of-type(4) {
  grid-column: 1;
}

/* Explicit grid placement */
.act-cell:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.act-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.act-cell:nth-child(3) { grid-column: 3; grid-row: 1; }
.act-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
.act-cell:nth-child(5) { grid-column: 3; grid-row: 2; }
.act-cell:nth-child(6) { grid-column: 1; grid-row: 3; }
.act-cell:nth-child(7) { grid-column: 2; grid-row: 3; }
.act-cell:nth-child(8) { grid-column: 3; grid-row: 3; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.gallery-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.testi-bg-blob-left {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,120,189,.08) 0%, transparent 70%);
  left: -80px; top: 40%;
  pointer-events: none;
}
.testi-bg-blob-right {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,71,155,.08) 0%, transparent 70%);
  right: -60px; top: 20%;
  pointer-events: none;
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(177,28,162,.08);
  color: var(--pink);
  border: 1px solid rgba(177,28,162,.18);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.testimonials-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
}

.testi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  border-radius: 22px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease-out, box-shadow .25s ease-out;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

/* No visible borders — depth via shadow only */
.tc-pink   { background: #fff5fa; }
.tc-purple { background: #f5eeff; }
.tc-peach  { background: #fff2ee; }

/* Featured card: lifted + colored top accent */
.testi-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(177,28,162,.14);
}
.testi-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  border-radius: 22px 22px 0 0;
}
.testi-card.featured:hover {
  transform: translateY(-11px);
  box-shadow: 0 24px 56px rgba(177,28,162,.18);
}

/* Stars — warm amber-gold, not red */
.testi-stars {
  color: #e8a838;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Quote mark — elegant SVG watermark */
.testi-quote-icon {
  position: absolute;
  top: 18px; right: 22px;
  width: 52px; height: 40px;
  opacity: .07;
  color: #1a1a2e;
  pointer-events: none;
}
.testi-quote-icon svg { width: 100%; height: 100%; }

.testi-card > p {
  font-size: .93rem;
  line-height: 1.82;
  color: #444;
  margin-bottom: 24px;
  position: relative;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 0 0 5px rgba(177,28,162,.12);
}
.testi-author strong { display: block; font-size: .9rem; font-weight: 800; color: var(--dark); }
.testi-author small  { font-size: .75rem; color: #888; margin-top: 2px; }

/* =============================================
   PARENT VIDEO STORIES
   ============================================= */
.pv-section {
  padding: 88px 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1454 55%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}
/* Decorative blobs */
.pv-section::before,
.pv-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pv-section::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(177,28,162,.18) 0%, transparent 70%);
  top: -160px; left: -120px;
}
.pv-section::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(54,120,189,.15) 0%, transparent 70%);
  bottom: -120px; right: -80px;
}

.pv-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.pv-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.pv-header .section-sub {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
}
.pv-header .section-badge {
  background: rgba(255,255,255,.1);
  color: #f0a8d8;
  border-color: rgba(255,255,255,.15);
}

/* 3-column grid */
.pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Card */
.pv-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s;
}
.pv-card--featured {
  transform: translateY(-12px);
}
.pv-card--featured .pv-video-wrap {
  box-shadow: 0 24px 60px rgba(177,28,162,.45);
}

/* Video wrapper */
.pv-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0d0d1a;
  aspect-ratio: 9 / 16;
  max-height: 440px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  cursor: pointer;
}
.pv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Glow behind video */
.pv-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 0 0 2px var(--glow, #b11ca2);
  pointer-events: none;
  opacity: .6;
  z-index: 2;
}

/* Play button */
.pv-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 24px rgba(177,28,162,.5);
  transition: transform .2s, box-shadow .2s;
}
.pv-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 10px 32px rgba(177,28,162,.65);
}
/* Pulse ring on play button */
.pv-play-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(234,71,155,.5);
  animation: pvPulse 2s ease-out infinite;
}
@keyframes pvPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.55); opacity: 0; }
}
/* Hide play button when video is playing */
.pv-video-wrap.playing .pv-play-btn { opacity: 0; pointer-events: none; }
.pv-play-btn { transition: transform .2s, box-shadow .2s, opacity .25s; }

/* Stop/pause button — shown only while playing */
.pv-stop-btn {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .2s, background .2s;
}
.pv-stop-btn:hover { background: rgba(177,28,162,.75); transform: scale(1.1); }
.pv-video-wrap.playing .pv-stop-btn { opacity: 1; pointer-events: auto; }

/* Card info row */
.pv-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}
.pv-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.15);
}
.pv-card-info > div:nth-child(2) {
  flex: 1;
}
.pv-card-info strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
}
.pv-card-info small {
  font-size: .74rem;
  color: rgba(255,255,255,.5);
}
.pv-stars {
  color: #e8a838;
  font-size: .9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .pv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pv-card--featured {
    transform: none;
  }
  .pv-card--featured .pv-video-wrap {
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
  }
}

@media (max-width: 600px) {
  .pv-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    /* hide scrollbar on webkit */
    scrollbar-width: none;
  }
  .pv-grid::-webkit-scrollbar { display: none; }
  .pv-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
  }
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf4fb 0%, #fff 100%);
}
.faq-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 48px;
}

.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(177,28,162,.1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(177,28,162,.05);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .96rem;
  color: var(--dark);
  text-align: left;
  transition: color .2s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq-q:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; border-radius: 16px; }
.faq-q:hover { color: var(--pink); }
.faq-q[aria-expanded="true"] { color: var(--pink); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(177,28,162,.08);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }
.faq-a p {
  padding: 0 22px;
  color: var(--body);
  font-size: .92rem;
  line-height: 1.75;
}

/* =============================================
   LOCATION
   ============================================= */
.location-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #fdf4fb 0%, #f5f0ff 50%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

.loc-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.loc-blob-tl {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(177,28,162,.07) 0%, transparent 70%);
  top: -120px; left: -120px;
}
.loc-blob-br {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(234,71,155,.07) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}
.loc-blob-tr {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(54,120,189,.06) 0%, transparent 70%);
  top: 60px; right: 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.location-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.location-left > p {
  color: var(--body);
  font-size: .96rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.loc-info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.loc-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(177,28,162,.07);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 3px 16px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.loc-info-item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(177,28,162,.10);
}

.loc-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .22s ease;
}
.loc-info-item:hover .loc-icon { transform: scale(1.08); }

.loc-info-text small {
  display: block;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #aaa;
  margin-bottom: 3px;
}
.loc-info-text p { font-weight: 700; font-size: .92rem; color: var(--dark); line-height: 1.45; }

.loc-cta { margin-top: 4px; }

.map-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 570px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 3px solid rgba(255,255,255,.9);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-overlay-card {
  position: absolute;
  bottom: 18px; left: 18px;
  background: linear-gradient(135deg, #fff 0%, #fdf4fb 100%);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(177,28,162,.16);
  border: 1px solid rgba(177,28,162,.10);
}
.map-pin-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(177,28,162,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-overlay-card small { display: block; font-size: .63rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #aaa; }
.map-overlay-card strong { font-size: .9rem; font-weight: 800; color: var(--dark); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(135deg, #e0089e 0%, #b11ca2 50%, #9a159a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

.footer-top-line {
  height: 0;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 10px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.footer-logo-wrap img {
  width: 128px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 22px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Each icon circle */
.fs-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
  flex-shrink: 0;
}
.fs-icon svg { display: block; }
.fs-icon:hover {
  background: rgba(255,255,255,.97);
  border-color: transparent;
  color: var(--pink);
  transform: scale(1.14) translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.footer-links h4,
.footer-programs h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer-links ul,
.footer-programs ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a,
.footer-programs li {
  font-size: .88rem;
  opacity: .8;
  transition: opacity .2s;
}
.footer-links li a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  opacity: .7;
}
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { text-decoration: underline; }

.footer-bloom-blob {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -80px; right: -60px;
  pointer-events: none;
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
#whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .25s;
}
#whatsapp-btn:hover { transform: scale(1.1); }
#whatsapp-btn svg { position: relative; z-index: 1; }

.wa-pulse {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-img { height: 380px; }
  .about-body { grid-template-columns: 1fr 260px 1fr; gap: 24px; }
  .prog-levels-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-featured-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 860px) {
  .programs-grid { grid-template-columns: 1fr; }
  .prog-card--wide { grid-column: 1; }
  .prog-levels-grid { grid-template-columns: 1fr; }

  .hero-container,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right { order: -1; }
  .hero-img { height: 300px; }
  .today-card { right: 8px; }
  .parents-say-card { right: 8px; }

  .faculty-header { grid-template-columns: 1fr; gap: 16px; }
  .fc-featured-card { grid-template-columns: 1fr; }
  .fc-photo { min-height: 200px; }
  .fc-photo-initials { font-size: 3rem; }
  .fc-card-grid { grid-template-columns: 1fr 1fr; }

  .about-body { grid-template-columns: 1fr; }
  .about-center-col { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-tagline { padding: 20px 20px; gap: 10px; }

  .testi-cards { grid-template-columns: 1fr; }
  .testi-card.featured { transform: none; }

  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .act-cell:nth-child(1) { grid-column: 1 / 3; grid-row: 1; height: 220px; }
  .act-cell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .act-cell:nth-child(3) { grid-column: 2; grid-row: 2; }
  .act-cell:nth-child(4) { grid-column: 1; grid-row: 3; }
  .act-cell:nth-child(5) { grid-column: 2; grid-row: 3; }
  .act-cell:nth-child(6) { grid-column: 1; grid-row: 4; }
  .act-cell:nth-child(7) { grid-column: 2; grid-row: 4; }
  .act-cell:nth-child(8) { grid-column: 1; grid-row: 5; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-wide { grid-column: span 1; }
  .gallery-item.g-tall { grid-row: span 1; }

  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .programs-grid { grid-template-columns: 1fr; }
  .prog-card--wide { grid-column: 1; }
  .prog-levels-grid { grid-template-columns: 1fr; }
  .prog-card-header { flex-direction: column; gap: 12px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: #fff; padding: 20px 24px 28px; box-shadow: 0 8px 30px rgba(0,0,0,.1); gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .btn-enroll { display: none; }

  .hero-stats { gap: 22px; }
  .stat-num { font-size: 1.4rem; }

  .fc-card-grid { grid-template-columns: 1fr; }

  .activities-grid { grid-template-columns: 1fr; }
  .act-cell:nth-child(n) { grid-column: 1 !important; grid-row: auto !important; }
  .act-img-large { height: 220px; }
  .act-img-mid, .act-img-small { height: 160px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.g-wide, .gallery-item.g-tall { grid-column: span 1; grid-row: span 1; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-tagline { flex-direction: column; gap: 8px; padding: 20px 16px; }
  .why-tagline p { font-size: .92rem; }

  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }

  .hero-badge-float { font-size: .78rem; padding: 8px 12px; gap: 8px; }
  .logo-nav{
    height: 60px;
    width: auto;
  }
  #navbar {
    padding: 12px 0px;
  }
}

@media (max-width: 399px) {
  .section-container {
    padding: 0 14px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Location section — contain grid children so they never exceed viewport */
  .location-left {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }
  .location-left h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  .location-left > p {
    font-size: .84rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .loc-info-list {
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }
  .loc-info-item {
    padding: 11px 13px;
    gap: 11px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .loc-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    flex-shrink: 0;
  }
  .loc-icon svg { width: 20px; height: 20px; }
  .loc-info-text {
    min-width: 0;
    flex: 1 1 0;
    overflow: hidden;
  }
  .loc-info-text small { font-size: .58rem; }
  .loc-info-text p {
    font-size: .80rem;
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .loc-info-text p a {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .map-wrap { height: 240px; border-radius: 20px; }
  .map-overlay-card {
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
  }
  .map-pin-dot { width: 28px; height: 28px; }
  .map-overlay-card small { font-size: .56rem; }
  .map-overlay-card strong { font-size: .78rem; }
}

/* =============================================
   NAVBAR — PROGRAMS DROPDOWN
   ============================================= */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}
.nav-chevron {
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  margin-top: 1px;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 236px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 52px rgba(177,28,162,.15), 0 2px 10px rgba(0,0,0,.06);
  border: 1.5px solid rgba(177,28,162,.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 999;
}
/* Caret arrow */
.nav-drop-panel::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #fff;
  border-left: 1.5px solid rgba(177,28,162,.1);
  border-top: 1.5px solid rgba(177,28,162,.1);
}
/* Transparent bridge: fills the 14px gap so hover isn't lost */
.nav-drop-panel::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown.open .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 11px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  gap: 6px;
  position: relative;
}
.nav-drop-item:hover,
.nav-drop-item.sub-open { background: rgba(177,28,162,.07); color: var(--pink); }
.nav-drop-left { display: flex; align-items: center; gap: 8px; }
.item-icon { font-size: .98rem; }
.sub-arrow {
  flex-shrink: 0;
  opacity: .5;
  transition: transform .2s, opacity .2s;
}
.nav-drop-item.has-sub:hover .sub-arrow,
.nav-drop-item.has-sub.sub-open .sub-arrow { transform: rotate(90deg); opacity: 1; }

.nav-submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  width: 214px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 48px rgba(177,28,162,.14), 0 2px 8px rgba(0,0,0,.06);
  border: 1.5px solid rgba(177,28,162,.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1000;
}
/* Transparent bridge: fills the 8px gap between item and submenu */
.nav-submenu::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -8px;
  width: 8px;
}
.nav-drop-item.has-sub:hover .nav-submenu,
.nav-drop-item.has-sub.sub-open .nav-submenu {
  opacity: 1; visibility: visible; pointer-events: all;
}

.nav-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.nav-sub-link:hover { background: rgba(177,28,162,.07); color: var(--pink); }
.sub-emoji { font-size: .9rem; }
.sub-info { display: flex; flex-direction: column; }
.sub-name { font-size: .84rem; font-weight: 700; line-height: 1.2; }
.sub-age { font-size: .68rem; font-weight: 600; color: var(--body); }

.nav-drop-divider {
  height: 1px;
  background: rgba(177,28,162,.08);
  margin: 5px 8px;
}

/* ── Preschool mini-cards grid (programs section on index) ── */
.prog-preschool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.prog-preschool-card {
  background: color-mix(in srgb, var(--lc) 5%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--lc) 20%, transparent);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s, box-shadow .22s;
}
.prog-preschool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--lc) 20%, transparent);
}
.preschool-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.preschool-emoji {
  font-size: 1.4rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--lc) 12%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preschool-card-top h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2px;
}
.preschool-age {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--lc);
  letter-spacing: .03em;
}
.preschool-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.preschool-features li {
  font-size: .77rem;
  font-weight: 600;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.preschool-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: .5rem;
  color: var(--lc);
  top: 3px;
}
.preschool-know-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: .79rem;
  font-weight: 800;
  color: var(--lc);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid color-mix(in srgb, var(--lc) 30%, transparent);
  background: color-mix(in srgb, var(--lc) 6%, transparent);
  transition: background .2s, transform .2s, border-color .2s, color .2s;
  align-self: flex-start;
  margin-top: auto;
}
.preschool-know-more:hover {
  background: var(--lc);
  color: #fff;
  border-color: var(--lc);
  transform: translateY(-1px);
}

/* ── Mobile dropdown (≤600px) ── */
@media (max-width: 600px) {
  .nav-drop-panel {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 3px solid rgba(177,28,162,.18);
    border-radius: 0;
    padding: 4px 0 4px 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: rgba(177,28,162,.03);
    display: none;
  }
  .nav-drop-panel::before { display: none; }
  .nav-dropdown.open .nav-drop-panel { display: block; }
  .nav-submenu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 3px solid rgba(177,28,162,.12);
    border-radius: 0;
    padding: 2px 0 2px 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: rgba(177,28,162,.04);
    display: none;
  }
  .nav-drop-item.has-sub.sub-open .nav-submenu { display: block; }
  .prog-preschool-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
  .prog-preschool-grid { grid-template-columns: 1fr; }
}
