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

:root {
  --purple: #7B7DB8;
  --purple-dark: #201640;
  --purple-mid: #6E70B0;
  --purple-light: #9B9DD0;
  --teal: #5ECEC5;
  --teal-dark: #4DBDA8;
  --teal-light: #8EDED8;
  --navy: #201640;
  --white: #FFFFFF;
  --off-white: #F8F7FC;
  --gray-50: #FAFAFA;
  --gray-100: #F3F3F5;
  --gray-200: #E5E5EA;
  --gray-300: #C7C7CC;
  --gray-600: #6E6E73;
  --gray-800: #3A3A3C;
  --gray-900: #1C1C1E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --nav-height: 72px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: #201640;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(94, 206, 197, 0.12);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--purple-mid) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text span {
  -webkit-text-fill-color: transparent;
}

.nav-logo-img {
  height: 85px;
  width: auto;
  border-radius: 0;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* Logo images */
.logo-img {
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-card-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
}

.page-hero-logo {
  width: auto;
  height: 400px;
  margin: 0 auto 24px;
  border-radius: 0;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== PAGE WRAPPER ===== */
.page {
  padding-top: var(--nav-height);
}

/* ===== SECTION ===== */
.section {
  padding: 96px 32px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white);
}

.btn-purple:hover {
  box-shadow: 0 6px 24px rgba(123, 125, 184, 0.4), 0 0 40px rgba(94, 206, 197, 0.15);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== HERO (Homepage) ===== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

/* Warm background — swap in a real photo with:
   background-image: url('../images/hero-bg.jpg'); */
.hero-warm {
  background: var(--purple-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 21, 69, 0.15);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--teal-light);
  font-weight: 400;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-warm-primary {
  background: var(--white);
  color: var(--purple-dark);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-warm-primary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(78,205,196,0.35);
}

.btn-warm-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-warm-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.15);
}

/* Trust points */
.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

/* Two logos on homepage */
.hero-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
}

.hero-logo-link {
  display: block;
  width: 400px;
  height: 400px;
  transition: transform 0.3s ease;
}

.hero-logo-link:hover {
  transform: translateY(-5px);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-logo-img-daycare {
  mix-blend-mode: multiply;
}


/* ===== HOME PAGE ===== */

/* Welcome badge */
.home-welcome-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(94, 206, 197, 0.1);
  border: 1px solid rgba(94, 206, 197, 0.25);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating shapes */
.home-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-shape {
  position: absolute;
  border-radius: 50%;
  animation: homeFloat 8s ease-in-out infinite;
}

.home-shape-1 {
  width: 100px; height: 100px;
  background: rgba(94, 206, 197, 0.08);
  top: 10%; left: 5%;
  animation-delay: 0s;
}
.home-shape-2 {
  width: 60px; height: 60px;
  background: rgba(123, 125, 184, 0.1);
  top: 15%; right: 8%;
  animation-delay: 1.5s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.home-shape-3 {
  width: 80px; height: 80px;
  border: 2px solid rgba(94, 206, 197, 0.1);
  background: transparent;
  bottom: 25%; left: 10%;
  animation-delay: 3s;
}
.home-shape-4 {
  width: 40px; height: 40px;
  background: rgba(123, 125, 184, 0.08);
  bottom: 15%; right: 15%;
  animation-delay: 2s;
}
.home-shape-5 {
  width: 120px; height: 120px;
  border: 2px solid rgba(123, 125, 184, 0.06);
  background: transparent;
  top: 40%; right: 3%;
  animation-delay: 4s;
}
.home-shape-6 {
  width: 50px; height: 50px;
  background: rgba(94, 206, 197, 0.06);
  top: 60%; left: 3%;
  animation-delay: 1s;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

@keyframes homeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}

/* Lego stacks animation between logos */
.home-lego {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(94, 206, 197, 0.3));
}

.lego-block {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px 4px;
  border-radius: 4px;
  position: relative;
  animation: legoDrop 4s ease-in-out infinite;
}

.lego-stud {
  display: block;
  width: 10px;
  height: 6px;
  border-radius: 3px 3px 0 0;
  background: inherit;
  position: relative;
  top: -12px;
  filter: brightness(1.3);
}

.lego-1 {
  width: 48px; height: 22px;
  background: var(--teal);
  animation-delay: 0s;
}
.lego-2 {
  width: 64px; height: 22px;
  background: var(--purple-mid);
  animation-delay: 0.15s;
}
.lego-3 {
  width: 48px; height: 22px;
  background: var(--teal);
  animation-delay: 0.3s;
}
.lego-4 {
  width: 64px; height: 22px;
  background: var(--purple);
  animation-delay: 0.45s;
}
.lego-5 {
  width: 48px; height: 22px;
  background: var(--teal-dark);
  animation-delay: 0.6s;
}

@keyframes legoDrop {
  0% { transform: translateY(-60px) rotate(-5deg); opacity: 0; }
  15% { transform: translateY(4px) rotate(1deg); opacity: 1; }
  20% { transform: translateY(-2px) rotate(0deg); opacity: 1; }
  25% { transform: translateY(0) rotate(0deg); opacity: 1; }
  80% { transform: translateY(0) rotate(0deg); opacity: 1; }
  90% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(-60px) rotate(5deg); opacity: 0; }
}

.home-lego:hover .lego-block {
  filter: brightness(1.3);
  transition: filter 0.3s;
}

/* Values section */
.home-values-section {
  background: var(--purple-dark);
  position: relative;
}

.home-values-section .section-header h2 {
  color: var(--teal);
}

.home-values-section .section-label {
  color: var(--teal);
}

.home-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-value-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: rgba(94, 206, 197, 0.05);
  border: 1px solid rgba(94, 206, 197, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.home-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 206, 197, 0.25);
}

.home-value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--teal);
}

.home-value-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.home-value-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Programs preview */
.home-programs-section {
  background: var(--purple-dark);
}

.home-programs-section .section-header h2 {
  color: var(--teal);
}

.home-programs-section .section-label {
  color: var(--teal);
}

.home-programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-program-card {
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background: rgba(123, 125, 184, 0.08);
  border: 1px solid rgba(123, 125, 184, 0.15);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.home-program-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(94, 206, 197, 0.1);
}

.home-program-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(94, 206, 197, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.home-program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.home-program-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.home-program-cta {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  transition: transform 0.2s;
}

.home-program-card:hover .home-program-cta {
  transform: translateX(4px);
}

/* Home CTA */
.home-cta {
  background: var(--purple-dark) !important;
  border-top: 1px solid rgba(94, 206, 197, 0.1);
}

.home-cta h2 {
  color: var(--teal) !important;
}

.home-cta p {
  color: var(--teal-light) !important;
}

.home-cta .cta-label {
  color: var(--teal) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .home-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-programs-grid {
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .home-welcome-badge {
    font-size: 0.75rem;
    padding: 6px 18px;
    margin-bottom: 40px;
  }

  .home-shapes {
    display: none;
  }

  .hero-trust {
    display: none;
  }
  .home-value-card {
    padding: 32px 24px;
  }
  .home-programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .home-program-card {
    padding: 24px 16px;
  }
  .home-program-card h3 {
    font-size: 1.1rem;
  }
  .home-program-card p {
    font-size: 0.85rem;
  }
  .home-program-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

@media (max-width: 400px) {
  .home-program-card {
    padding: 18px 12px;
  }
  .home-program-card h3 {
    font-size: 1rem;
  }
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 80px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero.daycare-hero {
  background: linear-gradient(168deg, var(--purple-dark) 0%, var(--purple-mid) 50%, var(--teal-dark) 100%);
  color: var(--white);
}

.page-hero.academy-hero {
  background: linear-gradient(168deg, var(--teal-dark) 0%, var(--purple-mid) 50%, var(--purple-dark) 100%);
  color: var(--white);
}

.page-hero.contact-hero {
  background: linear-gradient(168deg, var(--purple-dark) 0%, var(--purple-mid) 50%, var(--teal-dark) 100%);
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 12px;
  color: var(--teal);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
  color: var(--teal-light);
}

.hero-details {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.hero-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== FEATURES LIST (Daycare) ===== */
.features {
  background: var(--off-white);
}

.features-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.feature-item {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(94, 206, 197, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 125, 184, 0.12), rgba(94, 206, 197, 0.15));
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.feature-item h3 {
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.95rem;
}

/* ===== GALLERY (Daycare) ===== */
.gallery {
  background: var(--gray-50);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-200);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--gray-300);
  stroke-width: 1.5;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, rgba(32, 22, 64, 0.95) 100%);
}

.instagram-section .section-header h2 {
  color: var(--white);
}

.instagram-section .section-header p {
  color: var(--teal-light);
}

.instagram-section .section-label {
  color: var(--teal);
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(123, 125, 184, 0.25) 0%, rgba(94, 206, 197, 0.15) 100%);
  border: 2px solid rgba(94, 206, 197, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--white);
}

.instagram-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(94, 206, 197, 0.25);
  border-color: var(--teal);
}

.instagram-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.instagram-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.instagram-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.instagram-text span {
  font-size: 0.88rem;
  color: var(--teal-light);
}

.instagram-arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform 0.2s;
}

.instagram-card:hover .instagram-arrow {
  transform: translateX(4px);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #2D1E50 100%);
  text-align: center;
  padding: 64px 32px;
}

.cta-band.teal-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.cta-band .btn {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.cta-band.teal-band .btn {
  color: var(--teal-dark);
}

.cta-band .phone-number {
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 500;
}

.cta-band .phone-number a {
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.cta-band .phone-number a:hover {
  border-color: var(--white);
}

/* ===== CTA INLINE BOOKING FORM ===== */
.cta-booking-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.cta-booking-form .form-group label {
  color: rgba(255, 255, 255, 0.8);
}

.cta-booking-form .form-group input,
.cta-booking-form .form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cta-booking-form .form-group input::placeholder,
.cta-booking-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-booking-form .form-group input:focus,
.cta-booking-form .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94, 206, 197, 0.15);
  background: rgba(255, 255, 255, 0.14);
}

.cta-booking-form .btn-enroll {
  width: 100%;
}

.cta-booking-form .enroll-reassurance {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ===== CTA ENROLL ANIMATION (Daycare) ===== */
.cta-video-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 100vh;
}

.cta-video-section .cta-video-bg,
.cta-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-video-overlay,
.cta-video-section .cta-enroll-shapes,
.cta-video-section .cta-enroll-content {
  position: absolute;
  inset: 0;
}

.cta-video-section .cta-enroll-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
}

.cta-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 22, 64, 0.5) 0%, rgba(94, 206, 197, 0.25) 100%);
  z-index: 1;
}

.cta-enroll-animated {
  position: relative;
  overflow: hidden;
}

.cta-enroll-content {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Floating background shapes */
.cta-enroll-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.cta-shape-1 {
  width: 120px; height: 120px;
  background: var(--teal-light);
  top: -20px; left: 5%;
  animation: ctaFloat1 7s ease-in-out infinite;
}

.cta-shape-2 {
  width: 60px; height: 60px;
  background: var(--purple-light);
  top: 20%; right: 8%;
  animation: ctaFloat2 5s ease-in-out infinite;
}

.cta-shape-3 {
  width: 80px; height: 80px;
  border: 3px solid rgba(255,255,255,0.2);
  background: transparent;
  bottom: 10%; left: 12%;
  animation: ctaFloat3 6s ease-in-out infinite;
}

.cta-shape-4 {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  top: 50%; right: 18%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: ctaFloat2 8s ease-in-out infinite reverse;
}

.cta-shape-5 {
  width: 90px; height: 90px;
  background: var(--teal);
  opacity: 0.1;
  bottom: -30px; right: 3%;
  animation: ctaFloat1 9s ease-in-out infinite reverse;
}

@keyframes ctaFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(12deg) scale(1.05); }
}

@keyframes ctaFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-12px) translateX(8px); }
  66% { transform: translateY(6px) translateX(-6px); }
}

@keyframes ctaFloat3 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* Scroll-triggered fade-in slide-up for content items */
.cta-anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-anim-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each child */
.cta-anim-item:nth-child(2) { transition-delay: 0.12s; }
.cta-anim-item:nth-child(3) { transition-delay: 0.24s; }
.cta-anim-item:nth-child(4) { transition-delay: 0.36s; }
.cta-anim-item:nth-child(5) { transition-delay: 0.48s; }

/* Gentle pulse on the CTA button */
.cta-btn-bounce.visible {
  animation: ctaPulse 2.5s ease-in-out 1s infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { transform: scale(1.04); box-shadow: 0 0 20px 4px rgba(255,255,255,0.15); }
}

/* ===== FULL PAGE VIDEO BACKGROUND (Academy) ===== */
.page-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  z-index: -2;
}

.daycare-video-bg {
  object-fit: cover;
  object-position: center 20%;
}

.page-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 22, 64, 0.45);
  z-index: -1;
}

.academy-page .page-hero,
.academy-page .section,
.academy-page .cta-band,
.daycare-page .page-hero,
.daycare-page .section,
.daycare-page .cta-band {
  background: transparent;
}

.academy-page .page-hero,
.daycare-page .page-hero {
  background: rgba(32, 22, 64, 0.35);
}

.academy-page .section,
.daycare-page .section {
  background: rgba(32, 22, 64, 0.45);
}

.academy-page .section:nth-child(even),
.daycare-page .section:nth-child(even) {
  background: rgba(32, 22, 64, 0.55);
}

.academy-page .cta-band,
.daycare-page .cta-band {
  background: rgba(32, 22, 64, 0.7);
}

.academy-page .feature-card-premium,
.academy-page .review-card,
.daycare-page .feature-card-premium,
.daycare-page .review-card,
.daycare-page .schedule-card {
  background: rgba(255, 255, 255, 0.92);
}

.academy-page .apart-item {
  background: linear-gradient(135deg, rgba(32, 22, 64, 0.8), rgba(32, 22, 64, 0.7));
  border-radius: var(--radius-md);
  border: 1px solid rgba(94, 206, 197, 0.2);
}

.academy-page .apart-item h3 {
  color: var(--white);
}

.academy-page .apart-item p {
  color: rgba(255, 255, 255, 0.75);
}

.academy-page .apart-number {
  color: var(--teal);
  opacity: 0.8;
}

.academy-page .program-card-premium {
  background: linear-gradient(135deg, rgba(32, 22, 64, 0.85), rgba(32, 22, 64, 0.75));
  border-color: rgba(94, 206, 197, 0.25);
}

.academy-page .program-card-premium h3 {
  color: var(--white);
}

.academy-page .program-card-premium p {
  color: rgba(255, 255, 255, 0.7);
}

.academy-page .program-icon-premium {
  background: linear-gradient(135deg, var(--purple), var(--teal));
}

.academy-page .program-icon-premium svg {
  stroke: var(--white);
}

.academy-page .program-card-premium:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(94, 206, 197, 0.2);
}

.academy-page .program-card-premium:hover .program-icon-premium {
  background: linear-gradient(135deg, var(--teal), var(--purple));
}

.academy-page .section-header h2,
.academy-page .section-header p,
.daycare-page .section-header h2,
.daycare-page .section-header p {
  color: var(--white);
}

.academy-page .section-label,
.daycare-page .section-label {
  color: var(--teal);
}

.academy-page .instagram-section,
.daycare-page .instagram-section {
  background: transparent;
}

.academy-page .reviews-empty,
.daycare-page .reviews-empty {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PROGRAMS GRID (Academy) ===== */
.programs {
  background: var(--white);
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(94, 206, 197, 0.12);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 125, 184, 0.12), rgba(94, 206, 197, 0.15));
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.program-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== REVIEWS SLIDER (Firebase) ===== */
.reviews-section {
  background: linear-gradient(180deg, #E6F8F6, var(--off-white));
}

/* Reviews list */
.reviews-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-list::-webkit-scrollbar {
  height: 4px;
}

.reviews-list::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-list::-webkit-scrollbar-thumb {
  background: rgba(123, 125, 184, 0.3);
  border-radius: 2px;
}

/* Review card */
.review-card {
  flex: 0 0 300px;
  min-height: 160px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(123, 125, 184, 0.1);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  scroll-snap-align: start;
}

.review-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-star {
  color: var(--gray-300);
}

.review-star.filled {
  color: #F5A623;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.reviews-empty {
  width: 100%;
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-600);
  font-size: 1.05rem;
  font-style: italic;
}

/* Add Review Form */
.review-form-wrap {
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(123, 125, 184, 0.1);
  position: relative;
  overflow: hidden;
}

.review-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
}

.review-form-wrap h3 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--navy);
}

.review-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.review-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94, 206, 197, 0.12);
}

.review-success {
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.review-success.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark page overrides for reviews */
.daycare-page .review-form-wrap,
.academy-page .review-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(94, 206, 197, 0.15);
}

.daycare-page .review-form-wrap h3,
.academy-page .review-form-wrap h3 {
  color: var(--white);
}

.daycare-page .review-form .form-group label,
.academy-page .review-form .form-group label {
  color: rgba(255, 255, 255, 0.8);
}

.daycare-page .review-form .form-group input,
.daycare-page .review-form .form-group textarea,
.daycare-page .review-form select,
.academy-page .review-form .form-group input,
.academy-page .review-form .form-group textarea,
.academy-page .review-form select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(94, 206, 197, 0.15);
  color: var(--white);
}

.daycare-page .review-form .form-group input::placeholder,
.daycare-page .review-form .form-group textarea::placeholder,
.academy-page .review-form .form-group input::placeholder,
.academy-page .review-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.daycare-page .review-form .form-group input:focus,
.daycare-page .review-form .form-group textarea:focus,
.daycare-page .review-form select:focus,
.academy-page .review-form .form-group input:focus,
.academy-page .review-form .form-group textarea:focus,
.academy-page .review-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94, 206, 197, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.daycare-page .reviews-list::-webkit-scrollbar-thumb,
.academy-page .reviews-list::-webkit-scrollbar-thumb {
  background: rgba(94, 206, 197, 0.4);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--white);
}

.contact-form-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94,206,197,0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  text-align: center;
  margin-top: 28px;
}

/* ===== ENROLLMENT PAGE ===== */

/* Hero floating shapes */
.enroll-hero {
  position: relative;
  overflow: hidden;
  background: var(--purple-dark) !important;
  padding-bottom: 80px !important;
}

.enroll-hero h1 {
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enroll-hero p {
  color: var(--teal-light);
}

.enroll-hero-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.shape-circle {
  width: 80px; height: 80px;
  background: rgba(78, 205, 196, 0.25);
  top: 12%; left: 8%;
  animation-delay: 0s;
}
.shape-star {
  width: 50px; height: 50px;
  background: rgba(155, 141, 192, 0.3);
  top: 20%; right: 12%;
  animation-delay: 1s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.shape-triangle {
  width: 60px; height: 60px;
  background: rgba(78, 205, 196, 0.2);
  bottom: 18%; left: 15%;
  animation-delay: 2s;
  border-radius: 30% 70% 50% 50%;
}
.shape-dot {
  width: 30px; height: 30px;
  background: rgba(155, 141, 192, 0.35);
  top: 35%; left: 50%;
  animation-delay: 3s;
}
.shape-ring {
  width: 65px; height: 65px;
  border: 4px solid rgba(94, 206, 197, 0.25);
  background: transparent;
  bottom: 20%; right: 10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* Layout */
.enroll-section {
  background: var(--purple-dark);
}

.enroll-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.enroll-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.enroll-info-card {
  background: rgba(94, 206, 197, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid rgba(123, 125, 184, 0.15);
  border-top: 3px solid var(--purple);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.enroll-info-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
}

.enroll-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 206, 197, 0.3);
}

.enroll-info-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.enroll-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--white);
}

.enroll-info-card > p {
  font-size: 0.9rem;
  color: var(--teal-light);
}

.enroll-perks {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enroll-perks li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 20px;
  position: relative;
}

.enroll-perks li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.enroll-contact-quick {
  background: rgba(123, 125, 184, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid rgba(123, 125, 184, 0.15);
  text-align: center;
}

.enroll-contact-quick p {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.enroll-phone {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-dark);
}

/* Form card */
.enroll-form-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1.5px solid rgba(123, 125, 184, 0.15);
  border-top: 4px solid var(--purple);
  position: relative;
  overflow: hidden;
}

.enroll-form-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
}

.enroll-step-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  margin-bottom: 12px;
  margin-top: 28px;
}

.enroll-form-card .form-group label {
  color: rgba(255, 255, 255, 0.8);
}

.enroll-form-card .form-group input,
.enroll-form-card .form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(94, 206, 197, 0.15);
  color: var(--white);
}

.enroll-form-card .form-group input::placeholder,
.enroll-form-card .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.enroll-form-card .form-group input:focus,
.enroll-form-card .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94, 206, 197, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.enroll-reassurance {
  color: rgba(255, 255, 255, 0.5) !important;
}

.enroll-step-label:first-child,
.enroll-form-card .enroll-step-label:first-of-type {
  margin-top: 0;
}

/* Program selector cards */
.program-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}

.program-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.program-option {
  cursor: pointer;
}

.program-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  border: 2px solid rgba(94, 206, 197, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.program-option-card:hover {
  border-color: rgba(94, 206, 197, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.program-option input:checked + .program-option-card {
  border-color: var(--purple);
  background: rgba(123, 125, 184, 0.1);
  box-shadow: 0 0 0 3px rgba(123, 125, 184, 0.15);
  transform: translateY(-2px);
}

.program-option-name {
  color: var(--white) !important;
}

.program-option-ages {
  color: rgba(255, 255, 255, 0.5) !important;
}

.program-option-emoji {
  font-size: 2rem;
}

.program-option-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
}

.program-option-ages {
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Enroll button */
.btn-enroll {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(123, 125, 184, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 125, 184, 0.4), 0 0 40px rgba(94, 206, 197, 0.15);
}

.enroll-reassurance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 16px;
}

/* Responsive enrollment */
@media (max-width: 900px) {
  .enroll-layout {
    grid-template-columns: 1fr;
  }

  .enroll-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .enroll-contact-quick {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .enroll-hero h1 {
    font-size: 1.8rem;
  }

  .enroll-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .enroll-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .enroll-contact-quick {
    grid-column: 1 / -1;
  }

  .enroll-info-card {
    padding: 18px 14px;
  }

  .enroll-info-card h3 {
    font-size: 0.95rem;
  }

  .enroll-perks li {
    font-size: 0.78rem;
  }

  .enroll-form-card {
    padding: 24px 16px;
    position: relative;
    z-index: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .program-selector {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .program-option-card {
    padding: 16px 12px;
  }
}

/* ===== THANK YOU ===== */
.thankyou-content {
  text-align: center;
  padding: 120px 32px;
  min-height: calc(100vh - var(--nav-height) - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--purple-dark);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  box-shadow: 0 0 30px rgba(123, 125, 184, 0.4), 0 0 60px rgba(94, 206, 197, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.thankyou-content h1 {
  margin-bottom: 12px;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou-content p {
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--teal-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 32px 32px;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.footer-logo-academy {
  height: 140px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--purple-mid) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.footer-brand span {
  -webkit-text-fill-color: transparent;
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--teal-light);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

/* ===== LABELS ===== */
.hero-label,
.section-label,
.cta-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.cta-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

/* ===== PROMISE / WHY SECTION ===== */
.promise-section {
  background: linear-gradient(180deg, #EEEDF8, var(--off-white));
}

.promise-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}

.promise-text {
  flex: 1.4;
}

.promise-text h2 {
  margin-bottom: 16px;
}

.promise-lead {
  font-size: 1.15rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
}

.promise-text p {
  line-height: 1.75;
}

.daycare-page .promise-text h2 {
  color: var(--white);
}

.daycare-page .promise-lead {
  color: rgba(255, 255, 255, 0.9);
}

.daycare-page .promise-text p {
  color: rgba(255, 255, 255, 0.75);
}

.promise-stats {
  flex: 0.6;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
}

.daycare-page .stat-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PREMIUM FEATURES (Daycare) ===== */
.features-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card-premium {
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(94, 206, 197, 0.12);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.feature-icon-premium {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 125, 184, 0.12), rgba(94, 206, 197, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s, background 0.25s;
}

.feature-icon-premium svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  stroke-width: 1.75;
}

.feature-card-premium:hover .feature-icon-premium {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
}

.feature-card-premium:hover .feature-icon-premium svg {
  stroke: var(--teal-dark);
}

.feature-card-premium h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card-premium p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== SCHEDULE CARDS (Daycare) ===== */
.schedule-section {
  background: linear-gradient(180deg, var(--off-white), #EEEDF8);
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.schedule-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(78, 205, 196, 0.12);
  border-top: 4px solid var(--card-accent, var(--teal));
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.schedule-card-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-accent, var(--teal));
  margin-bottom: 12px;
}

.schedule-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent, var(--teal)) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.25s;
}

.schedule-card:hover .schedule-card-icon {
  transform: scale(1.1);
}

.schedule-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--card-accent, var(--teal));
  stroke-width: 1.75;
}

.schedule-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.schedule-card p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  background: var(--white);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--navy) 0%, #2D1E50 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.teal-testimonial {
  background: linear-gradient(135deg, #1a3a3a 0%, #0d4f4f 100%);
}

.testimonial-quote {
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--teal-light);
  font-weight: 600;
}

/* ===== PREMIUM PROGRAMS GRID (Academy) ===== */
.programs-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.program-card-premium {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px 28px;
  border: 1px solid rgba(94, 206, 197, 0.12);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  text-align: center;
}

.program-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.program-icon-premium {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 125, 184, 0.12), rgba(94, 206, 197, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.25s, background 0.25s;
}

.program-icon-premium svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  stroke-width: 1.75;
}

.program-card-premium:hover .program-icon-premium {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
}

.program-card-premium:hover .program-icon-premium svg {
  stroke: var(--teal-dark);
}

.program-card-premium h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.program-card-premium p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-top: 8px;
}

/* ===== WHAT SETS US APART (Academy) ===== */
.apart-section {
  background: linear-gradient(180deg, var(--off-white), #E6F8F6);
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.apart-item {
  text-align: center;
  padding: 32px 20px;
}

.apart-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.4;
}

.apart-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.apart-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }

  .hero-headline { font-size: 2.5rem; }

  .hero-logos {
    gap: 28px;
  }

  .hero-logo-link {
    width: 280px;
    height: 280px;
  }

  .hero-logo-card {
    width: 240px;
    min-height: 300px;
  }

  .page-hero-logo {
    height: 280px;
  }

  .promise-grid {
    flex-direction: column;
    gap: 32px;
  }

  .features-grid {
    gap: 20px;
  }

  .features-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .programs-grid-premium {
    gap: 16px;
  }

  .schedule-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .apart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .program-card {
    padding: 24px 16px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .section {
    padding: 72px 24px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .cta-booking-form {
    max-width: 100%;
    padding: 0 12px;
  }

  .instagram-card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #1a1235 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    z-index: 99999 !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
  }

  .nav-hamburger {
    display: flex;
    z-index: 999999;
    position: relative;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 48px 20px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .hero-headline br { display: none; }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .btn-warm-primary,
  .btn-warm-secondary {
    font-size: 0.85rem;
    padding: 12px 18px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-trust-item {
    font-size: 0.85rem;
  }

  .trust-check {
    display: none;
  }

  .hero-logos {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
  }

  .home-lego {
    display: none;
  }

  .hero-logo-link {
    width: 45%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1;
  }

  .hero-logo-card {
    width: 240px;
    min-height: 300px;
  }

  .page-hero-logo {
    height: 180px;
  }

  .academy-hero .page-hero-logo {
    height: 210px;
  }

  .cta-band .btn,
  .btn-warm-primary {
    background: var(--teal);
    color: var(--white);
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 100%;
    width: 100%;
  }

  .promise-grid {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .promise-text {
    flex: 1;
  }

  .promise-text h2 {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .promise-lead {
    font-size: 0.9rem;
  }

  .promise-text p {
    font-size: 0.85rem;
  }

  .promise-stats {
    flex-direction: column;
    flex: 0 0 auto;
    gap: 12px;
  }

  .stat-item {
    padding: 16px 14px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .features-grid-premium {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card-premium {
    padding: 20px 14px;
  }

  .feature-card-premium h3 {
    font-size: 0.95rem;
  }

  .feature-card-premium p {
    font-size: 0.8rem;
  }

  .feature-icon-premium {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .programs-grid-premium {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .apart-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .apart-item {
    padding: 24px 16px;
  }

  .schedule-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .schedule-card {
    padding: 20px 14px;
  }

  .testimonial-card {
    padding: 40px 28px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    flex: 0 0 260px;
    min-height: 140px;
    padding: 22px 18px;
  }

  .review-form-wrap {
    padding: 24px 18px;
    margin-top: 32px;
  }

  .review-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .program-card {
    padding: 24px 16px;
  }

  .section {
    padding: 56px 20px;
  }

  .page-hero {
    padding: 56px 20px 48px;
  }

  .cta-band {
    padding: 48px 20px;
  }

  .cta-band .phone-number {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .page-hero p {
    font-size: 1.05rem;
  }

  .page-video-bg {
    object-fit: cover;
    object-position: center center;
  }

  .cta-booking-form {
    max-width: 100%;
    padding: 0;
  }

  .cta-booking-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-booking-form .form-group textarea {
    min-height: 100px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-left: 0;
  }

  .footer-logo {
    height: 140px;
  }

  .footer-logo-academy {
    height: 180px;
  }

  .instagram-card {
    padding: 18px 20px;
    gap: 14px;
  }

  .instagram-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .instagram-icon svg {
    width: 22px;
    height: 22px;
  }

  .instagram-text strong {
    font-size: 0.95rem;
  }

  .instagram-text span {
    font-size: 0.8rem;
  }

  .thankyou-content {
    padding: 80px 24px;
  }

  .thankyou-content h1 {
    font-size: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .schedule-card {
    padding: 14px 10px;
  }

  .schedule-card h3 {
    font-size: 0.85rem;
  }

  .schedule-card p {
    font-size: 0.75rem;
  }

  .apart-item {
    padding: 16px 12px;
  }

  .apart-item h3 {
    font-size: 0.9rem;
  }

  .apart-item p {
    font-size: 0.78rem;
  }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 1.75rem; }

  .hero-logo-link {
    width: 44%;
    max-width: 140px;
  }

  .page-hero-logo {
    height: 140px;
  }

  .hero-logo-card {
    width: 160px;
    min-height: 200px;
  }
  .logo-k { height: 100px; }
  .logo-k-bars span { height: 80px; width: 7px; }
  .logo-name { font-size: 1rem; }
  .logo-program { font-size: 0.9rem; }

  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .program-card {
    padding: 20px 12px;
  }

  .program-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .program-card h3 {
    font-size: 0.95rem;
  }
}

