/* =========================================================
   KIRAN CHILDREN HOSPITAL — Stylesheet
   A warm, friendly, trustworthy design for a pediatric clinic.
   Aesthetic: soft sky / butter sun / gentle coral / mint
   Type: Fraunces (display, soft serif) + Nunito (body, friendly)
   ========================================================= */

:root {
  /* Core palette — soft, warm, pediatric */
  --cream:      #FFF8EC;
  --cream-deep: #FDEFD2;
  --sky:        #C7E5F4;
  --sky-deep:   #93CDE7;
  --sky-text:   #1F4F7A;
  --butter:     #FFCB6B;
  --butter-deep:#F4B43E;
  --coral:      #E07A5F;
  --coral-deep: #C45A40;
  --mint:       #A8E6CF;
  --mint-deep:  #6FCFA8;
  --lilac:      #D6C7F0;

  --ink:        #1F3A52;   /* deep navy — headings */
  --ink-soft:   #2D4A66;
  --body:       #45576B;   /* body text */
  --muted:      #7B8A99;
  --line:       #E8DFC9;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(31,58,82,0.06);
  --shadow:    0 8px 28px rgba(31,58,82,0.08);
  --shadow-lg: 0 20px 60px rgba(31,58,82,0.12);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Nunito", system-ui, sans-serif;

  --maxw: 1180px;
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--coral-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 18px rgba(224,122,95,0.35);
}
.btn--primary:hover {
  background: var(--coral-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224,122,95,0.4);
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: #1DAE52;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   Top ribbon
   ========================================================= */
.ribbon {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.ribbon__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ribbon .dot {
  width: 8px; height: 8px;
  background: var(--mint-deep);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111,207,168,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(111,207,168,0); }
}
.ribbon__cta {
  margin-left: auto;
  color: var(--butter);
  font-weight: 700;
}
.ribbon__cta:hover { color: #fff; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,58,82,0.06);
}
.header__row {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo__mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo__text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
  margin-top: 3px;
}

.nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { margin-left: 8px; }

.hamburger {
  display: none;
  margin-left: auto;
  background: none; border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 24px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
/* Honour the HTML [hidden] attribute (CSS display overrides it otherwise) */
.mobile-menu[hidden] { display: none; }
/* On desktop, never show the mobile menu — even if something clears [hidden] */
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(31,58,82,0.06);
}
.mobile-menu .btn { margin-top: 12px; align-self: flex-start; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, var(--sky) 0%, transparent 60%),
    var(--cream);
}
.hero__cloud {
  position: absolute;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__cloud--1 { width: 400px; height: 120px; top: 80px; left: -100px; animation: float 22s infinite ease-in-out; }
.hero__cloud--2 { width: 320px; height: 100px; top: 200px; right: -60px; animation: float 28s infinite ease-in-out reverse; }
.hero__cloud--3 { width: 260px; height: 80px; top: 400px; left: 40%; animation: float 25s infinite ease-in-out; opacity: 0.7; }
@keyframes float {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(30px) translateY(-15px); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.eyebrow--light { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(38px, 5.4vw, 64px);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero__sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-row {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.trust-row__item {
  display: flex; flex-direction: column; line-height: 1.2;
}
.trust-row__item strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
}
.trust-row__item span { font-size: 13px; color: var(--muted); }
.trust-row__sep { width: 1px; height: 36px; background: var(--line); }

/* Hero illustration column */
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art > svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(31,58,82,0.1));
  animation: gentleBob 6s ease-in-out infinite;
}
@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.sparkle {
  position: absolute;
  font-size: 22px;
  color: var(--butter-deep);
  animation: twinkle 3s infinite;
}
.sparkle--1 { top: 8%; right: 12%; animation-delay: 0s; }
.sparkle--2 { top: 35%; left: 8%; animation-delay: 1s; font-size: 16px; color: var(--coral); }
.sparkle--3 { bottom: 20%; right: 22%; animation-delay: 2s; font-size: 18px; color: var(--mint-deep); }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* =========================================================
   Strip (trust bar under hero)
   ========================================================= */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.strip__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.strip__item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.strip__item svg { color: var(--butter); }

/* =========================================================
   Sections — generic
   ========================================================= */
.section { padding: 100px 0; }
.section--cream { background: var(--cream-deep); }
.section--blue {
  background:
    radial-gradient(ellipse at top right, rgba(255,203,107,0.2) 0%, transparent 50%),
    linear-gradient(135deg, #2A6B9A 0%, var(--ink) 100%);
  color: #fff;
}
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue h2 em { color: var(--butter); }
.section--blue .section__lede { color: rgba(255,255,255,0.85); }

.section__head { max-width: 720px; margin: 0 0 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.section__lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* =========================================================
   Services grid
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(224,122,95,0.04) 100%);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service h3 { font-size: 22px; margin-bottom: 10px; }
.service p { color: var(--body); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* =========================================================
   Doctor section
   ========================================================= */
.doctor__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.doctor__photo {
  position: relative;
}
.doctor__frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.doctor__frame:hover { transform: rotate(0); }
.doctor__sticker {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.doctor__sticker--1 {
  top: -16px; right: -10px;
  background: var(--butter);
  transform: rotate(8deg);
}
.doctor__sticker--2 {
  bottom: 24px; left: -20px;
  background: var(--mint);
  transform: rotate(-6deg);
}

.doctor__copy .lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 22px;
}
.doctor__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}
.doctor__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
}
.doctor__list li span {
  width: 38px; height: 38px;
  background: var(--cream-deep);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* =========================================================
   Why Us cards
   ========================================================= */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform .25s ease, background .25s ease;
}
.why__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.why__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--butter);
  margin-bottom: 14px;
  font-weight: 600;
}
.why__card h3 { font-size: 19px; margin-bottom: 8px; color: #fff; }
.why__card p { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
  margin: 0;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: -10px; right: 24px;
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--butter);
  line-height: 1;
}
.review__stars {
  color: var(--butter-deep);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
}
.review figcaption {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 18px;
}
.review figcaption strong { display: block; color: var(--ink); font-weight: 700; }
.review figcaption em { font-style: normal; color: var(--muted); font-size: 13px; }

.reviews__note {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

/* =========================================================
   Booking section
   ========================================================= */
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.book__cta-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0 36px;
  max-width: 380px;
}
.book__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.book__hours strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 8px;
}
.book__hours p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}
.book__hours em { color: var(--coral-deep); font-style: normal; font-weight: 700; }

.book__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.book__form h3 { font-size: 26px; margin-bottom: 6px; }
.book__form-sub { color: var(--muted); margin-bottom: 24px; font-size: 14.5px; }
.book__form label {
  display: block;
  margin-bottom: 16px;
}
.book__form label span {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.book__form input,
.book__form select,
.book__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.book__form input:focus,
.book__form select:focus,
.book__form textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
}
.book__form textarea { resize: vertical; min-height: 90px; }

.book__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.book__form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}
.book__form-success {
  margin-top: 14px;
  padding: 14px;
  background: var(--mint);
  color: #1F6E4A;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

/* =========================================================
   Map
   ========================================================= */
.map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #fff;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.faq__list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 24px;
  transition: box-shadow .2s ease;
}
.faq__list details[open] { box-shadow: var(--shadow); }
.faq__list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  font-size: 28px;
  color: var(--coral);
  font-weight: 400;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 15.5px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  color: var(--butter);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer p { font-size: 14.5px; line-height: 1.7; margin: 0; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--butter); }

.logo--footer .logo__text strong { color: #fff; }
.logo--footer .logo__text em { color: var(--butter); }
.footer__tag {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom p { margin: 0; color: rgba(255,255,255,0.55); }
.footer__bottom em { font-style: italic; color: rgba(255,255,255,0.5); }

/* =========================================================
   Mobile sticky bar
   ========================================================= */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(31,58,82,0.1);
  gap: 8px;
}
.mobile-bar__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.mobile-bar__btn--call { background: var(--coral); color: #fff; }
.mobile-bar__btn--wa { background: #25D366; color: #fff; }
.mobile-bar__btn--book { background: var(--ink); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: block; }

  .hero { padding: 40px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; max-width: 360px; margin: 0 auto; }
  .hero__title { font-size: 40px; }
  .hero__sub { font-size: 17px; }

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

  .doctor__grid { grid-template-columns: 1fr; gap: 50px; }
  .doctor__photo { max-width: 360px; margin: 0 auto; }

  .book__grid { grid-template-columns: 1fr; gap: 50px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .section { padding: 70px 0; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 32px; }
  .section__title { font-size: 28px; }
  .services, .reviews, .why { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .book__hours { grid-template-columns: 1fr; }
  .book__form { padding: 26px 22px; }
  .book__form .row { grid-template-columns: 1fr; }
  .trust-row { gap: 14px; }
  .trust-row__sep { display: none; }
  .ribbon { font-size: 12px; }
  .ribbon__inner { padding: 8px 16px; }
  .ribbon__cta { margin-left: 0; width: 100%; text-align: right; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* =========================================================
   Small touches
   ========================================================= */
::selection { background: var(--butter); color: var(--ink); }

/* Reveal-on-load animations */
.hero__copy > * {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.54s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   Counter strip (happy kids treated etc.)
   ========================================================= */
.counters {
  padding: 32px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,230,207,0.35) 0%, transparent 60%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.counter-card {
  text-align: center;
  padding: 18px 10px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(31,58,82,0.06);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.counter-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.counter-card__ico {
  font-size: 30px;
  margin-bottom: 6px;
  line-height: 1;
}
.counter-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-deep);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.counter-card__label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 900px) { .counters__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .counters__grid { grid-template-columns: 1fr 1fr; gap: 10px; } .counter-card { padding: 14px 8px; } }

/* =========================================================
   Section colour variants (kid-friendly)
   ========================================================= */
.section--butter {
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.6) 0%, transparent 50%),
    linear-gradient(135deg, #FFF3D6 0%, #FFE6A8 100%);
}
.section--mint {
  background:
    radial-gradient(ellipse at bottom right, rgba(255,255,255,0.5) 0%, transparent 50%),
    linear-gradient(135deg, #EAFBF2 0%, #CFF2E1 100%);
}

/* =========================================================
   Baby Care Toolkit promo block
   ========================================================= */
.toolkit-promo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.toolkit-promo__copy .section__title { margin-bottom: 14px; }
.toolkit-promo__copy p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.toolkit-promo__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 12px;
}
.toolkit-promo__list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(31,58,82,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.toolkit-promo__list li span {
  font-size: 22px; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.toolkit-promo__list li strong { color: var(--ink); }
.toolkit-promo__art svg {
  width: 100%; max-width: 360px; margin: 0 auto; display: block;
  filter: drop-shadow(0 16px 34px rgba(31,58,82,0.15));
  animation: gentleBob 7s ease-in-out infinite;
}
@media (max-width: 980px) {
  .toolkit-promo { grid-template-columns: 1fr; gap: 30px; }
  .toolkit-promo__art { max-width: 280px; margin: 0 auto; }
}

/* =========================================================
   Baby Tips grid (rotating-feeling cards)
   ========================================================= */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tip-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(31,58,82,0.06);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tip-card__emoji {
  font-size: 32px; line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  background: var(--cream);
  padding: 10px;
  border-radius: 14px;
}
.tip-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.tip-card p { font-size: 14.5px; color: var(--body); margin: 0; line-height: 1.55; }
.tip-card__tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--coral-deep);
  background: rgba(224,122,95,0.12);
  padding: 3px 9px; border-radius: 999px;
}
@media (max-width: 980px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Back-to-top floating button
   ========================================================= */
.to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(224,122,95,0.35);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 45;
}
.to-top:hover { background: var(--coral-deep); transform: translateY(0) scale(1.05); }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 980px) { .to-top { bottom: 100px; right: 12px; } }

/* =========================================================
   Kid-friendly floating background decorations
   ========================================================= */
.kid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.kid-bg__item {
  position: absolute;
  font-size: 22px;
  opacity: 0.35;
  animation: floatShape 10s infinite ease-in-out;
}
.kid-bg__item--star    { color: var(--butter-deep); font-size: 20px; animation-duration: 8s; }
.kid-bg__item--heart   { color: var(--coral); font-size: 24px; animation-duration: 11s; animation-delay: 1s; }
.kid-bg__item--balloon { font-size: 28px; animation-duration: 13s; animation-delay: 2s; opacity: 0.4; }
.kid-bg__item--cloud   { color: var(--sky-deep); font-size: 32px; animation-duration: 15s; animation-delay: 0.5s; opacity: 0.3; }
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -12px) rotate(6deg); }
  50% { transform: translate(-6px, -18px) rotate(-4deg); }
  75% { transform: translate(12px, -8px) rotate(8deg); }
}
@media (max-width: 600px) {
  /* reduce clutter on small screens */
  .kid-bg__item { opacity: 0.22; font-size: 18px; }
  .kid-bg__item--balloon { font-size: 22px; }
  .kid-bg__item--cloud { font-size: 24px; }
}
