/* ============================================================
   KIDS NATION — Complete Stylesheet
   Fonts  : Dosis (body/headings) + Amatic SC (display)
   Colours: Teal #1A9EB9 · Pink #D35591 · Purple #6B448E
            Green #81B34B · Orange #F5A623 · Coral #E8412E
   ============================================================ */


/* ════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
════════════════════════════════════════════ */
:root {
  --teal:          #1A9EB9;
  --teal-dark:     #147d93;
  --teal-light:    #e6f7fb;
  --pink:          #D35591;
  --pink-dark:     #b03f77;
  --pink-light:    #fdeef6;
  --purple:        #6B448E;
  --purple-dark:   #542e72;
  --purple-light:  #f0eaf8;
  --green:         #81B34B;
  --green-dark:    #679139;
  --green-light:   #edf5e0;
  --orange:        #F5A623;
  --orange-dark:   #d4891a;
  --orange-light:  #fef6e4;
  --coral:         #E8412E;
  --coral-dark:    #c63320;
  --text-dark:     #575656;
  --text-muted:    #9c9c9c;
  --bg-white:      #ffffff;
  --bg-light:      #edf8fb;
  --bg-grey:       #f7f8fc;
  --border:        #e8e8e8;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.14);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --nav-height:    72px;
  --transition:    0.2s ease;
}


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

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

body {
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }

ul { list-style: none; }

button { font-family: 'Dosis', Arial, sans-serif; cursor: pointer; border: none; background: none; }

strong { font-weight: 700; }

h1, h2, h3, h4, h5 {
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}


/* ════════════════════════════════════════════
   3. LAYOUT UTILITIES
════════════════════════════════════════════ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
  background: var(--bg-white);
}

.section-alt { background: var(--bg-light); }

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-label.light { color: rgba(255,255,255,0.60); }

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-title.light { color: #ffffff; }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   4. GLOBAL BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,65,46,0.35);
  color: #fff;
}

.btn-primary.btn-large { font-size: 17px; padding: 16px 36px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.65);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  color: #fff;
}


/* ════════════════════════════════════════════
   5. NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo { display: flex; flex-direction: column; justify-content: center; flex-shrink: 0; }

.logo-img { height: 52px; width: auto; object-fit: contain; }

.logo-text { font-family: 'Amatic SC', cursive; font-size: 28px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.logo-text span { color: var(--teal); }

.logo-tagline { font-family: 'Amatic SC', cursive; font-size: 13px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

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

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-link i { font-size: 18px; }
.nav-link:nth-child(1) i { color: var(--teal); }
.nav-link:nth-child(2) i { color: var(--pink); }
.nav-link:nth-child(3) i { color: var(--coral); }
.nav-link:nth-child(4) i { color: var(--purple); }
.nav-link:nth-child(5) i { color: var(--orange); }
.nav-link:nth-child(6) i { color: var(--green); }
.nav-link:nth-child(7) i { color: var(--teal); }

.nav-link:hover, .nav-link.active { background: var(--bg-light); color: var(--teal); }

.btn-book {
  flex-shrink: 0;
  background: var(--coral);
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 25px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-book:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232,65,46,0.35);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger:hover { background: var(--bg-grey); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════
   6. HERO
════════════════════════════════════════════ */
.hero { position: relative; height: 580px; overflow: hidden; background: var(--text-dark); }

.hero-bg { position: absolute; inset: 0; }

.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 540px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Amatic SC', cursive;
  font-size: 78px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 em { color: var(--orange); font-style: normal; }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 6px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.trust-pill i { font-size: 13px; color: var(--orange); }


/* ════════════════════════════════════════════
   7. WELCOME BANNER
════════════════════════════════════════════ */
.welcome-banner { background: var(--purple); padding: 24px 32px; text-align: center; }

.welcome-banner > p { font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 16px; }

.welcome-banner > p strong { color: var(--orange); }

.banner-stats { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }

.banner-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }

.stat-num { font-size: 28px; font-weight: 800; color: #ffffff; line-height: 1; }

.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 600; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }

.banner-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }


/* ════════════════════════════════════════════
   8. BRANCHES
════════════════════════════════════════════ */
.branches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.branch-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.branch-img-wrap { position: relative; height: 180px; overflow: hidden; background: var(--bg-light); }

.branch-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.branch-card:hover .branch-img-wrap img { transform: scale(1.05); }

.branch-img-wrap.img-fallback img { display: none; }

.branch-img-icon {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.branch-img-wrap.img-fallback .branch-img-icon { display: flex; }

[data-branch="mont-kiara"] .branch-img-icon i { color: var(--teal); }
[data-branch="ampang"]     .branch-img-icon i { color: var(--pink); }
[data-branch="bangsar"]    .branch-img-icon i { color: var(--purple); }

.branch-body { padding: 20px; }

.branch-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.branch-tag.teal   { background: var(--teal-light);  color: var(--teal-dark); }
.branch-tag.coral  { background: var(--pink-light);   color: var(--pink-dark); }
.branch-tag.purple { background: var(--purple-light); color: var(--purple-dark); }

.branch-body h3 { font-size: 19px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }

.branch-detail { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }

.branch-detail i { font-size: 14px; color: var(--teal); margin-top: 3px; flex-shrink: 0; width: 16px; }

.branch-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.4; }

.branch-actions { display: flex; gap: 8px; margin-top: 16px; }

.btn-branch, .btn-branch-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 22px;
  font-family: 'Dosis', sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-branch { border: 2px solid var(--purple); color: var(--purple); background: transparent; }
.btn-branch:hover { background: var(--purple); color: #ffffff; }

.btn-branch-wa { background: #25D366; color: #ffffff; border: 2px solid #25D366; }
.btn-branch-wa:hover { background: #1da855; border-color: #1da855; color: #fff; transform: translateY(-1px); }


/* ════════════════════════════════════════════
   9. WHY KIDS NATION
════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }

.why-item { text-align: center; }

.why-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 38px;
  color: #ffffff;
  transition: transform var(--transition);
}

.why-item:hover .why-icon { transform: scale(1.08); }

.why-icon.pink   { background: var(--pink); }
.why-icon.teal   { background: var(--teal); }
.why-icon.orange { background: var(--orange); }
.why-icon.green  { background: var(--green); }
.why-icon.purple { background: var(--purple); }
.why-icon.red    { background: var(--coral); }

.why-item h3 { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.why-item p  { font-size: 15px; color: var(--text-muted); line-height: 1.65; }


/* ════════════════════════════════════════════
   10. YOUR CHILDREN — ACCORDION
════════════════════════════════════════════ */
.kids-section { background: var(--bg-light); }

.kids-title {
  font-family: 'Amatic SC', cursive;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.kids-divider { width: 60px; height: 3px; background: var(--purple); margin: 0 auto 36px; border-radius: 2px; }

.accordion { max-width: 860px; margin: 0 auto; }

.accordion-item { margin-bottom: 4px; border-radius: var(--radius-sm); overflow: hidden; }

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: filter var(--transition);
}

.accordion-header:hover  { filter: brightness(1.08); }
.accordion-header:focus  { outline: 3px solid rgba(255,255,255,0.5); outline-offset: -3px; }

.accordion-header.green  { background: var(--green); }
.accordion-header.teal   { background: var(--teal); }
.accordion-header.pink   { background: var(--pink); }
.accordion-header.purple { background: var(--purple); }
.accordion-header.orange { background: var(--orange); }

.accordion-header span { display: flex; align-items: center; gap: 10px; }

.accordion-header i.acc-icon { flex-shrink: 0; font-size: 14px; transition: transform 0.25s ease; }

.accordion-body {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body.open { max-height: 300px; }

.accordion-body p { padding: 20px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.kids-tagline {
  font-family: 'Amatic SC', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  margin-top: 36px;
}


/* ════════════════════════════════════════════
   11. PRICING
════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 780px; margin: 0 auto 28px; }

.price-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card.featured { border-color: var(--purple); }

.price-header { display: flex; align-items: center; gap: 14px; padding: 18px 24px; color: #ffffff; }
.price-header.teal   { background: var(--teal); }
.price-header.purple { background: var(--purple); }

.price-header i { font-size: 26px; flex-shrink: 0; }

.price-header h3 { font-size: 19px; font-weight: 800; color: #ffffff; margin-bottom: 2px; }
.price-header p  { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }

.price-body { padding: 20px 24px; }

.price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.price-row:last-of-type { border-bottom: none; }

.price-who { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--text-dark); }
.price-who i { color: var(--teal); font-size: 15px; width: 18px; }

.price-amt { font-size: 22px; font-weight: 800; color: var(--purple); }

.price-note {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-note i { color: var(--teal); }

.price-hours {
  max-width: 780px;
  margin: 0 auto 24px;
  background: var(--bg-grey);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-muted); }
.hours-row i { color: var(--teal); font-size: 16px; width: 18px; }
.hours-row strong { color: var(--text-dark); margin-right: 4px; }

.price-cta { text-align: center; margin-top: 8px; }


/* ════════════════════════════════════════════
   12. BIRTHDAY
════════════════════════════════════════════ */
.bday-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; max-height: 360px; }
.bday-hero-img img { width: 100%; height: 360px; object-fit: cover; object-position: center; }

.bday-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 20px; }

.bday-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bday-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bday-card.featured-bday { border-color: var(--pink); }

.bday-popular {
  background: var(--pink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  text-align: center;
}

.bday-header { padding: 18px 20px 14px; }
.bday-header.green  { background: var(--green); }
.bday-header.pink   { background: var(--pink); }
.bday-header.purple { background: var(--purple); }

.bday-header h3 { font-size: 22px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }

.bday-pax { font-size: 14px; color: rgba(255,255,255,0.80); display: flex; align-items: center; gap: 6px; font-weight: 600; }

.bday-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.bday-features { list-style: none; flex: 1; margin-bottom: 16px; }

.bday-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.bday-features li:last-child { border-bottom: none; }

.bday-features li i { color: var(--green); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.bday-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 25px;
  font-family: 'Dosis', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-top: auto;
  transition: opacity var(--transition), transform var(--transition);
}

.bday-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.bday-btn.green  { background: var(--green);  color: #ffffff; }
.bday-btn.pink   { background: var(--pink);   color: #ffffff; }
.bday-btn.purple { background: var(--purple); color: #ffffff; }

.bday-note { font-size: 13px; color: var(--text-muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.bday-note i { color: var(--teal); }


/* ════════════════════════════════════════════
   13. GALLERY
════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 28px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-light);
  cursor: pointer;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-cta { text-align: center; }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 30px;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-instagram:hover { opacity: 0.90; transform: translateY(-2px); color: #fff; }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }

.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-md);
}


/* ════════════════════════════════════════════
   14. REVIEWS
════════════════════════════════════════════ */
.reviews-section { background: var(--purple); padding: 72px 0; }

.reviews-section .section-label { color: rgba(255,255,255,0.60); }
.reviews-section .section-title { color: #ffffff; margin-bottom: 36px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: background var(--transition);
}

.review-card:hover { background: rgba(255,255,255,0.13); }

.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars i { color: var(--orange); font-size: 15px; }

.review-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.70; margin-bottom: 16px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 10px; }

.reviewer-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #ffffff; flex-shrink: 0; }

.reviewer-name   { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.90); }
.reviewer-branch { font-size: 12px; color: rgba(255,255,255,0.50); margin-top: 1px; }


/* ════════════════════════════════════════════
   15. FAQ
════════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }

.faq-item:hover { border-color: var(--teal); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}

.faq-q:hover  { background: var(--bg-grey); }
.faq-q:focus  { outline: 2px solid var(--teal); outline-offset: -2px; }

.faq-icon { flex-shrink: 0; font-size: 16px; color: var(--teal); transition: transform 0.25s ease; }

.faq-a {
  display: none;
  padding: 14px 20px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--bg-grey);
}

.faq-a.open { display: block; }
.faq-a strong { color: var(--text-dark); }


/* ════════════════════════════════════════════
   16. FOOTER
════════════════════════════════════════════ */
.footer-rainbow {
  height: 6px;
  background: linear-gradient(to right, var(--orange), var(--pink), var(--purple), var(--teal), var(--green));
}

.footer { background: #5a3a7a; padding: 56px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }

.footer-logo { height: 56px; width: auto; object-fit: contain; margin-bottom: 8px; }

.footer-logo-text { font-family: 'Amatic SC', cursive; font-size: 32px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }

.footer-tagline { font-family: 'Amatic SC', cursive; font-size: 16px; color: rgba(255,255,255,0.55); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.65; max-width: 220px; margin-bottom: 18px; }

.footer-socials { display: flex; gap: 10px; margin-bottom: 16px; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-socials a:hover { background: rgba(255,255,255,0.22); }
.footer-socials i { color: rgba(255,255,255,0.75); font-size: 16px; }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 22px;
  transition: background var(--transition), transform var(--transition);
}

.footer-wa:hover { background: #1da855; transform: translateY(-1px); color: #fff; }

.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.40); margin-bottom: 14px; }

.footer-col a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.45;
  transition: color var(--transition);
}

.footer-col a:hover { color: #ffffff; }
.footer-col a i { font-size: 13px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.footer-hours { background: rgba(0,0,0,0.15); border-radius: var(--radius-md); padding: 14px 16px; }

.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.hours-item:last-child { border-bottom: none; }
.hours-item span   { color: rgba(255,255,255,0.55); }
.hours-item strong { color: var(--orange); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.70); }


/* ════════════════════════════════════════════
   17. FLOATING WHATSAPP & SCROLL TOP
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover { transform: scale(1.10); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.whatsapp-float i { color: #ffffff; font-size: 28px; }

.scroll-top {
  position: fixed;
  bottom: 94px;
  right: 30px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: #800000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: opacity var(--transition), transform var(--transition);
}

.scroll-top:hover { transform: scale(1.08); }
.scroll-top i { color: #ffffff; font-size: 16px; }


/* ════════════════════════════════════════════
   18. RESPONSIVE — TABLET (≤ 960px)
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .section { padding: 56px 0; }

  /* Nav */
  .navbar { height: auto; min-height: 64px; }
  .nav-inner { flex-wrap: wrap; padding: 12px 20px; gap: 12px; }
  .nav-hamburger { display: flex; order: 3; }
  .nav-links {
    display: none; order: 4; width: 100%;
    flex-direction: column; align-items: stretch;
    gap: 2px; padding: 10px 0 12px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-link { flex-direction: row; justify-content: flex-start; padding: 10px 14px; font-size: 14px; gap: 10px; border-radius: var(--radius-sm); }
  .btn-book { order: 2; }

  /* Hero */
  .hero { height: 480px; }
  .hero-content { left: 40px; max-width: 460px; }
  .hero h1 { font-size: 60px; }

  /* Grids */
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bday-grid     { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }

  .pricing-grid { max-width: 100%; }
}


/* ════════════════════════════════════════════
   19. RESPONSIVE — MOBILE (≤ 640px)
════════════════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section    { padding: 48px 0; }

  .section-title { font-size: 26px; }
  .section-desc  { font-size: 15px; }

  .nav-inner { padding: 10px 16px; }
  .logo-img  { height: 44px; }

  .hero { height: 100svh; max-height: 640px; }
  .hero-content { left: 20px; right: 20px; max-width: 100%; }
  .hero h1 { font-size: 48px; }
  .hero-desc { font-size: 16px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .trust-pill { font-size: 12px; padding: 5px 10px; }

  .welcome-banner { padding: 20px 16px; }
  .welcome-banner > p { font-size: 18px; }
  .banner-stat { padding: 0 14px; }
  .stat-num { font-size: 22px; }

  .branches-grid { grid-template-columns: 1fr; }
  .branch-img-wrap { height: 160px; }

  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-icon { width: 82px; height: 82px; font-size: 32px; }

  .kids-title { font-size: 42px; }
  .accordion-header { font-size: 16px; padding: 14px 16px; }
  .accordion-body p { padding: 16px; font-size: 14px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-header { padding: 14px 18px; }
  .price-body   { padding: 16px 18px; }
  .price-amt    { font-size: 20px; }

  .bday-grid { grid-template-columns: 1fr; }
  .bday-hero-img { display: none; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: unset; }
  .gallery-item.large { grid-column: span 2; }

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

  .faq-q { font-size: 15px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float i { font-size: 24px; }
  .scroll-top { bottom: 82px; right: 22px; width: 38px; height: 38px; }

  .btn-book { font-size: 13px; padding: 9px 16px; }
}


/* ════════════════════════════════════════════
   20. ACCESSIBILITY, PRINT & UTILITIES
════════════════════════════════════════════ */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .navbar, .whatsapp-float, .scroll-top, .hero-btns, .btn-book, .footer-socials, .footer-wa { display: none !important; }
  .hero { height: auto; background: #f0f0f0; }
  .hero-content { position: static; transform: none; padding: 32px; }
  .hero h1, .hero-desc, .hero-eyebrow { color: var(--text-dark); }
  .hero-overlay { display: none; }
}
