/* ================================================================
   SpectrumSprouts — Shared Stylesheet
   Aarambh Udan Child Care Foundation · Vaishali, Ghaziabad NCR
   ================================================================ */

/* ── TOKENS ── */
:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --teal:        #0D9488;
  --teal-dark:   #0F766E;
  --teal-light:  #F0FDFA;
  --purple:      #7C3AED;
  --purple-dark: #6D28D9;
  --purple-light:#F5F3FF;
  --pink:        #DB2777;
  --pink-light:  #FDF2F8;
  --sky:         #0EA5E9;
  --sky-light:   #F0F9FF;
  --text:        #111827;
  --text-2:      #374151;
  --text-3:      #6B7280;
  --border:      #E5E7EB;
  --bg:          #F9FAFB;
  --white:       #FFFFFF;
  --r:           12px;
  --r-lg:        20px;
  --shadow:      0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 24px rgba(0,0,0,.09),0 4px 8px rgba(0,0,0,.05);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: 'Nunito', sans-serif; font-weight: 700; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul, ol { padding-left: 20px; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700; font-family: 'Nunito', sans-serif;
  transition: all .15s; border: none; cursor: pointer;
}
.btn-lg  { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-sm  { padding: 7px 14px;  font-size: 13px; border-radius: 8px; }
.btn-primary  { background: var(--blue);   color: #fff; }
.btn-primary:hover  { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.35); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe59;  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,.35); }
.btn-donate   { background: #DC2626; color: #fff; }
.btn-donate:hover   { background: #B91C1C; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220,38,38,.35); }
.btn-outline  { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover  { background: var(--blue-light); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── SECTION HEADINGS ── */
.section-label {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 10px; display: block;
}
.lbl-blue   { color: var(--blue); }
.lbl-teal   { color: var(--teal); }
.lbl-purple { color: var(--purple); }
.lbl-pink   { color: var(--pink); }
.lbl-sky    { color: var(--sky); }
.section-title { font-size: 34px; font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -.3px; }
.section-sub   { font-size: 16px; color: var(--text-3); line-height: 1.75; max-width: 560px; }
.section-head  { margin-bottom: 48px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── ICON BOXES ── */
.ib    { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ib-sm { width: 34px; height: 34px; border-radius: 9px;  font-size: 15px; }
.ib-lg { width: 56px; height: 56px; border-radius: 15px; font-size: 26px; }
.ib-xl { width: 72px; height: 72px; border-radius: 18px; font-size: 34px; }
.ib-blue   { background: var(--blue-light);   color: var(--blue); }
.ib-teal   { background: var(--teal-light);   color: var(--teal); }
.ib-purple { background: var(--purple-light); color: var(--purple); }
.ib-pink   { background: var(--pink-light);   color: var(--pink); }
.ib-sky    { background: var(--sky-light);    color: var(--sky); }
.ib svg    { width: 55%; height: 55%; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── PILLS ── */
.pill        { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.pill-blue   { background: var(--blue-light);   color: var(--blue-dark); }
.pill-teal   { background: var(--teal-light);   color: var(--teal-dark); }
.pill-purple { background: var(--purple-light); color: var(--purple-dark); }
.pill-pink   { background: var(--pink-light);   color: var(--pink); }
.pill-sky    { background: var(--sky-light);    color: #0369A1; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.hdr { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 20px; color: #fff;
}
.logo-name      { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 21px; }
.logo-name em   { color: var(--teal); font-style: normal; }
nav             { display: flex; align-items: center; gap: 2px; }
nav > a         { font-size: 14px; font-weight: 600; color: var(--text-3); padding: 6px 13px; border-radius: 8px; transition: all .15s; }
nav > a:hover   { color: var(--text); background: var(--bg); }
nav > a.active  { color: var(--text); background: var(--bg); }
.hdr-actions    { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hdr-phone      { font-size: 13px; font-weight: 700; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.hamburger      { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--text); -webkit-tap-highlight-color: transparent; }

/* ── NAV DROPDOWNS ── */
.nav-item       { position: relative; }
.nav-link       { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--text-3); padding: 6px 13px; border-radius: 8px; transition: all .15s; cursor: pointer; }
.nav-link:hover { color: var(--text); background: var(--bg); }
.nav-arrow      { font-size: 10px; transition: transform .2s; display: inline-block; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -8px;
  min-width: 230px; background: white; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13); border: 1px solid var(--border);
  padding: 14px 8px 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all .18s ease;
  z-index: 500; pointer-events: none;
}
/* Invisible bridge fills any sub-pixel gap between nav link and dropdown */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  font-size: 13.5px; color: var(--text-2); border-radius: 8px;
  font-weight: 600; transition: background .12s, color .12s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--blue); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200; overflow-y: auto;
  background: white; flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 58px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-nav-body   { padding: 8px 20px 32px; flex: 1; }
.mobile-nav-close  {
  background: none; border: none; padding: 8px; cursor: pointer;
  color: var(--text); -webkit-tap-highlight-color: transparent;
  font-size: 22px; line-height: 1;
}
.mobile-nav-section { padding-bottom: 4px; margin-bottom: 4px; border-bottom: 1px solid var(--border); }
.mobile-nav-section:last-of-type { border-bottom: none; }
.mobile-nav-label   { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); padding: 12px 0 4px; display: block; }
.mobile-nav-section a { font-size: 15px; font-weight: 700; padding: 10px 0; border: none; display: block; font-family: 'Nunito', sans-serif; color: var(--text-2); transition: color .15s; }
.mobile-nav-section a:hover { color: var(--blue); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  padding: 60px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.ph-blue   { background: linear-gradient(135deg, #1E3A8A 0%, var(--blue) 100%); color: white; }
.ph-teal   { background: linear-gradient(135deg, var(--teal-dark) 0%, #0EA5A0 100%); color: white; }
.ph-purple { background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%); color: white; }
.ph-pink   { background: linear-gradient(135deg, #9D174D 0%, var(--pink) 100%); color: white; }
.ph-sky    { background: linear-gradient(135deg, #0369A1 0%, var(--sky) 100%); color: white; }
.ph-dark   { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: white; }

.page-hero h1  { font-size: 42px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.5px; }
.page-hero p   { font-size: 18px; opacity: .88; line-height: 1.75; max-width: 600px; margin-bottom: 28px; }
.ph-breadcrumb { font-size: 13px; opacity: .7; margin-bottom: 20px; }
.ph-breadcrumb a { opacity: 1; text-decoration: underline; color: inherit; }
.ph-chips      { display: flex; flex-wrap: wrap; gap: 8px; }
.ph-chip       { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); color: white; padding: 5px 13px; border-radius: 100px; font-size: 12px; font-weight: 700; }

/* ════════════════════════════════════════
   CONTENT COMPONENTS
════════════════════════════════════════ */

/* Two-column content grid */
.content-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Info card */
.info-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card h3   { font-size: 17px; font-weight: 800; margin: 14px 0 10px; }
.info-card p    { font-size: 14px; color: var(--text-3); line-height: 1.7; }

/* Checklist */
.checklist      { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li   { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 900; font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* Sign list (for conditions and location pages) */
.sign-list      { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sign-list li   { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.55; padding: 10px 14px; background: var(--bg); border-radius: 8px; border-left: 3px solid var(--border); }
.sign-item      { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-2); padding: 10px 0; border-bottom: 1px solid var(--border); }
.sign-item:last-child { border-bottom: none; }
.sign-dot       { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* Step list */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 15px;
  color: white; margin-top: 2px;
}
.step-num-blue   { background: var(--blue); }
.step-num-teal   { background: var(--teal); }
.step-num-purple { background: var(--purple); }
.step-num-pink   { background: var(--pink); }
.step-num-sky    { background: var(--sky); }
.step-item h4   { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.step-item p    { font-size: 14px; color: var(--text-3); line-height: 1.65; }

/* FAQ */
.faq-list  { display: flex; flex-direction: column; gap: 12px; }
.faq-item  {
  background: white; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 20px; font-size: 15px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer; font-family: 'Nunito', sans-serif;
}
.faq-q:hover { background: var(--bg); }
.faq-arrow  { font-size: 18px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a      { max-height: 0; overflow: hidden; padding: 0 20px; font-size: 14px; color: var(--text-3); line-height: 1.75; border-top: 0 solid var(--border); transition: max-height .36s ease, padding .3s ease, border-top-width .3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 14px 20px 18px; border-top-width: 1px; }

/* Highlight box */
.highlight-box {
  padding: 20px 22px; border-radius: var(--r); margin-bottom: 20px;
  border-left: 4px solid;
}
.hb-blue   { background: var(--blue-light);   border-color: var(--blue); }
.hb-teal   { background: var(--teal-light);   border-color: var(--teal); }
.hb-purple { background: var(--purple-light); border-color: var(--purple); }
.hb-pink   { background: var(--pink-light);   border-color: var(--pink); }
.highlight-box p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.highlight-box strong { color: var(--text); }

/* Quote card */
.quote-card {
  background: var(--bg); border-radius: var(--r-lg); padding: 24px 26px;
  border-left: 4px solid var(--teal); font-size: 15px; color: var(--text-2);
  line-height: 1.75; font-style: italic;
}
.quote-author { font-size: 13px; font-weight: 700; color: var(--text-3); margin-top: 10px; font-style: normal; }

/* Sticky sidebar panel */
.sticky-panel {
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 86px;
}
.sticky-panel h3  { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.sticky-panel .sp-row { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sticky-panel .sp-row:last-of-type { border-bottom: none; }
.sticky-panel .sp-label { font-size: 12px; font-weight: 700; }
.sticky-panel .sp-value { font-size: 13px; color: var(--text-3); margin-top: 1px; }
.sticky-panel .sp-value a { color: var(--blue); }

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #1E3A8A 0%, var(--purple-dark) 100%);
  color: white; padding: 72px 0; text-align: center;
}
.cta-band h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; color: white; }
.cta-band p  { font-size: 17px; opacity: .85; max-width: 520px; margin: 0 auto 28px; line-height: 1.75; }
.cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   RELATED CARDS ROW
════════════════════════════════════════ */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.related-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r);
  padding: 20px; display: flex; align-items: center; gap: 12px;
  transition: all .15s;
}
.related-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.related-card-icon { font-size: 24px; flex-shrink: 0; }
.related-card-name { font-size: 14px; font-weight: 700; }
.related-card-sub  { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ════════════════════════════════════════
   FORM STYLES
════════════════════════════════════════ */
.form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md); }
.form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-2); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 9px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); background: white; outline: none; transition: border-color .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.fg textarea  { resize: vertical; min-height: 90px; }
.fg-full      { grid-column: span 2; }
.form-submit  { width: 100%; margin-top: 4px; justify-content: center; }
.form-note    { text-align: center; font-size: 12px; color: var(--text-3); margin-top: 10px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer      { background: #0F172A; color: #94A3B8; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid #1E293B; margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: white;
}
.footer-logo-name    { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 19px; color: white; }
.footer-logo-name em { color: var(--teal); font-style: normal; }
.footer-desc  { font-size: 13px; line-height: 1.75; margin-bottom: 18px; }
.footer-legal { font-size: 11.5px; color: #475569; line-height: 1.85; }
.footer-legal strong { color: #64748B; }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: white; margin-bottom: 16px; }
.footer-links  { display: flex; flex-direction: column; gap: 9px; list-style: none; padding: 0; }
.footer-links a { font-size: 13px; color: #94A3B8; transition: color .15s; }
.footer-links a:hover { color: white; }
.footer-social { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-top: 20px; border-top: 1px solid #1E293B; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #1E293B; border-radius: 8px; transition: background .2s, transform .2s; }
.footer-social a:hover { background: #334155; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: #94A3B8; transition: fill .2s; }
.footer-social a:hover svg { fill: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #475569; }
.footer-bottom a { color: #64748B; transition: color .15s; }
.footer-bottom a:hover { color: #94A3B8; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  nav, .hdr-phone { display: none; }
  .hamburger { display: block; }
  .hdr-actions .btn-outline { display: none; }
  /* Hide "Book Appointment" + "Donate" from header — mobile nav has them */
  .hdr-actions .btn-primary { display: none; }
  .hdr-actions .btn-donate  { display: none; }

  .content-grid   { grid-template-columns: 1fr; gap: 36px; }
  .content-grid-3 { grid-template-columns: 1fr 1fr; }
  .content-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section-title  { font-size: 28px; }
  section         { padding: 52px 0; }

  .page-hero      { padding: 44px 0 40px; }
  .page-hero h1   { font-size: 32px; }
  .page-hero p    { font-size: 16px; margin-bottom: 22px; }

  .sticky-panel   { position: static; }

  .cta-band       { padding: 52px 0; }
  .cta-band h2    { font-size: 28px; }
  .cta-band p     { font-size: 15px; }
}

/* ── MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  .container  { padding: 0 16px; }

  .hdr        { height: 58px; gap: 8px; }
  .logo-name  { font-size: 18px; }
  .site-logo-img { height: 36px !important; }

  /* On phones: logo + hamburger only. Floating .wa-float + mobile nav handle CTAs. */
  .hdr-actions .btn-whatsapp { display: none; }

  section         { padding: 40px 0; }
  .section-title  { font-size: 24px; }
  .section-sub    { font-size: 14.5px; }
  .section-head   { margin-bottom: 32px; }

  .page-hero      { padding: 36px 0 32px; }
  .page-hero h1   { font-size: 26px; letter-spacing: -.2px; }
  .page-hero p    { font-size: 15px; margin-bottom: 18px; }
  .ph-chips       { gap: 6px; }
  .ph-chip        { font-size: 11px; padding: 4px 10px; }

  .content-grid-3 { grid-template-columns: 1fr; }
  .content-grid-4 { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 6px; }

  .form-row2  { grid-template-columns: 1fr; }
  .fg-full    { grid-column: span 1; }
  .form-wrap  { padding: 20px 16px; }

  .cta-band       { padding: 44px 0; }
  .cta-band h2    { font-size: 23px; }
  .cta-band p     { font-size: 14px; }
  .cta-band-btns  { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  .btn-lg     { padding: 12px 22px; font-size: 15px; }

  .info-card  { padding: 20px; }
  .sticky-panel { padding: 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .step-item  { gap: 12px; }

  .wa-float   { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── SMALL PHONE (≤ 420px) ── */
@media (max-width: 420px) {
  .page-hero h1   { font-size: 22px; }
  .section-title  { font-size: 21px; }
  .hdr            { height: 54px; }
  .logo-name      { font-size: 16px; }
}

/* ── INTERLINKING SECTION ── */
.interlink-section {
  padding: 56px 0;
  background: #F0F9FF;
  border-top: 1px solid #E0F2FE;
}
.interlink-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}
.interlink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.interlink-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: white;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.interlink-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,.12);
  transform: translateY(-2px);
}
.interlink-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}
.interlink-desc {
  font-size: .77rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .interlink-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .interlink-grid { grid-template-columns: 1fr; gap: 10px; }
  .interlink-section { padding: 36px 0; }
}

/* ── NUMBERED STEPS LIST (autism therapy process, etc.) ── */
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }
.steps-list .step-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.steps-list .step-item:last-child { border-bottom: none; }
.steps-list .step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  margin-top: 2px;
}
.step-title { font-size: 17px; font-weight: 800; color: var(--text-1); margin: 0 0 8px; }
.step-desc  { font-size: 15px; color: var(--text-3); line-height: 1.75; margin: 0; }
@media (max-width: 600px) {
  .steps-list .step-item { gap: 14px; }
  .steps-list .step-num { width: 34px; height: 34px; font-size: 13px; }
  .step-title { font-size: 15px; }
  .step-desc  { font-size: 14px; }
}

/* ════════════════════════════════════════
   GLOBAL MICRO-INTERACTIONS
════════════════════════════════════════ */

/* ── Scroll reveal ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .62s cubic-bezier(.25,.46,.45,.94),
              transform .62s cubic-bezier(.25,.46,.45,.94);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .40s; }

/* ── Counter numbers ── */
.counter-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── Enhanced hover on cards ── */
.info-card {
  transition: transform .22s ease, box-shadow .22s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.quote-card {
  transition: transform .22s ease, box-shadow .22s ease;
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── Smooth page-hero chip hover ── */
.ph-chip {
  transition: background .18s, color .18s, transform .18s;
}
.ph-chip:hover { transform: translateY(-1px); }

/* ── Pulse animation for primary CTAs ── */
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.btn-pulse { animation: cta-pulse 2.4s ease-out infinite; }

/* ── Step list item hover ── */
.step-item {
  transition: transform .18s ease;
}
.step-item:hover { transform: translateX(4px); }

/* ── Hover lift utility ── */
.hover-lift {
  transition: transform .22s ease, box-shadow .22s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── FAQ accordion (global) ── */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 16px;
}
.faq-q {
  cursor: pointer;
  transition: color .18s;
}
.faq-q:hover { color: var(--blue); }

/* ── Page transition fade-in ── */
@keyframes page-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: page-in .35s ease forwards; }

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn-pulse  { animation: none !important; }
  body        { animation: none !important; }
  .info-card,
  .quote-card,
  .step-item,
  .hover-lift { transition: none !important; }
}

/* ══════════════════════════════════════════
   Service page premium hero — shared system
   Uses --svc-grad, --svc-accent, --svc-stat-c set per page
   ══════════════════════════════════════════ */
.svc-hero {
  background: var(--svc-grad, linear-gradient(135deg,#064E3B,#0D9488));
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.svc-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  top: -160px; right: -80px;
  border-radius: 50%;
  animation: blob-drift 10s ease-in-out infinite alternate;
}
.svc-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  bottom: -100px; left: 4%;
  border-radius: 50%;
  animation: blob-drift 13s ease-in-out infinite alternate-reverse;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-hero-bc { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.svc-hero-bc a { color: rgba(255,255,255,.7); text-decoration: none; }
.svc-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #fff;
  margin-bottom: 20px; letter-spacing: .4px;
  backdrop-filter: blur(8px);
}
.svc-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; line-height: 1.15;
  margin: 0 0 16px; color: #fff;
}
.svc-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.88);
  line-height: 1.7; margin-bottom: 28px; max-width: 520px;
}
.svc-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.svc-hero-chip {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #fff;
}
.svc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-btn-white {
  background: #fff; color: var(--svc-accent, #2563EB);
  border-radius: 10px; padding: 14px 28px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.svc-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.svc-btn-wa {
  background: #25D366; color: #fff;
  border-radius: 10px; padding: 14px 24px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: transform .2s;
}
.svc-btn-wa:hover { transform: translateY(-2px); }
/* Right quick-facts panel */
.svc-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(12px);
}
.svc-panel-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.svc-panel-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.svc-panel-row:last-of-type { border-bottom: none; }
.svc-pi {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-pi svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; }
.svc-pl { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.svc-pv { font-size: 14px; color: #fff; font-weight: 600; margin-top: 2px; }
.svc-panel-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.svc-panel-cta a {
  text-align: center; display: block;
  border-radius: 10px; padding: 12px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; transition: transform .2s;
}
.svc-panel-cta a:hover { transform: translateY(-1px); }
.svc-pcta-solid { background: #fff; color: var(--svc-accent, #2563EB); }
.svc-pcta-ghost { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; }
/* Stats strip (reusable) */
.svc-stats { background: #0F172A; }
.svc-stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-stat { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.svc-stat:last-child { border-right: none; }
.svc-stat-n { font-size: 40px; font-weight: 900; color: var(--svc-stat-c, #60A5FA); line-height: 1; font-family: 'Nunito', sans-serif; }
.svc-stat-l { font-size: 13px; color: #94A3B8; margin-top: 6px; line-height: 1.4; }
/* Approach cards (reusable, 3-col) */
.svc-approach { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.svc-acard {
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  border-top: 4px solid var(--svc-accent, #2563EB);
}
.svc-acard-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
  background: rgba(255,255,255,.7);
}
.svc-acard h3 { font-size: 17px; font-weight: 800; color: var(--text-1); margin: 0 0 10px; }
.svc-acard p { font-size: 14px; color: var(--text-3); line-height: 1.7; margin: 0; }
/* Testimonial (reusable) */
.svc-testimonial { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 72px 0; }
.svc-testi-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.svc-testi-lbl { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--svc-stat-c, #60A5FA); margin-bottom: 32px; }
.svc-testi-qm { font-size: 72px; color: rgba(255,255,255,.15); line-height: 1; font-family: Georgia, serif; margin-bottom: -20px; }
.svc-testi-text { font-size: clamp(17px, 2.4vw, 22px); color: #E2E8F0; line-height: 1.75; font-weight: 500; margin-bottom: 32px; }
.svc-testi-stars { color: #F59E0B; font-size: 18px; margin-bottom: 12px; }
.svc-testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.svc-testi-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--svc-grad, linear-gradient(135deg,#2563EB,#7C3AED));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.svc-testi-name { font-weight: 700; color: #F1F5F9; font-size: 15px; }
.svc-testi-role { font-size: 13px; color: #94A3B8; }
@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-panel { display: none; }
  .svc-stats-inner { grid-template-columns: 1fr 1fr; }
  .svc-stats-inner .svc-stat:last-child { display: none; }
  .svc-approach { grid-template-columns: 1fr; }
}
