/* ==========================================================================
   CHILDIT KINDERGARTEN THEME - KALPAVRIKSHALAYA MONTESSORI
   Exact Match to Childit Reference Design
   Palette: Navy Blue (#0A1D37), Vibrant Orange (#FF5722), Hot Pink (#FF2A6D),
            Sunshine Yellow (#FFD200), Mint Green (#4CD137), Sky Blue (#00A8FF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Quicksand:wght@500;600;700&display=swap');

:root {
  /* Childit Theme Colors from Screenshot */
  --childit-navy: #0c3670;
  --childit-navy-light: #6638b1;
  --childit-navy-dark: #a812ff;

  --childit-orange: #FF5722;
  --childit-orange-hover: #E64A19;

  --childit-pink: #FF2A6D;
  --childit-pink-hover: #E01E5A;

  --childit-yellow: #FFD200;
  --childit-yellow-hover: #FFC400;

  --childit-blue: #00A8FF;
  --childit-green: #4CD137;
  --childit-purple: #8C7AE6;

  /* Neutrals */
  --bg-page: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-yellow-light: #FFF9E6;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;

  /* Typography */
  --font-heading: 'Fredoka', 'Quicksand', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Radius & Shadows */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 15px rgba(10, 29, 55, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 29, 55, 0.08);
  --shadow-lg: 0 20px 45px rgba(10, 29, 55, 0.12);
  --shadow-orange: 0 4px 14px rgba(10, 29, 55, 0.08);
  --shadow-pink: 0 4px 14px rgba(10, 29, 55, 0.08);
  --shadow-yellow: 0 4px 14px rgba(10, 29, 55, 0.08);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--childit-navy);
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR (Dark Navy Bar from Screenshot)
   ========================================================================== */
.top-bar {
  background: var(--childit-navy);
  color: #E2E8F0;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-item svg {
  color: var(--childit-yellow);
}

.social-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #FFF;
  transition: all 0.25s ease;
}

.social-pill-link:hover {
  background: var(--childit-pink);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR (Clean White with Pink CTA)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--childit-pink);
  background: rgba(255, 42, 109, 0.08);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF;
  min-width: 270px;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: var(--bg-yellow-light);
  color: #B45309;
  padding-left: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

/* ==========================================================================
   BUTTONS & BADGES (Childit Exact Styles)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.btn-pink {
  background: var(--childit-pink);
  color: #FFF;
  box-shadow: var(--shadow-pink);
}

.btn-pink:hover {
  background: var(--childit-pink-hover);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--childit-yellow);
  color: var(--childit-navy);
  box-shadow: var(--shadow-yellow);
}

.btn-yellow:hover {
  background: var(--childit-yellow-hover);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--childit-orange);
  color: #FFF;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--childit-orange-hover);
  transform: translateY(-2px);
}

.badge-pink {
  display: inline-block;
  background: #FFE8EF;
  color: var(--childit-pink);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* ==========================================================================
   SECTION 1: HERO WITH FLOATING ORANGE CARD
   ========================================================================== */
.hero-full-banner {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-orange-card {
  position: relative;
  z-index: 2;
  background: var(--childit-orange);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 480px;
  box-shadow: var(--shadow-orange);
  animation: fadeIn 0.6s ease;
}

.hero-orange-card h1 {
  color: #FFF;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-orange-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 2: WELCOME / THE HOME FOR EARLY CHILDHOOD
   ========================================================================== */
.welcome-section {
  padding: 80px 0 60px;
  background: #FFF;
  text-align: center;
}

.welcome-title-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto 50px;
}

.welcome-title {
  font-size: 2.8rem;
  line-height: 1.25;
  margin-bottom: 14px;
}

.welcome-title .blue-accent {
  color: var(--childit-blue);
}

/* Floating cartoon doodles around heading */
.doodle-speech {
  position: absolute;
  left: -50px;
  top: 10px;
  width: 45px;
  animation: floatAnim 3s ease-in-out infinite;
}

.doodle-star {
  position: absolute;
  right: -40px;
  top: 15px;
  width: 40px;
  animation: floatAnim 4s ease-in-out infinite;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  margin-bottom: 50px;
}

.welcome-img-frame {
  position: relative;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.welcome-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navy Address & Timings Strip */
.navy-info-strip {
  background: var(--childit-navy);
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}

.navy-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.navy-strip-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--childit-yellow);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.navy-strip-item h5 {
  color: var(--childit-yellow);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.navy-strip-item p {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   SECTION 3: 4 OVERLAPPING CARDS FAN ("Why Choose Little Stars")
   ========================================================================== */
.cards-fan-section {
  padding: 80px 0 90px;
  background: #FFF;
  text-align: center;
}

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

.fan-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #FFF;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fan-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.fan-card-1 {
  background: linear-gradient(180deg, #00A8FF 0%, #0080FF 100%);
  transform: rotate(-2deg);
}

.fan-card-2 {
  background: linear-gradient(180deg, #FFAA00 0%, #FF8800 100%);
  transform: rotate(-1deg);
}

.fan-card-3 {
  background: linear-gradient(180deg, #4CD137 0%, #38B020 100%);
  transform: rotate(1deg);
}

.fan-card-4 {
  background: linear-gradient(180deg, #8C7AE6 0%, #6C5CE7 100%);
  transform: rotate(2deg);
}

.fan-card-img {
  border-radius: var(--radius-md);
  height: 180px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.fan-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fan-card h4 {
  color: #FFF;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.fan-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4: SPECIAL PROGRAMS (Solid Vibrant Orange Section)
   ========================================================================== */
.orange-programs-section {
  background: var(--childit-orange);
  color: #FFF;
  padding: 80px 0 100px;
  position: relative;
}

.orange-section-header {
  margin-bottom: 40px;
}

.orange-section-header h2 {
  color: #FFF;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.orange-section-header p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.orange-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.white-program-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.white-program-card:hover {
  transform: translateY(-6px);
}

.white-card-thumb {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.white-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.white-card-content h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.white-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.nav-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--childit-purple);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   SECTION 5: OUR CLASSES (3 Cards with Yellow Bottom Banner)
   ========================================================================== */
.classes-section {
  padding: 90px 0;
  background: #FFF;
  text-align: center;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.class-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.class-card-thumb {
  height: 220px;
  overflow: hidden;
}

.class-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card:hover .class-card-thumb img {
  transform: scale(1.06);
}

.class-card-body {
  padding: 26px 24px 18px;
  flex: 1;
  text-align: center;
}

.class-card-body h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.class-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.class-card-footer {
  background: #FFF9E6;
  border-top: 1px dashed #FADAA2;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #7A5310;
}

/* ==========================================================================
   SECTION 6: STATS & OVERLAPPING CIRCLES ON GREEN HILL
   ========================================================================== */
.stats-section {
  padding: 90px 0;
  background: #F8FAFC;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.bubbles-cluster {
  position: relative;
  height: 340px;
}

.stat-bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  border: 6px solid #FFF;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.stat-bubble:hover {
  transform: scale(1.08);
}

.bubble-1 {
  width: 140px;
  height: 140px;
  background: var(--childit-orange);
  top: 10px;
  left: 30px;
}

.bubble-2 {
  width: 120px;
  height: 120px;
  background: var(--childit-blue);
  top: 20px;
  right: 50px;
}

.bubble-3 {
  width: 130px;
  height: 130px;
  background: var(--childit-purple);
  bottom: 20px;
  left: 110px;
}

.bubble-4 {
  width: 135px;
  height: 135px;
  background: var(--childit-yellow);
  color: var(--childit-navy);
  bottom: 30px;
  right: 20px;
}

.stat-bubble-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-bubble-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==========================================================================
   SECTION 7: DARK NAVY SAFETY & ACTIVITIES SECTION
   ========================================================================== */
.navy-safety-section {
  background: var(--childit-navy);
  color: #FFF;
  padding: 90px 0;
  position: relative;
}

.navy-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.safety-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.safety-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #E2E8F0;
}

.safety-feature-item svg {
  color: var(--childit-yellow);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 8: TESTIMONIALS (Big Quote & Parent Avatar)
   ========================================================================== */
.testimonial-section {
  padding: 90px 0;
  background: #FFF;
  text-align: center;
  position: relative;
}

.quote-big-text {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--text-dark);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 30px;
  position: relative;
}

.parent-avatar-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.parent-avatar-badge img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--childit-yellow);
  margin-bottom: 8px;
}

/* ==========================================================================
   SECTION 9: EVENTS / NOTICE BOARD
   ========================================================================== */
.events-section {
  padding: 90px 0;
  background: var(--bg-soft);
}

.events-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.event-orange-card {
  background: var(--childit-orange);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-orange);
}

.event-white-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   SECTION 10: ADMISSION INQUIRY FORM (Dark Navy with Pink Box)
   ========================================================================== */
.navy-form-section {
  background: var(--childit-navy);
  color: #FFF;
  padding: 90px 0;
}

.navy-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.navy-pink-box {
  background: var(--childit-pink);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: #FFF;
  margin-top: 24px;
  box-shadow: var(--shadow-pink);
}

.navy-pink-box h4 {
  color: #FFF;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.navy-pink-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.navy-pink-item svg {
  color: var(--childit-yellow);
}

/* Form Inputs */
.navy-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.navy-form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
}

.navy-form-control:focus {
  border-color: var(--childit-yellow);
  background: rgba(255, 255, 255, 0.15);
}

.navy-form-control option {
  background: var(--childit-navy);
  color: #FFF;
}

/* ==========================================================================
   SECTION 11: RECENT NEWS (3 Blog Cards)
   ========================================================================== */
.news-section {
  padding: 90px 0;
  background: #FFF;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.news-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-card-thumb {
  height: 200px;
  overflow: hidden;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--childit-orange);
  font-weight: 700;
  margin-bottom: 6px;
}

.news-card h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ==========================================================================
   SECTION 12: NAVY FOOTER (Exact Match)
   ========================================================================== */
.site-footer {
  background: var(--childit-navy);
  color: #94A3B8;
  padding-top: 70px;
  position: relative;
  margin-top: auto;
  margin-bottom: 0 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h4 {
  color: #FFF;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #CBD5E1;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--childit-yellow);
  padding-left: 6px;
}

.newsletter-box {
  display: flex;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  outline: none;
}

.newsletter-btn {
  background: var(--childit-yellow);
  color: var(--childit-navy);
  border: none;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.9rem;
  margin-bottom: 0 !important;
}

/* Lightbox Modal (Out of Document Flow to Prevent Whitespace) */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 29, 55, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.lightbox-modal.is-open,
.lightbox-modal.show {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFD200;
  color: #0A1D37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(10, 29, 55, 0.22);
  cursor: pointer;
  border: 3px solid #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 99999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #FF2A6D;
  color: #FFFFFF;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 14px 32px rgba(255, 42, 109, 0.35);
}

.back-to-top:hover svg {
  stroke: #FFFFFF;
}

.back-to-top:active {
  transform: scale(0.95);
}

/* Keyframes */
@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {

  .welcome-grid,
  .orange-cards-row,
  .stats-grid,
  .navy-safety-grid,
  .navy-form-grid,
  .events-row {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .cards-fan-grid,
  .classes-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .navy-info-strip {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #FFF;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   ENHANCEMENTS: OUTDOOR BANNER, NEWSLETTER STRIP, & SLIDER BUTTONS
   ========================================================================== */
.outdoor-banner-section {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin: 40px 0;
  border-radius: 40px;
}

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

.outdoor-banner-mask-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.outdoor-banner-mask-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.orange-newsletter-strip {
  background: var(--childit-orange);
  color: #FFF;
  padding: 60px 0;
  position: relative;
}

.orange-newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.orange-newsletter-text h3 {
  color: #FFF;
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.orange-newsletter-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin: 0;
}

.orange-newsletter-form {
  display: flex;
  background: #FFF;
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 22px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.orange-newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
}

.orange-newsletter-form .btn-subscribe {
  background: var(--childit-yellow);
  color: var(--childit-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.orange-newsletter-form .btn-subscribe:hover {
  background: var(--childit-yellow-hover);
  transform: scale(1.03);
}

.slider-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.slider-nav-blue {
  background: var(--childit-blue);
  color: #FFF;
}

.slider-nav-blue:hover {
  background: #0090E0;
  transform: scale(1.08);
}

.slider-nav-purple {
  background: var(--childit-purple);
  color: #FFF;
}

.slider-nav-purple:hover {
  background: #7562D8;
  transform: scale(1.08);
}

.slider-nav-navy {
  background: var(--childit-navy);
  color: #FFF;
}

.slider-nav-navy:hover {
  background: var(--childit-pink);
  transform: scale(1.08);
}

.doodle-float {
  display: inline-block;
  animation: floatAnim 3.5s ease-in-out infinite;
}

.hero-overlay-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
}

/* ==========================================================================
   LITTLE SPROUTS SUBPAGE HERO BANNER (Navy Canvas with Daisy & Doodles)
   ========================================================================== */
.page-hero-banner {
  background-color: #0c3670;
  padding: 65px 0 60px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.page-hero-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.page-hero-doodle-left {
  top: 25%;
  left: 6%;
  width: 75px;
  height: 75px;
  animation: floatSubtle 4s ease-in-out infinite;
}

.page-hero-doodle-right {
  top: 25%;
  right: 6%;
  width: 70px;
  height: 70px;
  animation: floatSubtle 3.5s ease-in-out infinite reverse;
}

.page-hero-title {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 3.4rem;
  color: #FFFFFF !important;
  margin: 14px 0;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.18;
}

.page-hero-title .blue-accent {
  color: #00A8FF !important;
}

.page-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.7;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 16px;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 9999px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 0.92rem;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 10px;
}

.breadcrumb-pill a {
  color: #FFD200;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-pill a:hover {
  text-decoration: underline;
}

.breadcrumb-pill span {
  color: #FFFFFF;
  font-weight: 500;
}

/* ==========================================================================
   REGISTRATION FORM & ADMISSION CARDS
   ========================================================================== */
.reg-container {
  max-width: 960px;
  margin: 0 auto;
}

.reg-section-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.reg-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--childit-orange);
}

.reg-card-pink::before {
  background: var(--childit-pink);
}

.reg-card-yellow::before {
  background: var(--childit-yellow);
}

.reg-card-blue::before {
  background: var(--childit-blue);
}

.reg-card-green::before {
  background: var(--childit-green);
}

.reg-card-purple::before {
  background: var(--childit-purple);
}

.reg-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.reg-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--bg-yellow-light);
}

.reg-section-header h3 {
  font-size: 1.5rem;
  color: var(--childit-navy);
  margin: 0;
}

.reg-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reg-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.reg-form-group {
  margin-bottom: 18px;
}

.reg-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--childit-navy);
  margin-bottom: 6px;
}

.reg-label .required {
  color: var(--childit-pink);
  margin-left: 2px;
}

.reg-input,
.reg-select,
.reg-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #CBD5E1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #FFF;
  transition: all 0.25s ease;
  outline: none;
}

.reg-input:focus,
.reg-select:focus,
.reg-textarea:focus {
  border-color: var(--childit-orange);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.15);
}

.file-upload-box {
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  background: var(--bg-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.file-upload-box:hover {
  border-color: var(--childit-orange);
  background: #FFF9F5;
}

.file-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.signature-canvas-wrap {
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-md);
  background: #FAFAFA;
  padding: 12px;
  text-align: center;
  position: relative;
}

#signatureCanvas {
  background: #FFF;
  border-radius: 8px;
  cursor: crosshair;
  touch-action: none;
  border: 1px solid #E2E8F0;
  width: 100%;
  max-width: 500px;
  height: 160px;
  display: block;
  margin: 0 auto;
}

/* Status Badges */
.badge-status-pending {
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFEBAA;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-approved {
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-rejected {
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-contacted {
  background: #CCE5FF;
  color: #004085;
  border: 1px solid #B8DAFF;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   ADMIN PORTAL STYLES
   ========================================================================== */
.admin-header {
  background: var(--childit-navy);
  color: #FFF;
  padding: 16px 0;
  border-bottom: 4px solid var(--childit-yellow);
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-stat-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.admin-stat-num {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  color: var(--childit-navy);
}

.admin-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: #F1F5F9;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--childit-navy);
  border-bottom: 2px solid var(--border-color);
}

.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #EDF2F7;
  font-size: 0.95rem;
  vertical-align: middle;
}

.admin-table tr:hover {
  background: #F8FAFC;
}

/* Print Styles */
@media print {

  .no-print,
  .site-header,
  .site-footer,
  .top-bar,
  .wave-divider {
    display: none !important;
  }

  body {
    background: #FFF !important;
    color: #000 !important;
  }

  .print-page {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {

  .reg-grid-2,
  .reg-grid-3 {
    grid-template-columns: 1fr;
  }

  .page-hero-title {
    font-size: 2.3rem;
  }

  .page-hero-doodle {
    display: none;
  }
}

/* ==========================================================================
   EXACT MATCH: HOME HERO & FLOATING HEADER FROM SCREENSHOT
   Font: Fredoka (Headings/Buttons/Pills/Nav), Nunito (Body/Meta)
   ========================================================================== */

/* Top Navy Announcement Strip */
.home-top-strip {
  background-color: #0c3670;
  color: #FFFFFF;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  z-index: 150;
}

.home-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: nowrap;
  min-height: 32px;
}

.top-announcement-text {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  z-index: 2;
}

.top-announcement-badge,
.top-announcement-text span:first-child {
  font-weight: 700;
  background: rgba(255, 210, 0, 0.22);
  color: #FFD200;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 210, 0, 0.4);
}

.top-announcement-desc,
.top-announcement-text span:last-child {
  color: #FFFFFF;
  font-weight: 500;
}

.top-corner-daisy-wrap,
.top-daisy-wrap {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  pointer-events: none;
}

.top-corner-daisy {
  width: 52px;
  height: 52px;
  display: block;
  opacity: 1 !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
  animation: gentleDaisySpin 24s linear infinite;
}

.top-left-doodle {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

/* Floating White Header Card with Navy Backdrop matching Hero Section */
.home-floating-header-container {
  position: relative;
  background-color: #0c3670;
  margin-top: 0;
  z-index: 100;
  padding: 0 24px 0px 24px;
}

.home-floating-header-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(10, 29, 55, 0.25);
  padding: 14px 34px 16px 34px;
  position: relative;
  border: 1px solid rgba(10, 29, 55, 0.06);
  max-width: 1360px;
  margin: 0 auto;
}

/* Card Top Sub-row (Contacts Centered in Header Card) */
.header-card-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.85rem;
  color: #555E6D;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.header-card-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0 auto;
}

.card-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #555E6D;
}

.yellow-icon-box {
  width: 24px;
  height: 24px;
  background: #FFD200;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-card-meta a {
  color: #555E6D;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.header-card-meta a:hover {
  color: #FF5722;
}

.sep-line {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #CBD5E1;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

/* Dotted Divider */
.card-dotted-divider {
  border-top: 1.5px dotted #CBD5E1;
  margin: 12px 0 14px 0;
}

/* Card Main Row: Logo, Nav, Action Buttons */
.header-card-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 20px;
}

/* Logo Little Sprouts */
.little-sprouts-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.sprouts-logo-icon {
  display: inline-flex;
  align-items: center;
}

.sprouts-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 800;
  color: #0A1D37;
}

.sprouts-line1 {
  font-size: 1.45rem;
  letter-spacing: -0.5px;
}

.sprouts-line2 {
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  margin-top: 1px;
}

/* Single Line Nav */
.home-single-line-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-pill-home {
  background: #FF2A6D;
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 42, 109, 0.35);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.nav-pill-home:hover {
  background: #e01e5a;
  transform: translateY(-1px);
}

.single-line-link {
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0A1D37;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.single-line-link:hover {
  color: #FF5722;
}

/* Right Action Buttons */
.header-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-search-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFD200;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10, 29, 55, 0.08);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.btn-search-round:hover {
  transform: scale(1.06);
}

.btn-enroll-now {
  background: #FF2A6D;
  color: #FFFFFF !important;
  border-radius: 9999px;
  padding: 6px 6px 6px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 5px 16px rgba(255, 42, 109, 0.35);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.btn-enroll-now:hover {
  background: #e01e5a;
  transform: translateY(-1px);
}

.enroll-pencil-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFD200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   STICKY FULL-WIDTH HEADER ON SCROLL (PAST/UP HERO SECTION)
   ========================================================================== */
.home-floating-header-container.is-sticky-fullwidth {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  z-index: 9999 !important;
  animation: headerSlideDown 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 10px 32px rgba(10, 29, 55, 0.12) !important;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-floating-header-container.is-sticky-fullwidth .header-card-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-floating-header-container.is-sticky-fullwidth .home-floating-header-card {
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(10, 29, 55, 0.08) !important;
  box-shadow: none !important;
  padding: 10px 36px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  width: 100% !important;
  max-width: 100% !important;
  transition: all 0.3s ease;
}

/* In sticky full-width mode, hide the top contact row & dotted divider for an ultra-clean navbar */
.home-floating-header-container.is-sticky-fullwidth .header-card-top-row,
.home-floating-header-container.is-sticky-fullwidth .card-dotted-divider {
  display: none !important;
}

.home-floating-header-container.is-sticky-fullwidth .header-card-main-row {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* ==========================================================================
   EXACT CLASSROOM HERO SECTION (REDUCED WIDTH FRAMED BANNER MATCHING SCREENSHOT)
   ========================================================================== */
/* Outer canvas with Dark Navy background showing on left/right sides */
.home-hero-backdrop {
  background-color: #0c3670;
  padding: 0 20px 0px 20px;
  position: relative;
  overflow: hidden;
}

/* Reduced width framed hero section */
.home-exact-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 480px;
  max-height: 520px;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 0px 0px 28px 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  padding: 40px 36px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-content-relative {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Exact Vibrant Pink Card with Inset Dashed Border */
.exact-pink-card,
.exact-orange-card {
  background: #FF2A6D;
  background: linear-gradient(135deg, #FF3377 0%, #E01E5A 100%);
  border-radius: 28px;
  padding: 42px 42px 36px 42px;
  max-width: 520px;
  position: relative;
  box-shadow: 0 20px 48px rgba(255, 42, 109, 0.38);
  outline: 2px dashed rgba(255, 255, 255, 0.5);
  outline-offset: -12px;
  margin-bottom: 6px;
}

.exact-hero-title {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.exact-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 440px;
  opacity: 0.95;
}

.exact-btn-wrap {
  display: block;
}

.btn-discovery {
  background: #FFD200;
  color: #0A1D37 !important;
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 32px;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(10, 29, 55, 0.1);
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-discovery:hover {
  background: #ffc400;
  transform: translateY(-2px);
}

/* Bottom-Right Arrow Circle Buttons */
.hero-bottom-arrows {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  margin-right: 6px;
}

.hero-arrow-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFD200;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s, background 0.2s;
}

.hero-arrow-circle:hover {
  background: #ffc400;
  transform: scale(1.06);
}

/* ==========================================================================
   ANIMATION FOR EACH SECTION (SCROLL-TRIGGERED & MICRO-INTERACTIONS)
   ========================================================================== */

/* Section base styling */
section {
  visibility: visible;
}

/* Smooth progressive reveal when entering viewport */
.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero section is visible right away with bouncy entrance */
.home-exact-hero {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.animate-hero-card {
  animation: heroCardBounceIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes heroCardBounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  70% {
    transform: translateY(-4px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-hero-arrows {
  animation: heroArrowsSlideIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroArrowsSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered cards entrance inside revealed sections */
.is-revealed .welcome-img-frame,
.is-revealed .card-fan-item,
.is-revealed .program-card,
.is-revealed .class-item,
.is-revealed .stat-card,
.is-revealed .event-card,
.is-revealed .news-card,
.is-revealed .testimonial-card,
.is-revealed .navy-strip-item,
.is-revealed .navy-safety-item,
.is-revealed .feature-card,
.is-revealed .team-card,
.is-revealed .gallery-item {
  animation: cardFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-revealed .card-fan-item:nth-child(2),
.is-revealed .program-card:nth-child(2),
.is-revealed .class-item:nth-child(2),
.is-revealed .stat-card:nth-child(2),
.is-revealed .event-card:nth-child(2),
.is-revealed .news-card:nth-child(2),
.is-revealed .team-card:nth-child(2),
.is-revealed .gallery-item:nth-child(2),
.is-revealed .navy-strip-item:nth-child(2) {
  animation-delay: 0.15s;
}

.is-revealed .card-fan-item:nth-child(3),
.is-revealed .program-card:nth-child(3),
.is-revealed .class-item:nth-child(3),
.is-revealed .stat-card:nth-child(3),
.is-revealed .event-card:nth-child(3),
.is-revealed .news-card:nth-child(3),
.is-revealed .team-card:nth-child(3),
.is-revealed .gallery-item:nth-child(3),
.is-revealed .navy-strip-item:nth-child(3) {
  animation-delay: 0.3s;
}

.is-revealed .card-fan-item:nth-child(4),
.is-revealed .program-card:nth-child(4),
.is-revealed .class-item:nth-child(4),
.is-revealed .stat-card:nth-child(4),
.is-revealed .team-card:nth-child(4),
.is-revealed .gallery-item:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating micro-animations for playful doodles */
.doodle-speech,
.doodle-star,
.top-daisy-wrap {
  animation: floatSubtle 4s ease-in-out infinite;
}

@keyframes floatSubtle {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2.5deg);
  }
}

/* Interactive Card Hover Lifts */
.card-fan-item:hover,
.program-card:hover,
.class-item:hover,
.event-card:hover,
.news-card:hover,
.feature-card:hover,
.team-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 42px rgba(10, 29, 55, 0.14);
}

/* Badge Pulse */
.badge-pink,
.section-badge {
  display: inline-block;
  animation: badgePulse 3.5s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ==========================================================================
   SUBPAGES: STRICTLY SINGLE LINE NAVIGATION ENFORCEMENT
   ========================================================================== */
.single-line-header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  gap: 20px;
  width: 100%;
}

.single-line-nav-menu {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  gap: 22px;
}

.single-line-nav-menu .nav-link {
  white-space: nowrap !important;
  font-family: 'Fredoka', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .home-floating-header-card {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-floating-header-card::-webkit-scrollbar {
    display: none;
  }

  .home-hero-backdrop {
    padding: 0 16px 28px 16px;
  }
}

@media (max-width: 900px) {
  .exact-hero-title {
    font-size: 2.4rem;
  }

  .exact-orange-card {
    padding: 30px 28px;
    max-width: 100%;
  }

  .home-exact-hero {
    min-height: 520px;
    padding: 24px 20px 24px 20px;
  }

  .home-hero-backdrop {
    padding: 0 10px 20px 10px;
  }
}

/* =========================================================================
   LAYOUT HEADER & FOOTER CLASSES (for app.blade.php)
   ========================================================================= */
.header-contact-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.header-site-logo {
  height: 76px;
  max-height: 82px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, height 0.25s ease;
}

.header-site-logo:hover {
  transform: scale(1.03);
}

.home-floating-header-container.is-sticky-fullwidth .header-site-logo {
  height: 56px;
  max-height: 60px;
}

.nav-dropdown-wrap {
  display: inline-block;
}

.footer-wave-divider {
  background: transparent;
  margin-bottom: -11px;
}

.footer-wave-divider svg {
  height: 50px;
  width: 100%;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-link {
  display: inline-block;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.footer-motto-tag {
  color: var(--primary-yellow);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-reg-link {
  color: var(--childit-yellow);
  font-weight: 700;
}

.footer-contact-address {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.footer-contact-phone {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-contact-phone-link {
  color: var(--primary-yellow);
}

.footer-contact-email {
  font-size: 0.95rem;
}

.footer-contact-email-link {
  color: var(--accent-sky);
}

.footer-bottom-info {
  font-size: 0.85rem;
  color: #8F9CAE;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-admin-link {
  color: #CBD5E1;
  text-decoration: underline;
}

/* ==========================================================================
   MOBILE APP RESPONSIVE EXPERIENCE (Header Drawer, Bottom Bar & Touch Nav)
   ========================================================================== */

/* 1. Mobile Hamburger Toggle Button (Header) */
.mobile-nav-toggle {
  display: none; /* Desktop default */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1.5px solid rgba(12, 54, 112, 0.15);
  background: #F8FAFC;
  color: var(--childit-navy);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(10, 29, 55, 0.06);
  flex-shrink: 0;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  background: #FFF4D6;
  border-color: var(--childit-yellow);
  transform: translateY(-1px);
}

/* 3-Line Hamburger Animation */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--childit-navy);
  border-radius: 3px;
  transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.25s ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-active .hamburger-line.line-1 {
  transform: translateY(7px) rotate(45deg);
  background-color: #FF5500;
}

.mobile-nav-toggle.is-active .hamburger-line.line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.is-active .hamburger-line.line-3 {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #FF5500;
}

.hamburger-box {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 2.5px;
  background-color: var(--childit-navy);
  border-radius: 3px;
  position: absolute;
  transition: transform 0.25s ease, background-color 0.25s ease, top 0.25s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
}

.mobile-nav-toggle.is-active .hamburger-inner {
  background-color: transparent;
}

.mobile-nav-toggle.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #FF5500;
}

.mobile-nav-toggle.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #FF5500;
}

/* 2. Mobile Drawer Backdrop Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(12, 54, 112, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.mobile-drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 3. Mobile App Slide-in Drawer */
.mobile-app-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  background: #FFFFFF;
  box-shadow: -12px 0 40px rgba(10, 29, 55, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-app-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 54, 112, 0.08);
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
  flex-shrink: 0;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-brand-text {
  display: flex;
  flex-direction: column;
}

.mobile-brand-title {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--childit-navy);
  line-height: 1.15;
}

.mobile-brand-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #F1F5F9;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #FFE4E6;
  color: #E11D48;
  transform: rotate(90deg);
}

.mobile-drawer-body {
  padding: 16px 18px 24px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.mobile-drawer-body::-webkit-scrollbar {
  width: 5px;
}

.mobile-drawer-body::-webkit-scrollbar-thumb {
  background-color: #CBD5E1;
  border-radius: 10px;
}

/* Drawer Navigation Links */
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #334155;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  background: transparent;
}

.mobile-nav-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav-link:hover {
  background: #F1F5F9;
  color: var(--childit-navy);
  transform: translateX(4px);
}

.mobile-nav-link.active {
  background: rgba(12, 54, 112, 0.08);
  color: var(--childit-navy);
  font-weight: 700;
  border-left: 4px solid var(--childit-yellow);
}

/* Mobile Drawer Dropdown (Programs) */
.mobile-nav-dropdown {
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.mobile-nav-dropdown.active-group {
  background: #F8FAFC;
}

.mobile-nav-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: #334155;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.22s ease;
}

.mobile-nav-dropdown-toggle .mobile-nav-text {
  flex: 1;
}

.mobile-dropdown-chevron {
  transition: transform 0.28s ease;
  color: #94A3B8;
}

.mobile-nav-dropdown.open .mobile-dropdown-chevron {
  transform: rotate(180deg);
  color: var(--childit-navy);
}

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  padding: 4px 8px 10px 38px;
  gap: 4px;
}

.mobile-nav-dropdown.open .mobile-sub-menu {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  color: #475569;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-sub-link:hover {
  background: #EFF6FF;
  color: var(--childit-navy);
  transform: translateX(3px);
}

.mobile-sub-all {
  color: var(--childit-navy);
  font-weight: 800;
  border-top: 1px dashed rgba(12, 54, 112, 0.12);
  margin-top: 4px;
  padding-top: 10px;
}

/* Mobile Drawer CTAs */
.mobile-drawer-cta {
  margin-top: 4px;
}

.mobile-drawer-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 16px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.45);
  text-decoration: none;
}

/* Drawer Contact Card */
.mobile-drawer-contact-box {
  background: #F8FAFC;
  border: 1px solid rgba(12, 54, 112, 0.08);
  border-radius: 18px;
  padding: 16px;
  margin-top: auto;
}

.mobile-contact-title {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--childit-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.mobile-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-quick-btn.call-btn {
  background: var(--childit-navy);
  color: #FFFFFF;
}

.mobile-quick-btn.call-btn:hover {
  background: #082348;
}

.mobile-quick-btn.wa-btn {
  background: #25D366;
  color: #FFFFFF;
}

.mobile-quick-btn.wa-btn:hover {
  background: #1EBE5D;
}

.mobile-contact-address {
  font-size: 0.76rem;
  color: #64748B;
  line-height: 1.4;
}

/* ==========================================================================
   4. TOP ANNOUNCEMENT STRIP MOBILE RESPONSIVENESS
   ("Nurturing - Small steps in a nurturing environment create a lifetime of possibilities.")
   ========================================================================== */
@media (max-width: 991px) {
  .home-top-strip {
    padding: 10px 16px;
    overflow: hidden;
  }

  .home-top-inner {
    flex-wrap: wrap !important;
    white-space: normal !important;
    text-align: center;
    min-height: auto;
  }

  .top-announcement-text {
    white-space: normal !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    font-size: 0.92rem;
  }

  .top-corner-daisy-wrap,
  .top-daisy-wrap,
  .top-left-doodle {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .home-top-strip {
    padding: 8px 12px;
  }

  .home-top-inner {
    padding: 0;
  }

  .top-announcement-text {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    width: 100%;
  }

  .top-announcement-badge,
  .top-announcement-text span:first-child {
    font-size: 0.78rem;
    padding: 2px 10px;
    letter-spacing: 0.4px;
  }

  .top-announcement-desc,
  .top-announcement-text span:last-child {
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    max-width: 330px;
    margin: 0 auto;
  }

  .home-top-daisy {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .top-announcement-desc,
  .top-announcement-text span:last-child {
    font-size: 0.76rem;
    line-height: 1.38;
    max-width: 270px;
  }
}

/* ==========================================================================
   5. COMPREHENSIVE RESPONSIVE BREAKPOINTS (Header, Footer, Touch)
   ========================================================================== */

/* Tablet & Mobile Screens <= 991px */
@media (max-width: 991px) {
  /* Show Mobile Hamburger Toggle */
  .mobile-nav-toggle {
    display: inline-flex !important;
  }

  /* Hide Desktop Single Line Nav */
  .home-single-line-nav,
  .single-line-nav-menu {
    display: none !important;
  }

  /* Hide Desktop Top Contact Bar & Divider inside Header Card */
  .header-card-top-row,
  .card-dotted-divider {
    display: none !important;
  }

  /* Compact Header Card on mobile/tablet */
  .home-floating-header-card {
    padding: 10px 18px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  .home-floating-header-container {
    padding: 0 16px !important;
  }

  .header-site-logo {
    height: 52px !important;
    max-height: 56px !important;
  }

  /* Footer 2-column stacking on tablet */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px 28px !important;
    padding-bottom: 40px !important;
  }
}

/* Mobile Screens <= 768px */
@media (max-width: 768px) {
  /* Back-to-top button standard mobile position (no footer tabs) */
  .back-to-top,
  #backToTop {
    bottom: 24px !important;
    right: 18px !important;
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 6px 20px rgba(10, 29, 55, 0.22) !important;
  }

  .site-footer {
    padding-top: 50px !important;
  }
}

/* Small Smartphone Screens <= 640px */
@media (max-width: 640px) {
  .home-floating-header-card {
    padding: 8px 14px !important;
    border-radius: 18px !important;
  }

  .header-site-logo {
    height: 44px !important;
    max-height: 48px !important;
  }

  /* Hide header desktop CTA button on tiny screens since drawer & bottom bar have prominent CTAs */
  .header-card-actions .header-card-apply-btn {
    display: none !important;
  }

  /* 1 Column Footer for clean, easy scrolling on mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-col h4 {
    font-size: 1.2rem !important;
    margin-bottom: 14px !important;
  }

  .footer-links {
    gap: 10px !important;
  }

  .footer-link {
    font-size: 0.98rem !important;
    padding: 4px 0 !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   FUNNY & PLAYFUL MONTESSORI ANIMATIONS (Childit Whimsical Style)
   Subtle, plain, charming micro-interactions across pages & sections
   ========================================================================== */

/* 1. Funny Wiggle / Jiggle (badges, icons, and playful stickers) */
@keyframes funnyWiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-6deg) scale(1.04);
  }

  30% {
    transform: rotate(5deg) scale(1.02);
  }

  45% {
    transform: rotate(-4deg);
  }

  60% {
    transform: rotate(3deg);
  }

  75% {
    transform: rotate(-1.5deg);
  }
}

.funny-wiggle,
.badge-pink:hover,
.badge-yellow:hover {
  animation: funnyWiggle 1.4s ease-in-out infinite alternate;
  display: inline-flex;
}

/* 2. Playful Bouncing Animation */
@keyframes playfulBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.playful-bounce {
  animation: playfulBounce 2.5s ease-in-out infinite;
  display: inline-block;
}

/* 3. Floating & Gentle Sway (doodles, kites, balloons) */
@keyframes floatSway {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  35% {
    transform: translateY(-8px) rotate(4deg);
  }

  70% {
    transform: translateY(-4px) rotate(-3deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.float-sway,
.page-hero-doodle,
.doodle-star,
.doodle-speech {
  animation: floatSway 4s ease-in-out infinite;
}

/* 4. Jelly Tap / Hover on Buttons & Action Elements */
@keyframes jellySquish {
  0% {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.1, 0.92);
  }

  50% {
    transform: scale(0.95, 1.05);
  }

  70% {
    transform: scale(1.02, 0.98);
  }

  100% {
    transform: scale(1, 1);
  }
}

.jelly-hover:hover,
.btn-yellow:hover,
.btn-pink:hover {
  animation: jellySquish 0.6s ease;
}

/* 5. Playful Card Tilt on Hover */
.funny-tilt {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.funny-tilt:hover {
  transform: translateY(-8px) rotate(-1.2deg) scale(1.015);
  box-shadow: 0 10px 24px rgba(10, 29, 55, 0.08) !important;
}

/* 6. Gentle Daisy Spin */
@keyframes gentleDaisySpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin-slow,
.top-corner-daisy,
.gallery-hero-daisy svg,
.about-hero-daisy svg {
  animation: gentleDaisySpin 30s linear infinite;
  transform-origin: center center;
}

/* 7. Peeking Animated Doodle Stickers */
.playful-sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #FFF9E6;
  border: 1.5px dashed #FFD200;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0A1D37;
  gap: 6px;
  animation: funnyWiggle 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(10, 29, 55, 0.04);
}

/* ==========================================================================
   SCROLL REVEAL BY RISE ANIMATION (All Pages)
   ========================================================================== */
.scroll-rise-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-rise-section.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Fallback: if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-rise-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   SCATTERED PLAYFUL ABCD 3D ICONS & DECORATIONS (Matching User Design)
   ========================================================================== */
.scattered-decor-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.scattered-letter {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  user-select: none;
  filter: drop-shadow(0 6px 14px rgba(10, 29, 55, 0.12));
}

/* Letter A: Chunky Golden Yellow with Cyan Dots (Positioned in spacious white space) */
.letter-item-a {
  left: -95px;
  top: 15px;
  width: 60px;
  height: 60px;
  animation: floatLetterA 4.5s ease-in-out infinite;
}

/* Letter B: Chunky Sky Blue with Star (Positioned in spacious white space) */
.letter-item-b {
  right: -95px;
  top: 15px;
  width: 58px;
  height: 58px;
  animation: floatLetterB 4.2s ease-in-out infinite;
}

/* Letter C: Chunky Coral Red with Confetti (Positioned in spacious white space) */
.letter-item-c {
  right: -85px;
  top: 85px;
  width: 54px;
  height: 54px;
  animation: floatLetterC 4.8s ease-in-out infinite;
}

/* Letter D: Chunky Mint Green with Sparkles (Positioned in spacious white space) */
.letter-item-d {
  left: -85px;
  top: 85px;
  width: 54px;
  height: 54px;
  animation: floatLetterD 4.4s ease-in-out infinite;
}

/* Flying Bumblebee in Title Wrappers */
.doodle-flying-bee {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 105px;
  height: 52px;
  pointer-events: none;
  z-index: 5;
  animation: beeFlight 4s ease-in-out infinite;
}

/* Keyframe animations for ABCD letters */
@keyframes floatLetterA {
  0%, 100% {
    transform: translateY(0) rotate(-14deg);
  }
  50% {
    transform: translateY(-8px) rotate(-8deg) scale(1.04);
  }
}

@keyframes floatLetterB {
  0%, 100% {
    transform: translateY(0) rotate(16deg);
  }
  50% {
    transform: translateY(-9px) rotate(22deg) scale(1.05);
  }
}

@keyframes floatLetterC {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-7px) rotate(5deg) scale(1.03);
  }
}

@keyframes floatLetterD {
  0%, 100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-8px) rotate(-16deg) scale(1.04);
  }
}

@keyframes beeFlight {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-48%) translateY(-5px) rotate(3deg);
  }
  50% {
    transform: translateX(-52%) translateY(-8px) rotate(-2deg);
  }
  75% {
    transform: translateX(-49%) translateY(-4px) rotate(2deg);
  }
}

/* GUARANTEE: ABCD icons should NOT overlap on any text or cards, strictly in white space */
@media (max-width: 1199px) {
  /* On narrower screens where outer white margins shrink, hide scattered letters to prevent overlap */
  .scattered-letter {
    display: none !important;
  }
}

/* ==========================================================================
   WHIMSICAL 5-SECOND FLYING BEE & WINDING DOTTED TRAIL ANIMATION
   A cheerful yellow-and-black bee flying from left to right along a winding
   dotted line. Rapidly flapping wings, progressive trail reveal, 5s seamless loop.
   ========================================================================== */
.whimsical-bee-trail-wrap {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 16px auto;
  padding: 0 15px;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
  display: block;
}

.whimsical-bee-trail-wrap svg {
  display: block;
  width: 100%;
  height: 65px;
  overflow: visible;
}

.bee-wing-flap-left {
  transform-origin: 0px 0px;
  animation: beeWingFlapLeft 0.12s ease-in-out infinite alternate;
}

.bee-wing-flap-right {
  transform-origin: 0px 0px;
  animation: beeWingFlapRight 0.12s ease-in-out infinite alternate;
}

@keyframes beeWingFlapLeft {
  0% {
    transform: rotate(-28deg) scaleY(1);
  }
  100% {
    transform: rotate(-6deg) scaleY(0.35);
  }
}

@keyframes beeWingFlapRight {
  0% {
    transform: rotate(28deg) scaleY(1);
  }
  100% {
    transform: rotate(6deg) scaleY(0.35);
  }
}

.cheerful-bee-character {
  animation: beeBodyBob 0.6s ease-in-out infinite alternate;
}

@keyframes beeBodyBob {
  0% {
    transform: scale(1.1) translateY(-1.5px);
  }
  100% {
    transform: scale(1.1) translateY(1.5px);
  }
}