:root {
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: rgba(99, 102, 241, 0.1);
  --primary-xlight: rgba(99, 102, 241, 0.05);
--secondary: #C4956A;
--secondary-light: rgba(196, 149, 106, 0.12);
--accent: #B5AD70;
--accent-light: rgba(181, 173, 112, 0.15);
--mint: #7A9E9A;
--mint-light: rgba(122, 158, 154, 0.12);
--coral: #A67070;
--coral-light: rgba(166, 112, 112, 0.1);
--green: #8FA88A;
--green-light: rgba(143, 168, 138, 0.12);
  --text: #374151;
  --muted: #6B7280;
  --shadow: 0 14px 30px rgba(99, 102, 241, 0.08);
  --shadow-lg: 0 24px 48px rgba(99, 102, 241, 0.12);
  --border: rgba(108, 99, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* NAVIGATION */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
}

.nav-bar {
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.06);
  border-bottom: 1px solid rgba(108, 99, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(255, 251, 245, 0.98);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.brand img {
  border-radius: 50%;
  object-fit: fill;
  background: transparent;
  padding: 0;
  width: 84px;
  height: 84px;
}

.brand span {
  display: block;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.1px;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, #6366F1, #818CF8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, #4F46E5, #6366F1);
}

.nav-toggle {
  display: none;
  background: var(--primary-light);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .nav {
    gap: 14px;
  }
}

/* Floating Balloons */
.balloons {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.balloon {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.18;
  animation: balloonFloat linear infinite;
}

.balloon::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid currentColor;
  opacity: 0.4;
}

.balloon::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 28%;
  height: 35%;
  background: rgba(255,255,255,0.35);
  border-radius: 50% 50% 45% 45%;
  transform: rotate(-30deg);
}

@keyframes balloonFloat {
  0% { transform: translateY(110vh) rotate(0deg) scale(1); opacity: 0; }
  5% { opacity: 0.18; }
  95% { opacity: 0.18; }
  100% { transform: translateY(-15vh) rotate(20deg) scale(0.85); opacity: 0; }
}

/* LAYOUT */
.section {
  max-width: var(--maxw);
  margin: 36px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section.compact {
  margin-top: 20px;
}

.section.tight {
  margin: 0 auto;
  padding-top: 32px;
}

h1, h2, h3, h4 {
  color: var(--primary-dark);
  margin: 0 0 12px;
  letter-spacing: 0;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 10px; color: var(--muted); line-height: 1.75; }

p {
  margin: 0 0 10px;
  color: var(--muted);
}

.hero {
  background: linear-gradient(135deg, #6366F1 0%, #818CF8 40%, #A78BFA 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.1), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  font-size: 28px;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-shape:nth-child(2) { top: 25%; right: 10%; animation-delay: 1s; font-size: 22px; }
.hero-shape:nth-child(3) { bottom: 20%; left: 12%; animation-delay: 2s; font-size: 24px; }
.hero-shape:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 0.5s; }
.hero-shape:nth-child(5) { top: 40%; left: 5%; animation-delay: 1.5s; font-size: 20px; }
.hero-shape:nth-child(6) { top: 10%; right: 25%; animation-delay: 3s; font-size: 18px; }
.hero-shape:nth-child(7) { bottom: 15%; right: 20%; animation-delay: 2.5s; font-size: 26px; }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', Georgia, serif;
}

.hero .subhead {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  position: relative;
  z-index: 1;
}

.section ul {
  padding-left: 20px;
  margin: 10px 0;
}

.section li {
  margin-bottom: 8px;
  color: var(--muted);
}

.card ul {
  padding-left: 20px;
  margin: 10px 0;
}

.card li {
  margin-bottom: 6px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
  animation: slideUp 0.5s ease forwards;
  font-family: 'Nunito', system-ui, sans-serif;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Nunito', system-ui, sans-serif;
  letter-spacing: 0.2px;
}

.btn.primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn.primary:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  background: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.trust-grid {
  margin-top: 0;
}

.trust-grid ul {
  margin: 0;
  padding-left: 20px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(108, 99, 255, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(108, 99, 255, 0.12);
  border-color: rgba(108, 99, 255, 0.2);
}

.card h3 {
  margin: 0 0 12px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #818CF8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card h3 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-family: 'Fraunces', Georgia, serif;
}

.card h3 a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card h3 a:hover {
  color: var(--primary);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.card-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  opacity: 0.5;
}

.tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--primary-light);
  color: var(--primary);
  font-family: 'Nunito', system-ui, sans-serif;
}

.tag.violet { background: var(--primary-light); color: var(--primary); }
.tag.orange { background: var(--secondary-light); color: #b57b4d; }
.tag.yellow { background: var(--accent-light); color: #9a9256; }
.tag.mint { background: var(--mint-light); color: #4a8a85; }
.tag.coral { background: var(--coral-light); color: #8a5a5a; }
.tag.green { background: var(--green-light); color: #5a8a62; }

.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.info-row .card {
  border-left: 4px solid var(--primary);
}

.info-row .card:nth-child(2) {
  border-left-color: var(--secondary);
}

.info-row .card:nth-child(3) {
  border-left-color: var(--mint);
}

.doctor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(108, 99, 255, 0.06);
  border-left: 5px solid var(--primary);
}

.doctor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 720px) {
  .doctor {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .doctor img {
    margin: 0 auto !important;
    width: 140px !important;
    height: 140px !important;
  }
  .doctor > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .grid .card {
    text-align: center;
  }
  .card-icon {
    display: block;
    text-align: center;
  }
  .card h3 {
    text-align: center;
    margin: 8px 0;
  }
  .card p {
    text-align: center;
  }
  .card ul {
    text-align: left;
    padding-left: 20px;
  }
  .trust-grid {
    grid-template-columns: 1fr !important;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--primary);
  font-size: 18px;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
}

.prev { left: 14px; }
.next { right: 14px; }

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #cfd8df;
  display: inline-block;
  margin: 4px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active { background: var(--primary); }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 40;
}

.modal img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.map-frame {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 12px;
}

footer {
  background: linear-gradient(135deg, #4F46E5, #6366F1);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 20px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito', system-ui, sans-serif;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 30%);
  pointer-events: none;
}

footer h3 {
  color: #fff;
  margin-top: 0;
  font-size: 1.1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

footer a:hover {
  color: var(--accent);
}

footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.7); transition: color 0.2s; font-size: 0.93rem; }
footer ul li a:hover { color: #fff; }

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-brand { 
  font-weight: 800; 
  letter-spacing: -0.5px; 
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Fraunces', Georgia, serif;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.social-icon:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(196, 149, 106, 0.3);
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(108, 99, 255, 0.08);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.1);
}

.resource-icon {
  font-size: 24px;
}

.resource-info h4 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
}

.resource-info p {
  margin: 0;
  font-size: 0.9rem;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
  margin-top: 5px;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.wa {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 30;
  animation: waBounce 0.6s ease 1.5s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.related-links ul { margin: 0; padding-left: 18px; color: var(--muted); }

.hidden-seo { display: none; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFFBF5, #FFF5F0);
  border: 1px solid rgba(255, 140, 66, 0.15);
  box-shadow: var(--shadow);
}

.testimonial-card .name { font-weight: 800; color: var(--primary); font-family: 'Fraunces', serif; font-size: 1rem; }

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid rgba(108, 99, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item p { margin-top: 10px; color: var(--muted); }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(14, 124, 134, 0.1);
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 12px;
}

/* Utility */
.muted { color: var(--muted); }

.highlight-card {
  background: linear-gradient(135deg, var(--primary-light), rgba(229, 165, 116, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--primary);
}

.age-selector {
  display: inline-block;
  padding: 12px 40px 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366F1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  min-width: 200px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.age-selector:hover,
.age-selector:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-xlight);
}

.chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #6366F1, #818CF8);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(108, 99, 255, 0.35);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-bubble:hover {
  transform: scale(1.1);
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-width: 90%;
  height: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-window.open {
  display: flex;
}

.chat-header {
  background: var(--primary);
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: 'Nunito', system-ui, sans-serif;
}

.chat-close {
  cursor: pointer;
  font-size: 22px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chat-close:hover { opacity: 1; }

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f9fa;
}

.chat-chips {
  padding: 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #f8f9fa;
  margin-top: 8px;
}

.chat-chip {
  background: #fff;
  border: 1.5px solid rgba(108, 99, 255, 0.2);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
  font-family: 'Nunito', system-ui, sans-serif;
  box-shadow: 0 2px 8px rgba(108, 99, 255, 0.08);
}

.chat-chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.2);
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid rgba(108, 99, 255, 0.08);
  align-items: center;
}

.chat-send {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Sticky Mobile Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  border-top: 1px solid #eee;
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-right: 1px solid rgba(108, 99, 255, 0.06);
  transition: background 0.2s ease;
}

.sticky-btn:hover {
  background: var(--primary-xlight);
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex !important;
  }
  body {
    padding-bottom: 60px; /* Space for sticky bar */
  }
  .chat-bubble {
    bottom: 80px; /* Move bubble up to not overlap sticky bar */
  }
  .chat-window {
    bottom: 150px;
  }
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  max-width: 85%;
  line-height: 1.6;
  font-family: 'Nunito', system-ui, sans-serif;
}

.chat-msg br + br {
  margin-top: 8px;
  display: block;
  content: '';
}

.chat-msg.bot {
  background: #e9ecef;
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.chat-msg.user a {
  color: #fff;
  text-decoration: underline;
}

/* Vaccination Calculator */
.calc-container {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(108, 99, 255, 0.08);
  max-width: 800px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
}

.calc-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #818CF8, var(--mint));
}

.calc-header {
  text-align: center;
  margin-bottom: 25px;
}

.calc-header h2 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
}

.calc-input-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.calc-input {
  padding: 12px 20px;
  border: 2px solid rgba(108, 99, 255, 0.15);
  border-radius: 12px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.vax-results {
  display: none; /* Shown after calculation */
  animation: fadeIn 0.5s ease;
}

.vax-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.vax-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid rgba(108, 99, 255, 0.1);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.vax-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(108, 99, 255, 0.06);
  font-size: 0.95rem;
}

.vax-table tr:hover {
  background: var(--primary-xlight);
}

.vax-date {
  font-weight: 700;
  color: var(--primary);
}

.vax-status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vax-status-pill.upcoming {
  background: var(--primary-light);
  color: var(--primary);
}

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

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

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

@keyframes waBounce {
  0% { opacity: 0; transform: scale(0); }
  50% { transform: scale(1.15); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(108, 99, 255, 0); }
}

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

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

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hide balloons on mobile */
@media (max-width: 768px) {
  .balloons { display: none; }
}

@media (max-width: 600px) {
  .calc-input-group {
    flex-direction: column;
  }
  .vax-table thead {
    display: none;
  }
  .vax-table tr {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
  }
  .vax-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }
  .vax-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--primary);
  }
}

.chat-input {
  flex: 1;
  border: 1px solid rgba(108, 99, 255, 0.15);
  padding: 8px 14px;
  border-radius: 20px;
  outline: none;
  font-family: 'Nunito', system-ui, sans-serif;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: var(--primary);
}

.chat-send {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .hero { padding: 70px 16px; }
  .section { margin: 50px auto; }
}

/* ============================================
   SUVARNA PRASHAN CALENDAR GRID
   ============================================ */
.sp-calendar-wrapper {
  margin-top: 16px;
}

.sp-calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.sp-month-block {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(108, 99, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-month-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.sp-month-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(108, 99, 255, 0.08);
}

.sp-month-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.sp-month-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 12px 4px;
  gap: 2px;
}

.sp-day-header-cell {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-day-header-cell.weekend {
  color: var(--coral);
}

.sp-calendar-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 12px 12px;
  gap: 2px;
}

.sp-day-cell {
  text-align: center;
  padding: 6px 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  position: relative;
}

.sp-day-cell.other-month {
  color: #c8cdd8;
}

.sp-day-cell.weekend {
  color: var(--muted);
}

.sp-pushya-day {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(108, 99, 255, 0.35);
}

.sp-pushya-day:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.1);
  z-index: 2;
}

.sp-pushya-day.selected {
  background: var(--secondary) !important;
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(255, 140, 66, 0.5);
}

.sp-guru-day {
  background: linear-gradient(135deg, var(--secondary), #b8895a) !important;
  box-shadow: 0 4px 14px rgba(255, 140, 66, 0.5) !important;
}

.sp-guru-day:hover {
  background: #b8895a !important;
}

.sp-past-day {
  opacity: 0.45;
  cursor: not-allowed !important;
}

.sp-past-day:hover {
  transform: none !important;
  box-shadow: none !important;
}

.sp-pushya-day .sp-pushya-star {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 217, 61, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.guru-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-month-no-date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  font-size: 0.78rem;
  color: rgba(108, 99, 255, 0.3);
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
}

/* Reminder Form */
.sp-reminder-section {
  background: linear-gradient(135deg, var(--primary-light), rgba(255, 140, 66, 0.08));
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.sp-reminder-section h3 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.sp-selected-date-display {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(108, 99, 255, 0.12);
  font-weight: 600;
  color: var(--primary-dark);
}

.sp-selected-date-display .date-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.sp-form-group {
  margin-bottom: 14px;
}

.sp-form-group label {
  display: block;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.sp-form-group input,
.sp-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(108, 99, 255, 0.15);
  border-radius: 12px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.sp-form-group input:focus,
.sp-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.sp-reminder-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.sp-reminder-option {
  flex: 1;
  min-width: 120px;
}

.sp-reminder-option input[type="radio"] {
  display: none;
}

.sp-reminder-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 2px solid rgba(108, 99, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  background: #fff;
  transition: all 0.2s ease;
  margin-bottom: 0;
  text-align: center;
}

.sp-reminder-option input:checked + label {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.sp-reminder-option label:hover {
  border-color: var(--primary-light);
  background: var(--primary-xlight);
}

.sp-whatsapp-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(37, 211, 102, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.sp-whatsapp-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #25d366;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.sp-whatsapp-consent label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 500;
}

.sp-whatsapp-consent a {
  color: #25d366;
  font-weight: 700;
}

.sp-submit-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sp-submit-row .btn {
  flex: 1;
  min-width: 160px;
}

.sp-success-msg {
  display: none;
  background: linear-gradient(135deg, #e8f8f0, #f0fff4);
  border: 1px solid rgba(78, 203, 119, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 16px;
  text-align: center;
}

.sp-success-msg.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.sp-success-msg h4 {
  color: #2a9d55;
  font-family: 'Fraunces', serif;
  margin-bottom: 8px;
}

.sp-success-msg p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.sp-whatsapp-reminder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.2s ease;
}

.sp-whatsapp-reminder-link:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* My Reminders Section */
.sp-my-reminders {
  margin-top: 16px;
}

.sp-reminder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid rgba(108, 99, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 10px;
  gap: 12px;
}

.sp-reminder-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-reminder-icon {
  font-size: 24px;
}

.sp-reminder-details strong {
  color: var(--primary-dark);
  font-size: 0.95rem;
  display: block;
}

.sp-reminder-details span {
  font-size: 0.8rem;
  color: var(--muted);
}

.sp-reminder-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--coral);
  font-size: 18px;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.sp-reminder-remove:hover {
  opacity: 1;
}

.sp-empty-reminders {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sp-empty-reminders span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .sp-dates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-reminder-options {
    flex-direction: column;
  }
}

/* ─── Blog Page ────────────────────────────────────────────────────────── */
.blog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.blog-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.blog-tab:hover {
  color: var(--primary);
  background: rgba(108, 99, 255, 0.05);
}

.blog-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-count {
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.blog-tab.active .tab-count {
  background: var(--accent);
  color: var(--dark);
}

.blog-panel {
  display: none;
}

.blog-panel.active {
  display: block;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-filter-btn {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--muted);
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.load-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #7C7FF2);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}

.btn-load-more:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.45);
}

.btn-load-more:active {
  transform: scale(0.98);
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.no-more-items {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 16px;
}

/* ─── Lite YouTube Embed (Facade Pattern) ──────────────────────────────── */
.video-gallery,
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.placeholder-text {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.placeholder-text i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

.placeholder-text p {
  font-size: 1.1rem;
  font-weight: 600;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(108, 99, 255, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 6px 24px rgba(108, 99, 255, 0.15);
  transform: translateY(-2px);
}

.video-card-body {
  padding: 16px;
}

.video-card-body .tag {
  margin-bottom: 8px;
  display: inline-block;
}

.video-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin: 4px 0 8px;
  color: var(--dark);
}

.video-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

lite-youtube {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

.yt-facade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.yt-facade:hover .yt-thumb {
  opacity: 1;
}

.yt-play-btn {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-facade:hover .yt-play-btn {
  transform: scale(1.12);
}

.yt-loading-bar {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

lite-youtube.yt-activated .yt-facade {
  display: none;
}

lite-youtube.yt-activated .yt-loading-bar {
  opacity: 1;
}

lite-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Emergency Section ─────────────────────────────────────────────────── */
.emergency-banner {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  margin: 0 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.3);
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.emergency-banner .emergency-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.emergency-banner h2 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.emergency-banner p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.emergency-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.emergency-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #fff;
}

.emergency-item i {
  color: #FCA5A5;
  margin-top: 2px;
  flex-shrink: 0;
}

.emergency-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-emergency-call {
  background: #fff;
  color: #DC2626;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-emergency-call:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #DC2626;
}

.btn-emergency-911 {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-emergency-911:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ─── Online Appointment Modal ─────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: var(--border);
  color: var(--dark);
}

.modal-box h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

.modal-box .modal-subhead {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.92rem;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

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

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

.form-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select {
  border-color: #DC2626;
}

.form-group.error .form-error {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-consent label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h4 {
  color: var(--primary);
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
}

.form-success p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.form-success a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.form-success a:hover {
  transform: scale(1.04);
  color: #fff;
}

/* ─── Google Reviews ────────────────────────────────────────────────────── */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.reviews-header h2 {
  margin: 0;
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  padding: 8px 16px;
  border-radius: 30px;
}

.reviews-badge .stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.reviews-badge .rating-text {
  font-weight: 800;
  color: #92400E;
  font-size: 0.9rem;
}

.reviews-badge .rating-source {
  font-size: 0.75rem;
  color: #92400E;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(108,99,255,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid var(--border);
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(108,99,255,0.13);
  transform: translateY(-2px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C7FF2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.review-location {
  font-size: 0.78rem;
  color: var(--muted);
}

.review-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.review-google-link:hover {
  text-decoration: underline;
}

/* ─── Case Studies ──────────────────────────────────────────────────────── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(108,99,255,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid var(--border);
}

.case-card:hover {
  box-shadow: 0 8px 28px rgba(108,99,255,0.14);
  transform: translateY(-3px);
}

.case-card-header {
  background: linear-gradient(135deg, var(--primary), #7C7FF2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-card-header .case-icon {
  font-size: 1.4rem;
}

.case-card-header .case-category {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-card-header .case-title {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin: 0;
}

.case-card-body {
  padding: 20px;
}

.case-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.case-before, .case-after {
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
}

.case-before {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.case-after {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.case-before-label, .case-after-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.case-before-label { color: #DC2626; }
.case-after-label { color: #16A34A; }

.case-before-text, .case-after-text {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.4;
}

.case-arrow {
  font-size: 1.4rem;
  color: var(--muted);
}

.case-card-body h4 {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-card-body p {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 0 0 12px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tag {
  background: var(--bg);
  color: var(--muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ─── Free PDF Download / Lead Capture ─────────────────────────────────── */
.pdf-download-section {
  background: linear-gradient(135deg, #1E1B4B, #312E81);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}

.pdf-download-section h2 {
  color: #fff;
  margin: 0 0 10px;
}

.pdf-download-section .pdf-subhead {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.pdf-cover-preview {
  background: linear-gradient(135deg, #4338CA, #6366F1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(67,56,202,0.4);
}

.pdf-cover-preview .pdf-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.pdf-cover-preview h3 {
  color: #fff;
  margin: 0 0 4px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.pdf-cover-preview p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0 0 12px;
}

.pdf-cover-preview .pdf-pages {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.pdf-chapters {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pdf-chapters li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.pdf-chapters li:last-child {
  border-bottom: none;
}

.pdf-chapters li i {
  color: #A5B4FC;
  width: 18px;
  text-align: center;
}

.lead-capture-form {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}

.lead-capture-form h3 {
  color: #fff;
  margin: 0 0 4px;
  font-family: 'Fraunces', serif;
}

.lead-capture-form .lead-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.lead-capture-form input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.lead-capture-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.lead-capture-form input:focus {
  outline: none;
  border-color: #A5B4FC;
}

.lead-capture-form .btn-download {
  width: 100%;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

.lead-capture-form .btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245,158,11,0.5);
}

.lead-capture-form .lead-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 10px;
}

/* ─── Development Milestone Tracker ────────────────────────────────────── */
.milestone-tracker {
  max-width: 700px;
  margin: 0 auto;
}

.milestone-age-header {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #7C7FF2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px 12px 0 0;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.milestone-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 12px rgba(108,99,255,0.08);
}

.milestone-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 8px 4px;
  border-radius: 10px;
  transition: background 0.2s;
  user-select: none;
}

.milestone-step:hover {
  background: rgba(108,99,255,0.06);
}

.milestone-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.milestone-step.active .milestone-step-circle {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(108,99,255,0.4);
  transform: scale(1.1);
}

.milestone-step.done .milestone-step-circle {
  background: #22C55E;
  color: #fff;
  border-color: #22C55E;
}

.milestone-step-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.milestone-step.active .milestone-step-label {
  color: var(--primary);
  font-weight: 800;
}

.milestone-step-connector {
  flex: 1;
  height: 3px;
  background: var(--border);
  margin: 0 2px;
  margin-bottom: 26px;
  border-radius: 2px;
  min-width: 12px;
  transition: background 0.3s;
}

.milestone-step-connector.done {
  background: #22C55E;
}

.milestone-results {
  background: var(--bg);
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--border);
}

.milestone-result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.milestone-result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.milestone-result-item:first-child {
  padding-top: 0;
}

.milestone-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(108,99,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.milestone-result-content h4 {
  margin: 0 0 2px;
  font-size: 0.9rem;
  color: var(--dark);
}

.milestone-result-content p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.milestone-result-actions {
  text-align: center;
  margin-top: 20px;
}

/* ─── Milestone Age Tabs ────────────────────────────────────────────────── */
.milestone-nav {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(108,99,255,0.06);
}

.milestone-age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.milestone-tab {
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.milestone-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(108,99,255,0.05);
}

.milestone-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}

.milestone-result-header {
  text-align: center;
  margin-bottom: 16px;
}

.milestone-result-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0;
}

/* ─── Seasonal Alerts ───────────────────────────────────────────────────── */
.seasonal-alerts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.seasonal-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(108,99,255,0.07);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}

.seasonal-card:hover {
  box-shadow: 0 6px 20px rgba(108,99,255,0.13);
  transform: translateY(-2px);
}

.seasonal-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.seasonal-emoji {
  font-size: 1.5rem;
}

.seasonal-badge {
  background: #FEF9C3;
  color: #854D0E;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.seasonal-badge.active-alert {
  background: #FEE2E2;
  color: #DC2626;
  animation: pulse 2s infinite;
}

.seasonal-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--dark);
}

.seasonal-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.seasonal-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seasonal-tips li {
  font-size: 0.82rem;
  color: var(--dark);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.seasonal-tips li i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@media (max-width: 700px) {
  .pdf-download-section {
    grid-template-columns: 1fr;
  }

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

  .case-comparison {
    grid-template-columns: 1fr;
  }

  .case-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
