/* =====================================================
   LITTLE BLOOM KIDS THERAPY CENTER — DESIGN TOKENS
   Palette (sampled from the official Little Bloom logo):
     --honey       #F8C800  (logo gold — BEEHIVE banner)
     --honey-dark  #C99A00
     --bloom       #F878A0  (logo pink — the "m" in Bloom)
     --bloom-dark  #E2537D
     --sky         #28B8A8  (logo teal — the "O" in Bloom)
     --leaf        #A888E8  (logo purple — the flower petals)
     --coral       #F86038  (logo coral — the "B" in Bloom)
     --coral-dark  #DE4A22
     --cream       #FFF9EF  (base background)
     --ink         #002050  (logo navy — "Little" wordmark)
     --ink-soft    #55627D  (secondary text)
   Type:
     Display — 'Baloo 2' (rounded, warm, child-friendly)
     Body    — 'Nunito'  (soft, legible, friendly)
   Signature: interlocking hexagon "honeycomb" grid used for
   the hero collage and the services layout — a literal nod
   to the BEEHIVE partnership woven through the whole page.
===================================================== */

:root{
  --honey:#F8C800;
  --honey-dark:#C99A00;
  --bloom:#F878A0;
  --bloom-dark:#E2537D;
  --sky:#28B8A8;
  --leaf:#A888E8;
  --coral:#F86038;
  --coral-dark:#DE4A22;
  --cream:#FFF9EF;
  --ink:#002050;
  --ink-soft:#55627D;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px -18px rgba(0,32,80,0.25);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family:'Nunito', sans-serif;
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family:'Baloo 2', cursive;
  font-weight:700;
  color:var(--ink);
  letter-spacing:0.2px;
}

a{ text-decoration:none; }

.text-honey{ color:var(--honey-dark); }
.text-bloom{ color:var(--bloom-dark); }
.text-muted-warm{ color:var(--ink-soft); font-size:1.05rem; }

.eyebrow{
  font-family:'Baloo 2', cursive;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:0.8rem;
  font-weight:600;
  color:var(--coral-dark);
  margin-bottom:10px;
  display:inline-block;
}
.eyebrow-center{ display:block; text-align:center; }
.eyebrow-light{ color:var(--honey); }

.section-heading{ max-width:640px; margin:0 auto 50px; }
.section-heading.text-center h2{ font-size:2.3rem; }
.section-lead{ color:var(--ink-soft); font-size:1.05rem; margin-top:12px; }

/* ===================== BUTTONS ===================== */
.btn{
  border-radius:999px; font-family:'Baloo 2',cursive; font-weight:600; padding:12px 28px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  position:relative; overflow:hidden;
}
.btn i{ margin-right:8px; }
.btn:active{ transform:translateY(1px) scale(0.98); }
.btn:focus-visible{ box-shadow:0 0 0 4px rgba(0,32,80,0.18); }

.btn-honey{ background:var(--honey); border:2px solid var(--honey); color:var(--ink); }
.btn-honey:hover{ background:var(--honey-dark); border-color:var(--honey-dark); color:#fff; transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(201,154,0,0.55); }

.btn-bloom{ background:var(--bloom); border:2px solid var(--bloom); color:#fff; }
.btn-bloom:hover{ background:var(--bloom-dark); border-color:var(--bloom-dark); color:#fff; transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(226,83,125,0.55); }

.btn-outline-bloom{ background:transparent; border:2px solid var(--bloom); color:var(--bloom-dark); }
.btn-outline-bloom:hover{ background:var(--bloom); color:#fff; transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(226,83,125,0.45); }

.btn:disabled, .btn.disabled{ opacity:0.7; cursor:not-allowed; transform:none !important; }

/* Click ripple feedback (applied via script.js to .btn, .back-to-top, .btn-add-child) */
.btn-ripple{
  position:absolute; width:10px; height:10px; border-radius:50%;
  background:rgba(255,255,255,0.55); transform:translate(-50%,-50%) scale(0);
  pointer-events:none; animation:btn-ripple-anim .6s ease-out forwards;
}
@keyframes btn-ripple-anim{
  to{ transform:translate(-50%,-50%) scale(22); opacity:0; }
}

/* ===================== UTILITY BAR ===================== */
.utility-bar{
  background:var(--ink);
  color:#f2e9da;
  font-size:0.82rem;
  padding:7px 0;
}
.utility-bar span{ opacity:0.9; }
.utility-bar a{ color:inherit; transition:opacity .2s ease; }
.utility-bar a:hover{ opacity:0.7; text-decoration:underline; }

/* ===================== NAVIGATION ===================== */
.main-nav{
  background:rgba(255,249,239,0.94);
  backdrop-filter: blur(8px);
  padding:14px 0;
  box-shadow:0 2px 18px rgba(0,32,80,0.06);
}

.brand-logo{ height:52px; width:auto; display:block; }
.brand-logo-footer{
  height:64px; width:auto; display:block;
  background:#fff; border-radius:16px; padding:8px 14px;
  box-shadow:var(--shadow-soft);
}

.main-nav-links{ gap:8px; }
.main-nav-links .nav-link{
  font-family:'Baloo 2',cursive;
  font-weight:600;
  color:var(--ink);
  padding:8px 16px !important;
  border-radius:999px;
  transition:all .2s ease;
}
.main-nav-links .nav-link i{ margin-right:7px; color:var(--coral); transition:color .2s ease; }
.main-nav-links .nav-link:hover{ background:rgba(248,200,0,0.15); color:var(--honey-dark); }
.main-nav-links .nav-link:hover i{ color:var(--honey-dark); }

.auth-links{ font-family:'Baloo 2',cursive; font-weight:600; }
.auth-link{ color:var(--ink); padding:8px 10px; }
.auth-link i{ margin-right:6px; }
.auth-link:hover{ color:var(--bloom-dark); }
.auth-divider{ color:#d8cbb8; }
.auth-link-cta{
  background:var(--bloom);
  color:#fff !important;
  border-radius:999px;
  padding:8px 20px;
  margin-left:4px;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.auth-link-cta:hover{ background:var(--bloom-dark); transform:translateY(-2px); box-shadow:0 10px 20px -10px rgba(226,83,125,0.6); }

/* ---- Logged-in state (top-right nav) ---- */
.auth-links-logged{ gap:8px; }
.logged-chip{
  display:flex; align-items:center; gap:10px;
  padding:5px 12px 5px 5px; border-radius:999px;
  background:var(--cream); border:1.5px solid #eee2ce;
  transition:all .2s ease; cursor:pointer;
}
.logged-chip:hover, .logged-chip[aria-expanded="true"]{ border-color:var(--honey); box-shadow:0 8px 18px -10px rgba(0,32,80,0.3); transform:translateY(-1px); }
.logged-chip-avatar{
  width:34px; height:34px; border-radius:50%; overflow:hidden; flex:0 0 auto;
  background:linear-gradient(150deg, var(--honey), var(--coral));
}
.logged-chip-avatar img{ width:100%; height:100%; object-fit:cover; }
.logged-chip-info{ display:flex; flex-direction:column; line-height:1.25; text-align:left; }
.logged-chip-name{ font-family:'Baloo 2',cursive; font-weight:700; font-size:0.84rem; color:var(--ink); }
.logged-chip-status{
  display:inline-flex; align-items:center; gap:5px;
  font-size:0.7rem; font-weight:700; color:#1BA96B; text-transform:uppercase; letter-spacing:0.4px;
}
.logged-chip-status i{ font-size:0.5rem; }
.logged-chip-caret{ font-size:0.7rem; color:var(--ink-soft); margin-left:2px; }

.logged-chip-menu{
  border-radius:14px; border:1px solid #eee2ce;
  box-shadow:var(--shadow-soft); padding:8px; margin-top:10px !important; min-width:200px;
}
.logged-chip-menu .dropdown-item{
  border-radius:9px; padding:9px 12px; font-weight:600; font-size:0.88rem;
  display:flex; align-items:center; gap:10px;
}
.logged-chip-menu .dropdown-item i{ width:16px; text-align:center; }
.logged-chip-menu .dropdown-item:hover{ background:var(--cream); }

/* ===================== HERO ===================== */
.hero{
  position:relative;
  padding:80px 0 40px;
  background:
    linear-gradient(105deg, rgba(0,32,80,0.94) 0%, rgba(0,32,80,0.86) 34%, rgba(0,32,80,0.55) 68%, rgba(0,32,80,0.28) 100%),
    url('/files/images/activities-1.webp') center 18% / cover no-repeat;
  overflow:hidden;
}

.hero-hex-field{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(248,200,0,0.22) 0, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(248,120,160,0.18) 0, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(40,184,168,0.2) 0, transparent 40%);
  pointer-events:none;
}

.hero-row{ position:relative; z-index:2; padding:20px 0 60px; }

.hero .eyebrow{ color:var(--honey); }

.hero-title{
  font-size:3.1rem;
  line-height:1.12;
  margin-bottom:20px;
  color:#fff;
}
.hero-title .text-bloom{ color:var(--bloom); }

.hero-sub{
  font-size:1.15rem;
  color:rgba(255,255,255,0.82);
  max-width:520px;
  margin-bottom:32px;
}

.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px; }
.hero .btn-outline-bloom{ border-color:var(--bloom); color:var(--bloom); }
.hero .btn-outline-bloom:hover{ background:var(--bloom); color:#fff; }

.hero-trust{ display:flex; align-items:center; gap:20px; }
.trust-item{ display:flex; flex-direction:column; }
.trust-item strong{ font-family:'Baloo 2',cursive; font-size:1.4rem; color:var(--honey); }
.trust-item span{ font-size:0.8rem; color:rgba(255,255,255,0.75); }
.trust-divider{ width:1px; height:34px; background:rgba(255,255,255,0.25); }

/* --- Hexagon collage (signature element): 6 skill hexes flowering around a center brand hex --- */
.hex-collage{
  position:relative;
  width:100%;
  max-width:460px;
  aspect-ratio: 0.7217;
  margin:0 auto;
}
.hex-tile{
  position:absolute;
  width:40%;
  aspect-ratio: 1 / 1.1547;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  filter: drop-shadow(0 14px 22px rgba(0,32,80,0.35));
  transition: transform .3s ease, filter .3s ease;
}
.hex-tile:hover{
  transform: translateY(-8px) scale(1.07);
  filter: drop-shadow(0 22px 32px rgba(0,32,80,0.45));
  z-index: 4;
}
.hex-inner{
  position:relative;
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-size:2.5rem;
  color:#fff;
  text-align:center;
  overflow:hidden;
  padding:0 12%;
}
.hex-inner::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(155deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 42%);
  pointer-events:none;
}
.hex-inner i{
  position:relative; z-index:1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.hex-inner span{
  position:relative; z-index:1;
  font-family:'Baloo 2',cursive; font-weight:700; font-size:0.72rem; line-height:1.2; margin-top:8px;
}

.hex-fill-honey{ background:linear-gradient(160deg, var(--honey), var(--honey-dark)); }
.hex-fill-bloom{ background:linear-gradient(160deg, var(--bloom), var(--bloom-dark)); }
.hex-fill-sky{ background:linear-gradient(160deg, #6cc0ea, var(--sky)); }
.hex-fill-leaf{ background:linear-gradient(160deg, #b9a2ee, var(--leaf)); }
.hex-fill-coral{ background:linear-gradient(160deg, #ff8b66, var(--coral)); }
.hex-fill-duo{ background:linear-gradient(160deg, var(--honey), var(--bloom)); }
.hex-fill-cream{ background:var(--cream); color:var(--ink); border:3px solid var(--honey); }
.hex-fill-cream i{ color:var(--bloom-dark); font-size:1.15rem; }
.hex-fill-cream span{ font-size:0.8rem; }

/* 1 center hex + 6 flat-top neighbours tessellated around it (true honeycomb flower) */
.hex-tile-center{ top:33.333%; left:30%; z-index:2; }
.hex-tile-top{ top:0%; left:30%; }
.hex-tile-upper-right{ top:16.667%; left:60%; }
.hex-tile-lower-right{ top:50%; left:60%; }
.hex-tile-bottom{ top:66.667%; left:30%; }
.hex-tile-lower-left{ top:50%; left:0%; }
.hex-tile-upper-left{ top:16.667%; left:0%; }

.hero-wave{
  position:absolute; left:0; right:0; bottom:-1px; height:60px;
  background:var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* ===================== SERVICES / HONEYCOMB ===================== */
.services-section{ padding:90px 0 60px; background:var(--cream); }

.honeycomb-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:0 -10px;
  flex-wrap:wrap;
  max-width:1000px;
  margin:0 auto;
}

.comb-cell{ width:31%; min-width:280px; margin: 0 -1.5% 40px; }
.comb-cell-offset{ margin-top:60px; }

.comb-hex{
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  background:linear-gradient(150deg,#fff, #FFF3DC);
  padding:3px;
  aspect-ratio: 1/1.05;
  display:flex;
}
.comb-hex-bloom{ background:linear-gradient(150deg,#fff, #FFE3EA); }
.comb-hex-sky{ background:linear-gradient(150deg,#fff, #DFF6F1); }

.comb-hex-inner{
  flex:1;
  background:#fff;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:20% 14%;
  box-shadow: inset 0 0 0 9999px transparent;
}

.comb-icon{ font-size:2.6rem; margin-bottom:10px; }
.comb-hex h3{ font-size:1.25rem; margin-bottom:10px; }
.comb-hex p{ font-size:0.92rem; color:var(--ink-soft); }

/* ===================== PROGRAMS ===================== */
.programs-section{ padding:80px 0; background:linear-gradient(180deg,#fff, #FFF9EF); }

.check-list{ list-style:none; padding:0; margin:0; }
.check-list li{
  position:relative; padding-left:32px; margin-bottom:12px; color:var(--ink-soft); font-weight:600;
}
.check-list li::before{
  content:"\2713";
  position:absolute; left:0; top:-1px;
  width:22px; height:22px; border-radius:50%;
  background:var(--leaf); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem;
}

.program-card-stack{ position:relative; }
.program-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-soft);
}
.program-card-1{ border-top:6px solid var(--honey); margin-bottom:24px; }
.program-card-2{ border-top:6px solid var(--bloom); margin-left:8%; }

.badge-tag{
  display:inline-block; font-family:'Baloo 2',cursive; font-size:0.75rem; font-weight:700;
  padding:5px 14px; border-radius:999px; margin-bottom:12px; text-transform:uppercase; letter-spacing:1px;
}
.badge-honey{ background:rgba(248,200,0,0.18); color:var(--honey-dark); }
.badge-bloom{ background:rgba(248,120,160,0.18); color:var(--bloom-dark); }

.program-card h4{ font-size:1.3rem; margin-bottom:8px; }
.program-card p{ color:var(--ink-soft); margin-bottom:14px; }

.schedule-row{ display:flex; gap:30px; }
.schedule-row div{ display:flex; flex-direction:column; }
.schedule-row strong{ font-family:'Baloo 2',cursive; color:var(--ink); }
.schedule-row span{ font-size:0.85rem; color:var(--ink-soft); }

/* ===================== GALLERY ===================== */
.gallery-section{ padding:80px 0; background:var(--cream); }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:150px;
  gap:16px;
}
.gallery-item-tall{ grid-row:span 2; }
.gallery-item-wide{ grid-column:span 2; }

.gallery-photo{
  width:100%; height:100%; border-radius:var(--radius-md);
  display:flex; align-items:flex-end; padding:16px;
  color:#fff; font-family:'Baloo 2',cursive; font-weight:600;
  box-shadow:var(--shadow-soft);
  position:relative; overflow:hidden;
  cursor:pointer;
}
.gallery-photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
}
.gallery-photo::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(0,32,80,0.55));
  transition:background .25s ease;
}
.gallery-photo:hover::after{ background:rgba(0,32,80,0.6); }
.gallery-photo span{ position:relative; z-index:1; }

.gallery-photo-view{
  position:absolute; top:50%; left:50%; z-index:2;
  width:52px; height:52px; border-radius:50%;
  background:rgba(255,255,255,0.92); color:var(--ink);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
  transform:translate(-50%,-50%) scale(0.6); opacity:0;
  transition:opacity .25s ease, transform .25s ease;
  pointer-events:none;
}
.gallery-photo:hover .gallery-photo-view{ opacity:1; transform:translate(-50%,-50%) scale(1); }

/* ---- Gallery lightbox modal ---- */
.gallery-lightbox-content{
  background:var(--ink); border:none; border-radius:var(--radius-lg);
  overflow:hidden; position:relative;
}
.gallery-lightbox-img{ width:100%; max-height:78vh; object-fit:contain; background:#000; display:block; }
.gallery-lightbox-caption{
  padding:16px 22px; color:#fff; font-family:'Baloo 2',cursive; font-weight:700; font-size:1.05rem;
}
.gallery-lightbox-close{
  position:absolute; top:14px; right:14px; z-index:2;
  width:38px; height:38px; border-radius:50%; background-color:rgba(255,255,255,0.92);
  opacity:1;
  box-shadow:0 6px 16px rgba(0,0,0,0.3);
}

/* ===================== ABOUT ===================== */
.about-section{ padding:80px 0; background:#fff; }

.about-stats{ margin-top:10px; }
.stat-box{
  background:var(--cream); border-radius:var(--radius-md); padding:18px 20px;
  display:flex; flex-direction:column; gap:4px;
}
.stat-box strong{ font-family:'Baloo 2',cursive; color:var(--ink); font-size:0.98rem; }
.stat-box span{ font-size:0.8rem; color:var(--ink-soft); }

.quote-card{
  background:linear-gradient(160deg, var(--honey), var(--bloom));
  border-radius:var(--radius-lg);
  padding:50px 40px;
  color:#fff;
  box-shadow:var(--shadow-soft);
}
.quote-card p{
  font-family:'Baloo 2',cursive;
  font-size:1.6rem;
  line-height:1.4;
  margin-bottom:16px;
}
.quote-card span{ font-weight:700; opacity:0.9; }

/* ===================== CONTACT ===================== */
.contact-section{
  position:relative;
  padding:90px 0;
  background:var(--ink);
  overflow:hidden;
}
.hero-hex-field-dark{
  background-image:
    radial-gradient(circle at 10% 20%, rgba(248,200,0,0.25) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(248,120,160,0.2) 0, transparent 45%);
}
.contact-lead{ color:#e7dcc9; margin-bottom:30px; max-width:420px; }

.contact-info-list{ list-style:none; padding:0; }
.contact-info-list li{
  display:flex; flex-direction:column; margin-bottom:18px; padding-left:18px; border-left:3px solid var(--honey);
}
.contact-info-list strong{ font-family:'Baloo 2',cursive; color:var(--honey); font-size:0.85rem; text-transform:uppercase; letter-spacing:1px; }
.contact-info-list span{ color:#f2e9da; }
.contact-info-list a{ color:#f2e9da; transition:color .2s ease; }
.contact-info-list a:hover{ color:var(--honey); text-decoration:underline; }

.consult-form{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.4);
}
.consult-form .form-label{ font-family:'Baloo 2',cursive; font-weight:600; font-size:0.88rem; color:var(--ink); }
.consult-form .form-control, .consult-form .form-select{
  border-radius:12px; border:1.5px solid #ecdfca; padding:10px 14px;
}
.consult-form .form-control:focus, .consult-form .form-select:focus{
  border-color:var(--honey); box-shadow:0 0 0 3px rgba(248,200,0,0.2);
}

.consult-form-header{
  display:flex; align-items:flex-start; gap:16px;
  padding-bottom:22px; margin-bottom:22px; border-bottom:1.5px dashed #ecdfca;
}
.consult-form-icon{
  flex:0 0 auto; width:52px; height:52px; border-radius:16px;
  background:linear-gradient(150deg, var(--honey), var(--bloom));
  color:#fff; font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 22px -10px rgba(226,83,125,0.5);
}
.consult-form-header h4{ font-size:1.2rem; margin-bottom:4px; }
.consult-form-header p{ font-size:0.86rem; color:var(--ink-soft); margin:0; }

/* ===================== FORM ELEMENTS (shared) ===================== */
.input-icon-group{ position:relative; }
.input-icon-group > i{
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  color:var(--ink-soft); font-size:0.95rem; pointer-events:none;
}
.input-icon-group .form-control{ padding-left:42px; }
.input-icon-group .form-control:focus + i,
.input-icon-group .form-control:focus ~ i{ color:var(--honey-dark); }
.input-icon-group-textarea > i{ top:22px; transform:none; }
.input-icon-group-textarea .form-control{ padding-top:12px; }

.input-icon-group-password .form-control{ padding-right:42px; }
.password-toggle{
  position:absolute; right:4px; top:50%; transform:translateY(-50%);
  width:34px; height:34px; border:none; background:transparent; border-radius:10px;
  color:var(--ink-soft); display:flex; align-items:center; justify-content:center;
  transition:color .2s ease, background .2s ease;
}
.password-toggle:hover{ color:var(--honey-dark); background:rgba(248,200,0,0.12); }

.services-select-header{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
  margin-bottom:10px;
}
.services-select-header .form-label i{ color:var(--bloom-dark); margin-right:6px; }
.select-all-toggle{
  display:inline-flex; align-items:center; gap:6px; cursor:pointer;
  font-family:'Baloo 2',cursive; font-weight:600; font-size:0.82rem; color:var(--ink-soft);
  margin:0;
}
.select-all-toggle input{ accent-color:var(--honey-dark); width:15px; height:15px; }
.select-all-toggle i{ color:var(--leaf); }

.services-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:10px;
}
.service-pill{
  display:flex; align-items:center; gap:10px;
  border:1.5px solid #ecdfca; border-radius:14px; padding:11px 14px;
  cursor:pointer; margin:0; transition:all .2s ease; background:var(--cream);
}
.service-pill input{ accent-color:var(--bloom-dark); width:16px; height:16px; flex:0 0 auto; }
.service-pill span{ font-size:0.86rem; font-weight:600; color:var(--ink); }
.service-pill i{ color:var(--bloom-dark); width:16px; text-align:center; }
.service-pill:hover{ border-color:var(--bloom); background:#fff; }
.service-pill:has(input:checked){
  border-color:var(--bloom); background:rgba(248,120,160,0.1);
  box-shadow:0 6px 14px -8px rgba(226,83,125,0.4);
}

/* ===================== PARTNERS ===================== */
.partners-section{ padding:70px 0 90px; background:var(--cream); }
.partners-grid{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:26px; margin-top:20px;
}
.partner-card{
  background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-soft);
  padding:22px 30px; display:flex; align-items:center; justify-content:center;
  width:210px; height:120px; transition:transform .25s ease, box-shadow .25s ease;
}
.partner-card:hover{ transform:translateY(-6px); box-shadow:0 24px 46px -18px rgba(0,32,80,0.3); }
.partner-card img{ max-width:100%; max-height:100%; object-fit:contain; }

/* ===================== FOOTER ===================== */
.site-footer{ background:#04122E; color:#e7dcc9; padding:60px 0 24px; }
.footer-tag{ margin-top:10px; color:#c9b998; font-size:0.9rem; }
.site-footer h6{ font-family:'Baloo 2',cursive; color:var(--honey); margin-bottom:14px; font-size:0.9rem; letter-spacing:1px; text-transform:uppercase; }
.footer-links{ list-style:none; padding:0; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:#e7dcc9; opacity:0.85; }
.footer-links a:hover{ opacity:1; color:var(--honey); }
.footer-address{ color:#e7dcc9; font-size:0.92rem; line-height:1.7; }
.footer-address a{ color:#e7dcc9; transition:color .2s ease; }
.footer-address a:hover{ color:var(--honey); text-decoration:underline; }
.footer-rule{ border-color:#173156; margin:36px 0 20px; }
.footer-bottom{ font-size:0.82rem; color:#a9998a; gap:8px; }

/* ===================== AUTH MODALS ===================== */
.auth-modal{ border-radius:var(--radius-lg); border:none; }
.auth-modal .modal-title{ font-family:'Baloo 2',cursive; display:flex; align-items:center; gap:10px; }
.auth-modal .modal-title i{ color:var(--bloom-dark); }
.auth-modal .modal-body{ padding:8px 28px 30px; }
.auth-switch{ font-size:0.9rem; color:var(--ink-soft); }
.auth-switch a{ color:var(--bloom-dark); font-weight:700; }

.form-divider{ border-color:#ecdfca; margin:24px 0 18px; }

/* ---- Profile photo picker (used in the profile-edit modal) ---- */
.profile-photo-picker{
  position:relative; width:110px; height:110px; margin:0 auto;
  border-radius:50%; overflow:hidden; cursor:pointer;
  border:4px solid var(--cream); box-shadow:var(--shadow-soft);
  transition:transform .2s ease;
}
.profile-photo-picker:hover{ transform:scale(1.03); }
.profile-photo-picker img{ width:100%; height:100%; object-fit:cover; display:block; }
.profile-photo-edit{
  position:absolute; right:0; bottom:0; width:34px; height:34px; border-radius:50%;
  background:var(--honey); color:var(--ink); display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; border:3px solid #fff;
}

.children-header{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;
  margin-bottom:12px;
}
.children-header .form-label i{ color:var(--bloom-dark); margin-right:6px; }
.children-hint{ font-size:0.78rem; color:var(--ink-soft); font-style:italic; }

.children-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:14px; }
.child-row{ display:flex; align-items:center; gap:10px; }
.child-row .input-icon-group{ flex:1; }

.btn-remove-child{
  flex:0 0 auto; width:42px; height:42px; border-radius:12px;
  border:1.5px solid #f4c9d3; background:#fff5f7; color:var(--bloom-dark);
  display:flex; align-items:center; justify-content:center;
  transition:all .2s ease;
}
.btn-remove-child:hover{ background:var(--bloom-dark); border-color:var(--bloom-dark); color:#fff; transform:translateY(-2px); }

.btn-add-child{
  background:var(--cream); border:1.5px dashed var(--honey-dark); color:var(--honey-dark);
  border-radius:999px; padding:9px 20px; font-family:'Baloo 2',cursive; font-weight:600; font-size:0.88rem;
  transition:all .2s ease; position:relative; overflow:hidden;
}
.btn-add-child i{ margin-right:6px; }
.btn-add-child:hover{ background:var(--honey); border-style:solid; color:var(--ink); transform:translateY(-2px); }

/* ===================== BACK TO TOP ===================== */
.back-to-top{
  position:fixed; right:22px; bottom:22px; z-index:999;
  width:46px; height:46px; border-radius:50%;
  background:var(--bloom); color:#fff; border:none;
  font-size:1.1rem; box-shadow:var(--shadow-soft);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .25s ease;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--bloom-dark); transform:translateY(-3px); box-shadow:0 14px 26px -10px rgba(226,83,125,0.6); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px){
  .hero-title{ font-size:2.4rem; }
  .honeycomb-grid{ flex-direction:column; align-items:center; }
  .comb-cell, .comb-cell-offset{ width:80%; max-width:320px; margin-top:0; margin-bottom:24px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-item-wide{ grid-column:span 2; }
  .program-card-2{ margin-left:0; }
  .main-nav-links{ margin:16px 0; }
  .auth-links{ justify-content:center; padding-top:10px; border-top:1px solid #eee2ce; }
}

@media (max-width: 575.98px){
  .hero{ padding:50px 0 20px; }
  .hero-title{ font-size:2rem; }
  .hex-collage{ max-width:320px; margin-top:40px; }
  .hero-cta{ flex-direction:column; }
  .hero-cta .btn{ width:100%; text-align:center; }
  .hero-trust{ flex-wrap:wrap; row-gap:12px; }
  .quote-card p{ font-size:1.3rem; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:120px; }
  .services-grid{ grid-template-columns:1fr; }
  .partner-card{ width:160px; height:100px; padding:16px 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn, .back-to-top{ transition:none; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal-init{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal-init.revealed{ opacity:1; transform:translateY(0); }

.nav-scrolled{ box-shadow:0 4px 22px rgba(0,32,80,0.14); }

@media (prefers-reduced-motion: reduce){
  .reveal-init{ opacity:1; transform:none; transition:none; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid var(--sky);
  outline-offset:2px;
}

/* ===================== FLOATING CHAT WIDGET ===================== */
.chat-bubble-wrap{ position:fixed; right:24px; bottom:24px; z-index:1050; }
.chat-bubble-btn{
  width:60px; height:60px; border-radius:50%; border:none;
  background:linear-gradient(150deg, var(--honey), var(--bloom));
  color:#fff; font-size:1.5rem; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 28px -10px rgba(226,83,125,0.5); position:relative; transition:all .2s ease;
}
.chat-bubble-btn:hover{ transform:translateY(-3px) scale(1.05); }
.chat-bubble-badge{
  position:absolute; top:-4px; right:-4px; min-width:22px; height:22px; padding:0 5px; border-radius:999px;
  background:var(--coral); color:#fff; font-size:0.72rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; border:2.5px solid #fff;
}

.chat-popup{
  position:fixed; right:24px; bottom:98px; width:340px; height:460px; max-height:70vh;
  background:#fff; border-radius:20px; box-shadow:0 24px 60px -18px rgba(0,32,80,0.4);
  display:flex; flex-direction:column; overflow:hidden; z-index:1050;
}
.chat-popup-header{
  display:flex; align-items:center; gap:10px; padding:14px 16px;
  background:linear-gradient(120deg, var(--ink), #001233); color:#fff; flex:0 0 auto;
}
.chat-popup-back{ background:transparent; border:none; color:#fff; font-size:1rem; padding:0; }
.chat-popup-avatar{ width:32px; height:32px; border-radius:50%; object-fit:cover; }
.chat-popup-title{ flex:1; font-family:'Baloo 2',cursive; font-weight:700; font-size:0.95rem; }
.chat-popup-close{ background:transparent; border:none; color:#fff; font-size:1rem; opacity:0.85; }
.chat-popup-close:hover{ opacity:1; }

.chat-conv-list{ flex:1; overflow-y:auto; }
.chat-conv-item{ display:flex; align-items:center; gap:10px; padding:12px 14px; cursor:pointer; border-bottom:1px solid #f2ede1; transition:background .15s ease; }
.chat-conv-item:hover{ background:var(--cream); }
.chat-conv-info{ flex:1; min-width:0; display:flex; flex-direction:column; }
.chat-conv-item img{ width:38px; height:38px; border-radius:50%; object-fit:cover; flex:0 0 auto; }
.chat-conv-info strong{ font-size:0.85rem; }
.chat-conv-info span{ font-size:0.76rem; color:var(--ink-soft); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.chat-conv-unread{ min-width:18px; height:18px; padding:0 5px; border-radius:999px; background:var(--coral); color:#fff; font-size:0.66rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }

.chat-thread{ flex:1; display:flex; flex-direction:column; min-height:0; }
.chat-thread-messages{ flex:1; overflow-y:auto; padding:14px; display:flex; flex-direction:column; gap:10px; background:var(--cream); }
.chat-thread-input{ display:flex; gap:8px; padding:10px 12px; border-top:1px solid #f2ede1; flex:0 0 auto; background:#fff; }
.chat-thread-input input{ flex:1; border-radius:999px; border:1.5px solid #ecdfca; padding:9px 14px; font-size:0.85rem; }
.chat-thread-input input:focus{ outline:none; border-color:var(--honey); }
.chat-thread-input button{ width:38px; height:38px; border-radius:50%; border:none; background:var(--honey); color:var(--ink); display:flex; align-items:center; justify-content:center; flex:0 0 auto; transition:all .2s ease; }
.chat-thread-input button:hover{ background:var(--honey-dark); color:#fff; }

.chat-empty{ text-align:center; color:var(--ink-soft); font-size:0.82rem; padding:30px 16px; }

/* Message bubbles — shared by the floating widget AND the admin Messages page */
.chat-msg{ display:flex; flex-direction:column; max-width:78%; }
.chat-msg-theirs{ align-self:flex-start; align-items:flex-start; }
.chat-msg-mine{ align-self:flex-end; align-items:flex-end; }
.chat-msg-bubble{ padding:9px 14px; border-radius:16px; font-size:0.85rem; line-height:1.4; word-wrap:break-word; white-space:pre-wrap; }
.chat-msg-theirs .chat-msg-bubble{ background:#fff; color:var(--ink); border-bottom-left-radius:4px; box-shadow:0 2px 6px rgba(0,32,80,0.08); }
.chat-msg-mine .chat-msg-bubble{ background:linear-gradient(135deg, var(--honey), var(--coral)); color:var(--ink); border-bottom-right-radius:4px; }
.chat-msg-time{ font-size:0.66rem; color:var(--ink-soft); margin-top:3px; padding:0 4px; }

@media (max-width: 480px){
  .chat-popup{ right:12px; left:12px; width:auto; bottom:88px; }
  .chat-bubble-wrap{ right:16px; bottom:16px; }
}