:root {
  --tulsi: #4B7A3F;
  --turmeric: #D8A928;
  --wash: #FFF6E5;
  --herbal-brown: #4B2E1F;
  --cream: #FFF6E5;
  --clay: #A85F3E;
  --ink: #4B2E1F;
  --muted: #4B2E1F;
  --line: rgba(216, 169, 40, 0.28);
  --shadow: 0 24px 70px rgba(75, 122, 63, 0.18);
  --shadow-strong: 0 34px 90px rgba(75, 46, 31, 0.26);
  --ease-luxury: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--turmeric);
  color: var(--cream);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 229, 0.88);
  border-bottom: 1px solid rgba(216, 169, 40, 0.16);
  backdrop-filter: blur(16px);
  transition: box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 246, 229, 0.94);
  box-shadow: 0 14px 35px rgba(75, 122, 63, 0.1);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: min-height 260ms var(--ease-luxury);
}

.site-header.is-scrolled .navbar {
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-block;
  border: 1px solid var(--turmeric);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, var(--turmeric) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 64%, var(--tulsi) 0 12px, transparent 13px),
    linear-gradient(135deg, rgba(216, 169, 40, 0.32), rgba(255, 246, 229, 0.2));
  box-shadow: 0 0 0 5px rgba(216, 169, 40, 0.12);
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1;
  color: var(--tulsi);
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--herbal-brown);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(28, 42, 34, 0.82);
  font-weight: 600;
  font-size: 0.93rem;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
}

.mobile-book-link {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  background: var(--turmeric);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--tulsi);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 169, 40, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 246, 229, 0.86);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--tulsi);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms var(--ease-luxury), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 56%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 246, 229, 0.28), transparent);
  transition: left 520ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 130%;
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--turmeric), var(--clay));
  box-shadow: 0 18px 35px rgba(216, 169, 40, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(216, 169, 40, 0.34);
}

.btn-secondary {
  color: var(--cream);
  background: var(--tulsi);
  box-shadow: 0 18px 35px rgba(75, 122, 63, 0.18);
}

.btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 246, 229, 0.58);
  background: rgba(255, 246, 229, 0.08);
  backdrop-filter: blur(12px);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 86svh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(75, 46, 31, 0.84), rgba(75, 122, 63, 0.58), rgba(168, 95, 62, 0.28)),
    radial-gradient(circle at 78% 30%, rgba(216, 169, 40, 0.42), transparent 34%),
    url("../images/tulsi-hero-clinic.jpg"),
    linear-gradient(135deg, #4B2E1F, #4B7A3F 54%, #4B2E1F);
  background-size: auto, auto, 105% auto, auto;
  background-position: center, 78% 30%, center, center;
}

body[data-motion-ready="true"] .hero {
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: translateY(var(--parallax-y, 0));
  background:
    radial-gradient(circle at 82% 44%, rgba(255, 246, 229, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 60%, rgba(216, 169, 40, 0.18) 0 80px, transparent 82px),
    repeating-linear-gradient(45deg, rgba(216, 169, 40, 0.07) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.04) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(255, 246, 229, 0.035) 0 1px, transparent 1px 70px);
  opacity: 0.82;
  animation: herbalOverlaySweep 9s ease-in-out infinite;
}

.hero::after,
.page-hero::after,
.herbal-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(216, 169, 40, 0.32);
  background:
    repeating-radial-gradient(circle, transparent 0 16px, rgba(216, 169, 40, 0.18) 17px 18px),
    radial-gradient(circle, rgba(216, 169, 40, 0.14), transparent 62%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 11% 5% auto auto;
  width: min(420px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(216, 169, 40, 0.28), transparent 20deg 40deg, rgba(255, 246, 229, 0.1) 42deg 58deg, transparent 60deg 80deg, rgba(216, 169, 40, 0.24) 82deg),
    radial-gradient(circle, rgba(216, 169, 40, 0.14), transparent 62%);
  filter: blur(0.2px);
  opacity: 0.42;
  animation: herbalPatternPulse 12s ease-in-out infinite;
}

.hero-content {
  max-width: 690px;
  padding-block: 72px;
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.hero-content.reveal > .eyebrow,
.hero-content.reveal > h1,
.hero-content.reveal > .hero-copy,
.hero-content.reveal > .hero-actions,
.hero-content.reveal > .hero-metrics {
  opacity: 0;
  transform: translateY(18px);
}

.hero-content.reveal.is-visible > .eyebrow,
.hero-content.reveal.is-visible > h1,
.hero-content.reveal.is-visible > .hero-copy,
.hero-content.reveal.is-visible > .hero-actions,
.hero-content.reveal.is-visible > .hero-metrics {
  animation: heroTextIn 720ms var(--ease-luxury) forwards;
}

.hero-content.reveal.is-visible > h1 {
  animation-delay: 90ms;
}

.hero-content.reveal.is-visible > .hero-copy {
  animation-delay: 180ms;
}

.hero-content.reveal.is-visible > .hero-actions {
  animation-delay: 270ms;
}

.hero-content.reveal.is-visible > .hero-metrics {
  animation-delay: 360ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--turmeric);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.eyebrow.gold {
  color: var(--turmeric);
}

.hero h1,
.page-hero h1,
.section-title,
.section-heading h2,
.split-copy h2,
.doctor-copy h2,
.cta-content h2,
.feature-band h2,
.note-panel h2,
.form-header h2,
.contact-panel h2,
.appointment-aside h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--tulsi);
}

.hero h1 {
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-copy {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 246, 229, 0.88);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  margin-top: 34px;
  border: 1px solid rgba(216, 169, 40, 0.36);
  background: rgba(255, 246, 229, 0.08);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid rgba(216, 169, 40, 0.24);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  color: var(--turmeric);
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 246, 229, 0.8);
  font-size: 0.9rem;
}

.floating-leaf {
  position: absolute;
  width: 62px;
  height: 28px;
  border-radius: 62px 0;
  background: linear-gradient(135deg, rgba(255, 246, 229, 0.5), rgba(216, 169, 40, 0.2));
  opacity: 0.45;
  animation: floatLeaf 8s ease-in-out infinite;
}

.floating-leaf::after {
  content: "";
  position: absolute;
  inset: 50% 8px auto 8px;
  height: 1px;
  background: rgba(255, 246, 229, 0.48);
}

.leaf-one {
  top: 22%;
  right: 24%;
}

.leaf-two {
  top: 56%;
  right: 10%;
  animation-delay: -2s;
  transform: rotate(20deg);
}

.leaf-three {
  bottom: 18%;
  left: 8%;
  animation-delay: -4s;
  transform: rotate(-18deg);
}

@keyframes floatLeaf {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 14px -18px; rotate: 7deg; }
}

@keyframes herbalPatternPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.36; }
  50% { transform: scale(1.04) rotate(4deg); opacity: 0.52; }
}

@keyframes heroBackdropDrift {
  0% {
    background-size: auto, auto, 105% auto, auto;
    background-position: center, 78% 30%, center, center;
  }
  100% {
    background-size: auto, auto, 114% auto, auto;
    background-position: center, 72% 24%, 54% 48%, center;
  }
}

@keyframes herbalOverlaySweep {
  0%, 100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.72;
  }
  50% {
    background-position: 20px 0, -18px 12px, 72px 0, 30px 0, 0 40px;
    opacity: 0.94;
  }
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 169, 40, 0.35); transform: scale(0.92); }
  45% { box-shadow: 0 0 0 16px rgba(216, 169, 40, 0); transform: scale(1.08); }
  100% { box-shadow: 0 0 0 6px rgba(216, 169, 40, 0.16); transform: scale(1); }
}

@keyframes herbalParticles {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.28; }
  50% { transform: translate3d(-18px, -28px, 0) rotate(18deg); opacity: 0.58; }
}

@keyframes revealGlow {
  0% { filter: blur(5px); }
  55% { filter: blur(0); }
  100% { filter: none; }
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

body[data-motion-ready="true"] .section::before {
  content: "";
  position: absolute;
  top: 16%;
  right: clamp(18px, 7vw, 110px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--turmeric);
  box-shadow:
    -42px 92px 0 rgba(216, 169, 40, 0.24),
    36px 168px 0 rgba(75, 122, 63, 0.18),
    -104px 226px 0 rgba(216, 169, 40, 0.18);
  opacity: 0.45;
  animation: herbalParticles 10s ease-in-out infinite;
}

.section-ivory {
  background: var(--cream);
}

.section-sand,
.trust-section {
  background: linear-gradient(180deg, var(--wash), #FFF6E5);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading::after,
.split-copy::before,
.doctor-copy::before,
.form-header::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--turmeric), transparent);
  transform-origin: left;
}

.section-heading.reveal::after,
.split-copy.reveal::before,
.doctor-copy.reveal::before,
.form-header.reveal::after {
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms;
}

.section-heading.reveal.is-visible::after,
.split-copy.reveal.is-visible::before,
.doctor-copy.reveal.is-visible::before,
.form-header.reveal.is-visible::after {
  transform: scaleX(1);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-title,
.split-copy h2,
.doctor-copy h2,
.feature-band h2,
.note-panel h2,
.contact-panel h2,
.appointment-aside h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  line-height: 1.14;
}

.section-heading p:last-child,
.split-copy p,
.doctor-copy p,
.feature-band p,
.note-panel p,
.contact-panel p {
  color: var(--muted);
}

.trust-grid,
.card-grid,
.value-grid,
.program-grid,
.testimonial-grid,
.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card,
.service-card,
.value-card,
.program-card,
.testimonial-card.static,
.blog-card,
.contact-panel,
.appointment-form,
.aside-card,
.note-panel,
.feature-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 169, 40, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 246, 229, 0.95), rgba(243, 222, 193, 0.76));
  box-shadow: var(--shadow);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 229, 0.72);
}

.trust-card,
.service-card,
.value-card,
.program-card,
.testimonial-card.static,
.blog-card,
.contact-panel,
.appointment-form,
.aside-card,
.note-panel,
.feature-band,
.faq-list details {
  position: relative;
  overflow: hidden;
}

.trust-card::before,
.service-card::before,
.value-card::before,
.program-card::before,
.testimonial-card.static::before,
.blog-card::before,
.contact-panel::before,
.appointment-form::before,
.aside-card::before,
.note-panel::before,
.feature-band::before,
.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--turmeric), transparent);
  transition: transform 480ms ease;
}

.trust-card:hover::before,
.service-card:hover::before,
.value-card:hover::before,
.program-card:hover::before,
.testimonial-card.static:hover::before,
.blog-card:hover::before,
.contact-panel:hover::before,
.appointment-form:hover::before,
.aside-card:hover::before,
.note-panel:hover::before,
.feature-band:hover::before,
.faq-list details:hover::before {
  transform: scaleX(1);
}

.trust-card,
.service-card,
.value-card,
.program-card {
  padding: 28px;
  transition: transform 320ms var(--ease-luxury), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.trust-card:hover,
.service-card:hover,
.value-card:hover,
.program-card:hover,
.blog-card:hover,
.gallery-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 34px 88px rgba(75, 46, 31, 0.22);
  border-color: rgba(216, 169, 40, 0.55);
}

.trust-card h3,
.service-card h3,
.value-card h3,
.program-card h3,
.dark-card h3,
.timeline-item h3,
.testimonial-card h3,
.blog-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  color: var(--tulsi);
  font-size: 1.16rem;
  line-height: 1.2;
}

.trust-card p,
.service-card p,
.value-card p,
.program-card p,
.timeline-item p,
.testimonial-card blockquote,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.icon-badge,
.service-mark {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 169, 40, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--turmeric) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(75, 122, 63, 0.12), rgba(216, 169, 40, 0.22));
}

.service-card a,
.program-card a,
.blog-card a,
.text-link,
.link-button {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--herbal-brown);
  font-weight: 900;
  border: 0;
  background: transparent;
  padding: 0;
}

.service-card a::after,
.program-card a::after,
.blog-card a::after,
.text-link::after,
.link-button::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: var(--turmeric);
  transition: width 220ms ease;
}

.service-card a:hover::after,
.program-card a:hover::after,
.blog-card a:hover::after,
.text-link:hover::after,
.link-button:hover::after {
  width: 36px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 78px);
}

.split-copy p {
  font-size: 1.02rem;
}

.luxury-visual,
.gallery-card,
.blog-thumb,
.map-placeholder,
.footer-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 40, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.86), rgba(75, 46, 31, 0.66)),
    radial-gradient(circle at 32% 30%, rgba(216, 169, 40, 0.48), transparent 30%),
    linear-gradient(45deg, var(--herbal-brown), var(--tulsi));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.luxury-visual {
  min-height: 480px;
  margin: 0;
}

.luxury-visual::before,
.gallery-card::before,
.blog-thumb::before,
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 246, 229, 0.24);
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(255, 246, 229, 0.16) 45%, transparent 54%),
    linear-gradient(90deg, rgba(75, 46, 31, 0.08), transparent),
    repeating-linear-gradient(45deg, rgba(216, 169, 40, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.05) 0 1px, transparent 1px 44px);
  pointer-events: none;
  transform: translateX(-10px);
  transition: transform 520ms var(--ease-luxury), border-color 320ms ease;
}

.luxury-visual::after,
.gallery-card::after,
.blog-thumb::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 12%;
  top: 18%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 10px, rgba(216, 169, 40, 0.22) 11px 12px),
    radial-gradient(circle, rgba(255, 246, 229, 0.18), transparent 60%);
}

.luxury-visual:hover::before,
.gallery-card:hover::before,
.blog-card:hover .blog-thumb::before {
  transform: translateX(10px);
  border-color: rgba(216, 169, 40, 0.42);
}

.luxury-visual figcaption,
.gallery-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--cream);
  font-weight: 800;
  background: rgba(75, 46, 31, 0.52);
  border: 1px solid rgba(216, 169, 40, 0.36);
  border-radius: var(--radius);
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}

.visual-reception {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.14), rgba(75, 46, 31, 0.32)),
    radial-gradient(circle at 70% 36%, rgba(216, 169, 40, 0.62), transparent 18%),
    url("../images/tulsi-reception.jpg"),
    linear-gradient(90deg, var(--herbal-brown), var(--tulsi));
}

.visual-therapy {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.18), rgba(75, 46, 31, 0.32)),
    radial-gradient(circle at 28% 42%, rgba(216, 169, 40, 0.7), transparent 19%),
    url("../images/tulsi-therapy-room.jpg"),
    linear-gradient(120deg, #4B2E1F, #4B7A3F);
}

.visual-herbs {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.18), rgba(75, 46, 31, 0.22)),
    radial-gradient(circle at 26% 34%, rgba(255, 246, 229, 0.38), transparent 18%),
    url("../images/tulsi-herbal-jars.jpg"),
    linear-gradient(120deg, #4B7A3F, var(--clay));
}

.visual-consult,
.visual-lounge {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.18), rgba(75, 46, 31, 0.28)),
    radial-gradient(circle at 58% 34%, rgba(255, 246, 229, 0.26), transparent 22%),
    url("../images/tulsi-consultation-room.jpg"),
    linear-gradient(120deg, #4B7A3F, #4B2E1F);
}

.visual-lounge {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.18), rgba(75, 46, 31, 0.28)),
    url("../images/tulsi-family-lounge.jpg"),
    linear-gradient(120deg, #4B7A3F, #4B2E1F);
}

.visual-lamp,
.visual-oils {
  background:
    linear-gradient(135deg, rgba(75, 46, 31, 0.18), rgba(75, 122, 63, 0.28)),
    radial-gradient(circle at 50% 30%, rgba(216, 169, 40, 0.74), transparent 20%),
    url("../images/tulsi-herbal-jars.jpg"),
    linear-gradient(120deg, #4B2E1F, #4B7A3F);
}

.visual-oils {
  background:
    linear-gradient(135deg, rgba(75, 46, 31, 0.18), rgba(75, 122, 63, 0.28)),
    url("../images/tulsi-herbal-jars.jpg"),
    linear-gradient(120deg, #4B2E1F, #4B7A3F);
}

.visual-ceiling {
  background:
    linear-gradient(135deg, rgba(75, 122, 63, 0.2), rgba(75, 46, 31, 0.3)),
    conic-gradient(from 45deg at 50% 32%, rgba(216, 169, 40, 0.4), transparent 18deg 42deg, rgba(255, 246, 229, 0.12) 44deg 56deg, transparent 58deg 90deg),
    url("../images/tulsi-herbal-jars.jpg"),
    linear-gradient(120deg, #4B7A3F, #4B2E1F);
}

.herbal-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 169, 40, 0.28), transparent 34%),
    linear-gradient(135deg, #4B2E1F, var(--tulsi));
}

.herbal-section h2,
.herbal-section .split-copy h2,
.herbal-section .section-heading h2 {
  color: var(--cream);
}

.herbal-section p {
  color: rgba(255, 246, 229, 0.78);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.tag-list span,
.doctor-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(216, 169, 40, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--tulsi);
  background: rgba(255, 246, 229, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.herbal-section .tag-list span {
  color: var(--cream);
  background: rgba(255, 246, 229, 0.08);
}

.doctor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 18%, rgba(216, 169, 40, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 246, 229, 0.96), rgba(243, 222, 193, 0.84));
  box-shadow: var(--shadow);
}

.doctor-portrait {
  min-height: 360px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 169, 40, 0.38);
  color: rgba(255, 246, 229, 0.86);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  background:
    linear-gradient(180deg, rgba(75, 46, 31, 0.04), rgba(75, 46, 31, 0.38)),
    url("../images/tulsi-consultation-room.jpg"),
    radial-gradient(circle at 50% 25%, rgba(216, 169, 40, 0.48), transparent 18%),
    linear-gradient(160deg, var(--tulsi), var(--herbal-brown));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 16px rgba(255, 246, 229, 0.06);
}

.doctor-portrait span {
  align-self: end;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 169, 40, 0.42);
  border-radius: var(--radius);
  background: rgba(75, 46, 31, 0.62);
  color: var(--cream);
  font-size: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.doctor-portrait.large {
  min-height: 460px;
}

.doctor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.doctor-qualification {
  font-weight: 900;
  color: var(--herbal-brown) !important;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.large-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-item {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 246, 229, 0.72);
  box-shadow: 0 18px 45px rgba(75, 122, 63, 0.1);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--cream);
  background: var(--tulsi);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216, 169, 40, 0.16);
  font-weight: 900;
}

.timeline-item.is-visible span {
  animation: badgePulse 1.8s ease-in-out 1;
}

.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  height: 100%;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 246, 229, 0.94), rgba(255, 246, 229, 0.68));
  box-shadow: var(--shadow);
}

.testimonial-shell .testimonial-card {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.testimonial-shell .testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-card.static {
  display: block;
  height: auto;
  opacity: 1;
  transform: none;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  color: var(--tulsi);
}

.testimonial-card.static blockquote {
  font-size: 1.05rem;
}

.rating {
  margin: 0 0 14px;
  color: var(--turmeric);
  font-weight: 900;
}

.testimonial-card span {
  color: var(--herbal-brown);
  font-weight: 800;
}

.carousel-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 14px 28px rgba(75, 122, 63, 0.12);
}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--tulsi);
  border-left: 2px solid var(--tulsi);
}

.carousel-btn.prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.carousel-btn.next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.gallery-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  min-height: 280px;
  margin: 0;
  transition: transform 320ms var(--ease-luxury), box-shadow 320ms ease, filter 320ms ease;
}

.gallery-page-grid .gallery-card {
  min-height: 320px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.compact-faq {
  gap: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 246, 229, 0.88);
  box-shadow: 0 14px 30px rgba(75, 122, 63, 0.08);
}

.faq-list summary {
  position: relative;
  padding: 17px 50px 17px 18px;
  color: var(--tulsi);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--turmeric);
  border-bottom: 2px solid var(--turmeric);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
  top: 28px;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 112px) 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 22%, rgba(216, 169, 40, 0.4), transparent 28%),
    linear-gradient(135deg, var(--tulsi), #4B2E1F);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.04) 0 1px, transparent 1px 70px);
}

.cta-content {
  position: relative;
  max-width: 820px;
}

.cta-content h2 {
  color: var(--cream);
  max-width: 760px;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}

.cta-content p {
  max-width: 650px;
  color: rgba(255, 246, 229, 0.82);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 10vw, 118px) 0 clamp(58px, 7vw, 86px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(75, 46, 31, 0.86), rgba(75, 122, 63, 0.58), rgba(168, 95, 62, 0.24)),
    radial-gradient(circle at 82% 20%, rgba(216, 169, 40, 0.42), transparent 32%),
    url("../images/tulsi-hero-clinic.jpg"),
    linear-gradient(135deg, #4B2E1F, #4B7A3F 48%, #4B2E1F);
  background-size: cover;
  background-position: center;
}

body[data-motion-ready="true"] .page-hero {
  animation: pageHeroDrift 16s ease-in-out infinite alternate;
}

.page-hero .container.reveal {
  opacity: 1;
  transform: none;
}

.page-hero .container.reveal > * {
  opacity: 0;
  transform: translateY(18px);
}

.page-hero .container.reveal.is-visible > * {
  animation: heroTextIn 680ms var(--ease-luxury) forwards;
}

.page-hero .container.reveal.is-visible > :nth-child(2) {
  animation-delay: 90ms;
}

.page-hero .container.reveal.is-visible > :nth-child(3) {
  animation-delay: 180ms;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 1.14;
}

@keyframes pageHeroDrift {
  0% {
    background-size: auto, auto, 104% auto, auto;
    background-position: center, 82% 20%, center, center;
  }
  100% {
    background-size: auto, auto, 110% auto, auto;
    background-position: center, 76% 18%, 52% 48%, center;
  }
}

.page-hero p:last-child {
  max-width: 620px;
  color: rgba(255, 246, 229, 0.82);
  font-size: 1rem;
}

.value-grid,
.program-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 34px;
  align-items: start;
  padding: clamp(26px, 5vw, 46px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--turmeric);
  border-bottom: 2px solid var(--turmeric);
  transform: rotate(-45deg);
}

.dark-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dark-card {
  padding: 28px;
  border: 1px solid rgba(216, 169, 40, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 246, 229, 0.08);
  backdrop-filter: blur(14px);
}

.dark-card h3 {
  color: var(--turmeric);
}

.dark-card p {
  margin: 0;
  color: rgba(255, 246, 229, 0.78);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.blog-thumb {
  height: 210px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-card p,
.blog-card h2,
.blog-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.blog-card p {
  margin-top: 22px;
  color: var(--turmeric);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.blog-card h2 {
  min-height: 84px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.blog-card a {
  margin-bottom: 24px;
}

.contact-grid,
.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.appointment-form,
.aside-card,
.note-panel {
  padding: clamp(24px, 5vw, 42px);
}

address {
  color: var(--muted);
  font-style: normal;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-placeholder {
  min-height: 460px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-align: center;
}

.quick-help-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-help-grid button {
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--tulsi);
  background: rgba(255, 246, 229, 0.86);
  box-shadow: 0 16px 35px rgba(75, 122, 63, 0.1);
  font-weight: 900;
  transition: transform 260ms var(--ease-luxury), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.quick-help-grid button:hover {
  transform: translateY(-5px);
  border-color: var(--turmeric);
  background: linear-gradient(145deg, rgba(255, 246, 229, 0.96), rgba(243, 222, 193, 0.84));
  box-shadow: 0 22px 48px rgba(75, 46, 31, 0.16);
}

.appointment-form label,
.wa-form label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--tulsi);
  font-weight: 900;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea,
.wa-form input,
.wa-form select {
  width: 100%;
  border: 1px solid rgba(216, 169, 40, 0.34);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus,
.wa-form input:focus,
.wa-form select:focus {
  border-color: var(--turmeric);
  box-shadow: 0 0 0 4px rgba(216, 169, 40, 0.14);
}

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

.appointment-form .btn {
  margin-top: 22px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.appointment-aside {
  display: grid;
  gap: 22px;
}

.appointment-aside .luxury-visual {
  min-height: 330px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 246, 229, 0.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 169, 40, 0.2), transparent 26%),
    linear-gradient(135deg, #4B2E1F, var(--tulsi));
}

body[data-motion-ready="true"] .site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(216, 169, 40, 0.12) 48%, transparent 56%);
  transform: translateX(-115%);
  animation: footerHerbalSweep 9s ease-in-out infinite;
}

@keyframes footerHerbalSweep {
  0%, 18% { transform: translateX(-115%); }
  55%, 100% { transform: translateX(115%); }
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  gap: 28px;
  padding: 44px 0 22px;
}

.footer-logo strong {
  color: var(--cream);
}

.footer-logo small {
  color: var(--turmeric);
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--turmeric);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--turmeric);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(216, 169, 40, 0.46);
  border-radius: 50%;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-map {
  min-height: 72px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  color: rgba(255, 246, 229, 0.78);
  box-shadow: none;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(216, 169, 40, 0.28);
  padding: 14px 0 18px;
  font-size: 0.78rem;
}

.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  filter: drop-shadow(0 18px 34px rgba(75, 46, 31, 0.28));
}

.wa-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  border: 1px solid rgba(216, 169, 40, 0.62);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 246, 229, 0.12), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(216, 169, 40, 0.34), transparent 36%),
    linear-gradient(135deg, var(--clay), var(--tulsi) 42%, var(--herbal-brown));
  box-shadow:
    0 18px 42px rgba(75, 46, 31, 0.36),
    inset 0 0 0 1px rgba(255, 246, 229, 0.08);
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms ease, border-color 260ms ease;
}

.wa-fab::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(216, 169, 40, 0.28);
  animation: carePulse 2.2s ease-out infinite;
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 46%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 246, 229, 0.22), transparent);
  transition: left 620ms ease;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(216, 169, 40, 0.82);
  box-shadow: 0 24px 54px rgba(75, 46, 31, 0.42);
}

.wa-fab:hover::after,
.wa-fab:focus-visible::after {
  left: 130%;
}

.wa-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--tulsi);
  background:
    radial-gradient(circle at 50% 32%, var(--cream) 0 24%, var(--turmeric) 25% 48%, var(--turmeric) 49% 100%);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 229, 0.62),
    0 0 0 4px rgba(216, 169, 40, 0.18);
}

.wa-avatar span {
  position: relative;
  z-index: 1;
}

.wa-avatar i {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--herbal-brown);
  border-radius: 50%;
  background: var(--tulsi);
  box-shadow: 0 0 0 4px rgba(75, 122, 63, 0.15);
  animation: statusGlow 1.8s ease-in-out infinite;
}

.wa-label {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.wa-label strong {
  font-size: 0.93rem;
  line-height: 1;
}

.wa-label small {
  color: rgba(255, 246, 229, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes carePulse {
  from { transform: scale(0.94); opacity: 0.72; }
  to { transform: scale(1.2); opacity: 0; }
}

@keyframes statusGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(75, 122, 63, 0.12); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(75, 122, 63, 0.02); }
}

.wa-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(384px, calc(100vw - 28px));
  border: 1px solid rgba(216, 169, 40, 0.52);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 169, 40, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 229, 0.98), rgba(243, 222, 193, 0.99));
  box-shadow: 0 34px 88px rgba(75, 46, 31, 0.36);
  overflow: hidden;
  max-height: min(78vh, 680px);
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  transform-origin: 100% 100%;
  pointer-events: none;
  transition: opacity 280ms var(--ease-luxury), transform 280ms var(--ease-luxury);
}

.wa-widget.is-open .wa-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 14px;
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(255, 246, 229, 0.08), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(216, 169, 40, 0.36), transparent 38%),
    linear-gradient(135deg, var(--tulsi), #4B2E1F);
}

.wa-head-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wa-head-main .wa-avatar {
  width: 48px;
  height: 48px;
}

.wa-panel-head p,
.wa-panel-head h2 {
  margin: 0;
}

.wa-panel-head p {
  color: var(--turmeric);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.wa-panel-head h2 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.28rem;
  line-height: 1.1;
}

.wa-panel-head small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 246, 229, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

[data-wa-close] {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 246, 229, 0.28);
  border-radius: 50%;
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

[data-wa-close]:hover,
[data-wa-close]:focus-visible {
  transform: rotate(90deg);
  border-color: rgba(216, 169, 40, 0.68);
}

[data-wa-close]::before,
[data-wa-close]::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  width: 14px;
  height: 2px;
  background: var(--cream);
}

[data-wa-close]::before {
  transform: rotate(45deg);
}

[data-wa-close]::after {
  transform: rotate(-45deg);
}

.wa-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 14px 10px;
}

.wa-options button {
  min-height: 52px;
  border: 1px solid rgba(216, 169, 40, 0.34);
  border-radius: var(--radius);
  color: var(--tulsi);
  background:
    linear-gradient(145deg, rgba(255, 250, 239, 0.96), rgba(243, 222, 193, 0.72));
  box-shadow: 0 10px 22px rgba(75, 122, 63, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: left;
  padding: 10px 11px;
  transition: transform 220ms var(--ease-luxury), border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.wa-options button span {
  display: block;
  color: var(--turmeric);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-options button:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 169, 40, 0.68);
  background: var(--cream);
  box-shadow: 0 18px 34px rgba(75, 122, 63, 0.14);
}

.wa-form {
  margin: 0 14px 14px;
  padding: 13px;
  border: 1px solid rgba(216, 169, 40, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 250, 239, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 246, 229, 0.72);
}

.wa-panel-body {
  position: relative;
  max-height: calc(min(78vh, 680px) - 82px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 169, 40, 0.55) rgba(255, 246, 229, 0.22);
}

.wa-panel-body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(216, 169, 40, 0.045) 0 1px, transparent 1px 18px);
}

.wa-message {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 14px 14px 0;
  padding: 13px 14px;
  border: 1px solid rgba(216, 169, 40, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 246, 229, 0.78);
  color: var(--muted);
}

.wa-message span {
  color: var(--tulsi);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.wa-message p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.wa-form-title {
  display: grid;
  gap: 2px;
  margin-bottom: 10px;
}

.wa-form-title strong {
  color: var(--tulsi);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.1;
}

.wa-form-title small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.wa-form label {
  margin-top: 9px;
  font-size: 0.78rem;
}

.wa-form .btn {
  min-height: 42px;
  margin-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 640ms var(--ease-luxury), transform 640ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: revealGlow 720ms var(--ease-luxury) both;
}

.luxury-visual,
.gallery-card,
.blog-thumb {
  background-position: center calc(50% + var(--image-shift, 0px));
  transition: transform 520ms var(--ease-luxury), box-shadow 320ms ease, filter 320ms ease;
  will-change: background-position;
}

.luxury-visual:hover,
.gallery-card:hover,
.blog-card:hover .blog-thumb {
  transform: translateY(-8px) scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.trust-card.is-visible .icon-badge,
.service-card.is-visible .service-mark {
  animation: badgePulse 1.55s ease-in-out 1;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-content.reveal > .eyebrow,
  .hero-content.reveal > h1,
  .hero-content.reveal > .hero-copy,
  .hero-content.reveal > .hero-actions,
  .hero-content.reveal > .hero-metrics,
  .page-hero .container.reveal > * {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  body[data-motion-ready="true"] .section::before,
  body[data-motion-ready="true"] .site-footer::before {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    max-height: calc(100svh - 92px);
    overflow: auto;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 246, 229, 0.98);
    box-shadow: var(--shadow-strong);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .mobile-book-link {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .trust-grid,
  .card-grid,
  .value-grid,
  .program-grid,
  .testimonial-grid,
  .dark-card-grid,
  .large-timeline,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .navbar {
    min-height: 70px;
  }

  .split-grid,
  .doctor-card,
  .faq-wrap,
  .feature-band,
  .contact-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .doctor-portrait,
  .doctor-portrait.large,
  .luxury-visual,
  .map-placeholder {
    min-height: 360px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-block: 58px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 169, 40, 0.24);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .testimonial-shell {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-track {
    grid-column: 1 / -1;
    order: -1;
  }

  .carousel-btn.next {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .brand small {
    font-size: 0.65rem;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.12;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section-heading h2,
  .section-title,
  .split-copy h2,
  .doctor-copy h2,
  .feature-band h2,
  .note-panel h2,
  .contact-panel h2,
  .appointment-aside h2 {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .card-grid,
  .value-grid,
  .program-grid,
  .testimonial-grid,
  .dark-card-grid,
  .large-timeline,
  .blog-grid,
  .gallery-grid,
  .gallery-page-grid,
  .timeline,
  .quick-help-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 84px 0 70px;
  }

  .luxury-visual,
  .doctor-portrait,
  .map-placeholder {
    min-height: 300px;
  }

  .gallery-card,
  .gallery-page-grid .gallery-card {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wa-widget {
    right: 14px;
    bottom: 14px;
  }

  .wa-fab {
    min-height: 52px;
    padding-right: 14px;
  }

  .wa-label {
    display: none;
  }

  .wa-panel {
    right: 0;
    bottom: 66px;
  }
}

/* Cinematic Turmeric & Tulsi motion layer */
body[data-motion-ready="true"] .hero::after,
body[data-motion-ready="true"] .page-hero::after,
body[data-motion-ready="true"] .herbal-section::after {
  animation: orbitGlow 18s ease-in-out infinite alternate;
}

body[data-motion-ready="true"] .hero-pattern {
  animation: herbalPatternPulse 8s ease-in-out infinite, slowSpin 36s linear infinite;
}

.page-hero::before,
.cta-band::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(216, 169, 40, 0.18), transparent 22%),
    radial-gradient(circle at 86% 64%, rgba(255, 246, 229, 0.12), transparent 24%),
    repeating-linear-gradient(45deg, rgba(216, 169, 40, 0.045) 0 1px, transparent 1px 28px);
  transform: translateY(var(--parallax-y, var(--band-drift, 0)));
  opacity: 0.78;
}

.page-hero .container,
.cta-content,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

body[data-motion-ready="true"] .cta-band::after,
body[data-motion-ready="true"] .site-footer::after {
  animation: warmLightSweep 12s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.965);
  filter: blur(4px);
  transition:
    opacity 900ms var(--ease-luxury),
    transform 900ms var(--ease-luxury),
    filter 900ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  animation: revealGlow 980ms var(--ease-luxury) both;
}

.section-heading.reveal.is-visible::after,
.split-copy.reveal.is-visible::before,
.doctor-copy.reveal.is-visible::before,
.form-header.reveal.is-visible::after {
  animation: dividerPulse 1.8s ease-out both;
}

.trust-card::after,
.service-card::after,
.value-card::after,
.program-card::after,
.testimonial-card.static::after,
.blog-card::after,
.contact-panel::after,
.appointment-form::after,
.aside-card::after,
.note-panel::after,
.feature-band::after,
.faq-list details::after,
.quick-help-grid button::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(216, 169, 40, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(75, 122, 63, 0.12), transparent 44%, rgba(168, 95, 62, 0.12));
  transition: opacity 320ms ease;
}

.trust-card:hover::after,
.service-card:hover::after,
.value-card:hover::after,
.program-card:hover::after,
.testimonial-card.static:hover::after,
.blog-card:hover::after,
.contact-panel:hover::after,
.appointment-form:hover::after,
.aside-card:hover::after,
.note-panel:hover::after,
.feature-band:hover::after,
.faq-list details:hover::after,
.quick-help-grid button:hover::after {
  opacity: 1;
}

.icon-badge,
.service-mark,
.timeline-item span,
.carousel-btn,
.social-row a {
  position: relative;
  overflow: visible;
}

.icon-badge::before,
.service-mark::before,
.timeline-item span::after,
.carousel-btn::after,
.social-row a::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(216, 169, 40, 0.28);
  border-radius: 50%;
  opacity: 0.72;
  transform: scale(0.92);
}

.trust-card.is-visible .icon-badge::before,
.service-card.is-visible .service-mark::before,
.timeline-item.is-visible span::after {
  animation: ringBloom 1.55s ease-out both;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-list summary::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216, 169, 40, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--turmeric) 0 4px, transparent 5px),
    rgba(75, 122, 63, 0.08);
  box-shadow: 0 0 0 5px rgba(216, 169, 40, 0.08);
}

.testimonial-shell .testimonial-card.is-active {
  animation: testimonialBloom 680ms var(--ease-luxury) both;
}

.magnetic-surface {
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

@media (hover: hover) and (pointer: fine) {
  .magnetic-surface:is(.trust-card, .service-card, .value-card, .program-card, .blog-card, .gallery-card, .luxury-visual, .contact-panel, .appointment-form, .aside-card, .note-panel, .quick-help-grid button):hover {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-10px) scale(1.018);
    box-shadow: 0 38px 94px rgba(75, 46, 31, 0.24), 0 0 0 1px rgba(216, 169, 40, 0.22);
  }

  .btn.magnetic-surface:hover,
  .wa-fab.magnetic-surface:hover {
    transform: perspective(740px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px) scale(1.025);
  }
}

/* Circular WhatsApp care orb */
.wa-widget {
  right: 22px;
  bottom: 22px;
  filter: drop-shadow(0 24px 44px rgba(75, 46, 31, 0.34));
}

.wa-fab {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  overflow: visible;
  color: var(--cream);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 246, 229, 0.52), transparent 23%),
    radial-gradient(circle at 72% 76%, rgba(216, 169, 40, 0.42), transparent 28%),
    linear-gradient(145deg, var(--turmeric), var(--tulsi) 52%, var(--herbal-brown));
  border: 1px solid rgba(216, 169, 40, 0.72);
  box-shadow:
    0 26px 58px rgba(75, 46, 31, 0.38),
    inset 0 0 0 1px rgba(255, 246, 229, 0.22),
    inset 0 -18px 34px rgba(75, 46, 31, 0.18);
}

.wa-fab::before {
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 169, 40, 0.18), transparent 62%);
  border: 1px solid rgba(216, 169, 40, 0.36);
  animation: carePulse 2s ease-out infinite;
}

.wa-fab::after {
  inset: -1px;
  width: auto;
  border-radius: 50%;
  transform: none;
  background:
    conic-gradient(from 120deg, transparent 0deg, rgba(255, 246, 229, 0.42) 34deg, transparent 78deg, transparent 360deg);
  opacity: 0.72;
  transition: none;
  animation: orbSheen 5.6s linear infinite;
}

.wa-fab:hover::after,
.wa-fab:focus-visible::after {
  inset: -1px;
  left: auto;
}

.wa-orb-ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(216, 169, 40, 0.26);
  animation: orbRing 2.8s ease-out infinite;
}

.wa-fab .wa-avatar {
  width: 58px;
  height: 58px;
  color: var(--herbal-brown);
  z-index: 2;
  background:
    radial-gradient(circle at 50% 28%, var(--cream) 0 18%, var(--turmeric) 19% 48%, var(--tulsi) 49% 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 246, 229, 0.42),
    0 0 0 7px rgba(255, 246, 229, 0.14);
}

.wa-label {
  position: absolute;
  right: 78px;
  top: 50%;
  display: grid;
  width: max-content;
  max-width: 190px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 169, 40, 0.46);
  border-radius: 999px;
  color: var(--tulsi);
  background: rgba(255, 246, 229, 0.95);
  box-shadow: 0 16px 38px rgba(75, 46, 31, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%) scale(0.94);
  transition: opacity 240ms ease, transform 240ms var(--ease-luxury);
}

.wa-label strong {
  color: var(--tulsi);
}

.wa-label small {
  color: var(--herbal-brown);
}

.wa-widget:not(.is-open) .wa-fab:hover .wa-label,
.wa-widget:not(.is-open) .wa-fab:focus-visible .wa-label {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.wa-panel {
  right: 0;
  bottom: 112px;
  width: min(400px, calc(100vw - 28px));
  max-height: min(82vh, 720px);
  overflow: visible;
  border-radius: 34px;
  border: 1px solid rgba(216, 169, 40, 0.5);
  background:
    radial-gradient(circle at 50% -8%, rgba(216, 169, 40, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 246, 229, 0.98), rgba(255, 246, 229, 0.93));
  box-shadow:
    0 40px 100px rgba(75, 46, 31, 0.34),
    inset 0 1px 0 rgba(255, 246, 229, 0.92);
  transform: translateY(20px) scale(0.86);
  transform-origin: 88% 100%;
  transition: opacity 340ms var(--ease-luxury), transform 340ms var(--ease-luxury);
}

.wa-widget.is-open .wa-panel {
  transform: translateY(0) scale(1);
  filter: none;
  animation: none;
}

.wa-panel::before {
  content: "";
  position: absolute;
  inset: -15px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 84% 100%, rgba(75, 122, 63, 0.3), transparent 30%),
    radial-gradient(circle at 14% 0%, rgba(216, 169, 40, 0.26), transparent 34%);
  filter: blur(10px);
}

.wa-panel-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 146px;
  padding: 22px 22px 16px;
  text-align: center;
  border-radius: 34px 34px 44px 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 169, 40, 0.42), transparent 38%),
    linear-gradient(145deg, var(--tulsi), var(--herbal-brown));
}

.wa-orb-medallion {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-top: -58px;
  border-radius: 50%;
  color: var(--herbal-brown);
  font-weight: 900;
  background:
    radial-gradient(circle at 50% 26%, var(--cream) 0 20%, var(--turmeric) 21% 50%, var(--tulsi) 51% 100%);
  border: 1px solid rgba(216, 169, 40, 0.72);
  box-shadow:
    0 18px 45px rgba(75, 46, 31, 0.28),
    0 0 0 10px rgba(255, 246, 229, 0.16),
    inset 0 0 0 2px rgba(255, 246, 229, 0.32);
}

.wa-orb-medallion::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(216, 169, 40, 0.34);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.wa-orb-medallion i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--tulsi);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 5px rgba(75, 122, 63, 0.16);
}

[data-wa-close] {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 246, 229, 0.08);
}

.wa-panel-body {
  max-height: calc(min(82vh, 720px) - 146px);
  padding-top: 2px;
  border-radius: 0 0 34px 34px;
}

.wa-panel-body::before {
  border-radius: inherit;
}

.wa-message {
  margin: 15px 16px 0;
  padding: 11px 12px;
  border-radius: 24px;
  text-align: center;
}

.wa-options {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
}

.wa-options button {
  width: 92px;
  height: 92px;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  color: var(--tulsi);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 246, 229, 0.96), rgba(216, 169, 40, 0.18) 48%, rgba(75, 122, 63, 0.09) 100%);
  box-shadow:
    0 16px 34px rgba(75, 46, 31, 0.12),
    inset 0 0 0 1px rgba(255, 246, 229, 0.72);
  opacity: 0;
  filter: blur(2px);
  transform: translateY(14px) scale(0.86);
  transition:
    opacity 420ms var(--ease-luxury),
    transform 420ms var(--ease-luxury),
    filter 420ms var(--ease-luxury),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.wa-options button strong {
  display: block;
  max-width: 82px;
  color: var(--tulsi);
  font-size: 0.78rem;
  line-height: 1.05;
}

.wa-widget.is-open .wa-options button {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
  animation: none;
}

.wa-widget.is-open .wa-options button:nth-child(2) { transition-delay: 55ms; }
.wa-widget.is-open .wa-options button:nth-child(3) { transition-delay: 110ms; }
.wa-widget.is-open .wa-options button:nth-child(4) { transition-delay: 165ms; }
.wa-widget.is-open .wa-options button:nth-child(5) { transition-delay: 220ms; }
.wa-widget.is-open .wa-options button:nth-child(6) { transition-delay: 275ms; }

.wa-form {
  margin: 0 16px 16px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 169, 40, 0.16), transparent 34%),
    rgba(255, 246, 229, 0.88);
}

.wa-form input,
.wa-form select {
  border-radius: 999px;
}

@keyframes orbitGlow {
  0% { transform: translate3d(0, 0, 0) scale(0.96) rotate(0deg); opacity: 0.48; }
  100% { transform: translate3d(-18px, -22px, 0) scale(1.08) rotate(8deg); opacity: 0.78; }
}

@keyframes slowSpin {
  to { rotate: 360deg; }
}

@keyframes warmLightSweep {
  0%, 100% { opacity: 0.5; background-position: 0 0, 0 0, 0 0; }
  50% { opacity: 0.9; background-position: 18px 0, -24px 12px, 74px 0; }
}

@keyframes dividerPulse {
  0% { transform: scaleX(0); opacity: 0.2; }
  52% { transform: scaleX(1.18); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.9; }
}

@keyframes ringBloom {
  0% { transform: scale(0.72); opacity: 0; }
  58% { transform: scale(1.18); opacity: 0.82; }
  100% { transform: scale(1); opacity: 0.56; }
}

@keyframes testimonialBloom {
  from { opacity: 0; transform: translateY(18px) scale(0.975); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes orbSheen {
  to { rotate: 360deg; }
}

@keyframes orbRing {
  0% { transform: scale(0.72); opacity: 0.78; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes panelBloom {
  from { filter: blur(1px); }
  to { filter: blur(0); }
}

@keyframes radialOptionIn {
  from { opacity: 0; transform: translateY(16px) scale(0.72) rotate(-10deg); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}

@media (max-width: 640px) {
  .wa-widget {
    right: 14px;
    bottom: 14px;
  }

  .wa-fab {
    width: 72px;
    height: 72px;
    padding: 0;
  }

  .wa-fab .wa-avatar {
    width: 48px;
    height: 48px;
  }

  .wa-label {
    display: none;
  }

  .wa-panel {
    right: 0;
    bottom: 90px;
    width: min(366px, calc(100vw - 28px));
    border-radius: 28px;
  }

  .wa-panel-head {
    min-height: 132px;
    border-radius: 28px 28px 38px 38px;
  }

  .wa-orb-medallion {
    width: 70px;
    height: 70px;
    margin-top: -48px;
  }

  .wa-panel-body {
    max-height: calc(82vh - 132px);
  }

  .wa-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wa-options button {
    aspect-ratio: auto;
    width: auto;
    min-height: 64px;
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .hero-content.reveal > .eyebrow,
  .hero-content.reveal > h1,
  .hero-content.reveal > .hero-copy,
  .hero-content.reveal > .hero-actions,
  .hero-content.reveal > .hero-metrics,
  .page-hero .container.reveal > *,
  .wa-widget.is-open .wa-options button {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition-duration: 1ms !important;
  }

  .hero,
  .page-hero,
  .hero::before,
  .hero::after,
  .page-hero::before,
  .page-hero::after,
  .cta-band::after,
  .site-footer::after,
  .hero-pattern,
  .floating-leaf,
  .wa-fab::before,
  .wa-fab::after,
  .wa-orb-ring,
  .wa-orb-medallion::before {
    animation: none !important;
  }
}

/* Compact chatbot refinement */
.wa-widget {
  right: 18px;
  bottom: 18px;
  filter: drop-shadow(0 16px 30px rgba(75, 46, 31, 0.28));
}

.wa-fab {
  width: 68px;
  height: 68px;
  box-shadow:
    0 18px 40px rgba(75, 46, 31, 0.32),
    inset 0 0 0 1px rgba(255, 246, 229, 0.22),
    inset 0 -12px 24px rgba(75, 46, 31, 0.16);
}

.wa-fab::before {
  inset: -9px;
}

.wa-orb-ring {
  inset: -15px;
}

.wa-fab .wa-avatar {
  width: 46px;
  height: 46px;
  font-size: 0.68rem;
  box-shadow:
    inset 0 0 0 2px rgba(255, 246, 229, 0.42),
    0 0 0 5px rgba(255, 246, 229, 0.12);
}

.wa-fab .wa-avatar i {
  width: 9px;
  height: 9px;
}

.wa-label {
  right: 62px;
  padding: 8px 12px;
  max-width: 170px;
}

.wa-label strong {
  font-size: 0.82rem;
}

.wa-label small {
  font-size: 0.66rem;
}

.wa-panel {
  bottom: 84px;
  width: min(330px, calc(100vw - 24px));
  max-height: min(70vh, 560px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 76px rgba(75, 46, 31, 0.3),
    inset 0 1px 0 rgba(255, 246, 229, 0.9);
}

.wa-panel::before {
  inset: -8px;
  border-radius: 30px;
  filter: blur(8px);
}

.wa-panel-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "mark kicker"
    "mark title"
    "mark note";
  justify-items: start;
  align-items: center;
  column-gap: 11px;
  min-height: 92px;
  padding: 14px 48px 14px 14px;
  text-align: left;
  border-radius: 24px 24px 26px 26px;
}

.wa-orb-medallion {
  grid-area: mark;
  width: 44px;
  height: 44px;
  margin-top: 0;
  font-size: 0.68rem;
  box-shadow:
    0 10px 24px rgba(75, 46, 31, 0.22),
    0 0 0 5px rgba(255, 246, 229, 0.14),
    inset 0 0 0 1px rgba(255, 246, 229, 0.32);
}

.wa-orb-medallion::before {
  inset: -6px;
}

.wa-orb-medallion i {
  right: 4px;
  bottom: 4px;
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 3px rgba(75, 122, 63, 0.14);
}

.wa-panel-head p {
  grid-area: kicker;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.wa-panel-head h2 {
  grid-area: title;
  font-size: 1.05rem;
  line-height: 1.08;
}

.wa-panel-head small {
  grid-area: note;
  margin-top: 0;
  font-size: 0.66rem;
}

[data-wa-close] {
  top: 10px;
  right: 10px;
  width: 31px;
  height: 31px;
}

[data-wa-close]::before,
[data-wa-close]::after {
  top: 14px;
  left: 8px;
  width: 13px;
}

.wa-panel-body {
  max-height: calc(min(70vh, 560px) - 92px);
  padding-top: 0;
  overflow: auto;
  border-radius: 0 0 24px 24px;
}

.wa-message {
  margin: 11px 12px 0;
  padding: 10px 12px;
  border-radius: 18px;
  text-align: left;
}

.wa-message span {
  font-size: 1rem;
}

.wa-message p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.wa-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.wa-options button {
  width: auto;
  height: auto;
  min-height: 42px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  place-items: center stretch;
  align-content: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  border-radius: 999px;
  text-align: left;
  background:
    radial-gradient(circle at 12% 50%, rgba(216, 169, 40, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 246, 229, 0.96), rgba(255, 246, 229, 0.78));
  box-shadow:
    0 10px 22px rgba(75, 46, 31, 0.08),
    inset 0 0 0 1px rgba(255, 246, 229, 0.72);
}

.wa-options button:hover,
.wa-options button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(216, 169, 40, 0.72);
  box-shadow:
    0 16px 30px rgba(75, 46, 31, 0.14),
    inset 0 0 0 1px rgba(216, 169, 40, 0.24);
}

.wa-options button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--herbal-brown);
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 246, 229, 0.92), transparent 32%),
    linear-gradient(145deg, var(--turmeric), rgba(75, 122, 63, 0.78));
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 0 0 3px rgba(216, 169, 40, 0.12);
}

.wa-options button strong {
  max-width: none;
  font-size: 0.76rem;
  line-height: 1.05;
  white-space: nowrap;
}

.wa-form {
  margin: 0 12px 12px;
  padding: 12px;
  border-radius: 18px;
}

.wa-form-title {
  margin-bottom: 6px;
}

.wa-form-title strong {
  font-size: 0.92rem;
}

.wa-form-title small {
  font-size: 0.66rem;
}

.wa-form label {
  margin-top: 7px;
  gap: 5px;
  font-size: 0.7rem;
}

.wa-form input,
.wa-form select {
  min-height: 36px;
  padding: 9px 11px;
  font-size: 0.82rem;
}

.wa-form .btn {
  min-height: 38px;
  margin-top: 10px;
  padding-block: 10px;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .wa-widget {
    right: 12px;
    bottom: 12px;
  }

  .wa-fab {
    width: 58px;
    height: 58px;
  }

  .wa-fab .wa-avatar {
    width: 39px;
    height: 39px;
    font-size: 0.62rem;
  }

  .wa-orb-ring {
    inset: -11px;
  }

  .wa-panel {
    right: 0;
    bottom: 74px;
    width: calc(100vw - 24px);
    max-height: 70vh;
    border-radius: 22px;
  }

  .wa-panel-head {
    min-height: 86px;
    padding: 13px 46px 13px 13px;
    border-radius: 22px 22px 24px 24px;
  }

  .wa-panel-body {
    max-height: calc(70vh - 86px);
  }

  .wa-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 10px 12px;
  }

  .wa-options button {
    min-height: 40px;
    padding: 6px 8px 6px 6px;
    gap: 7px;
  }

  .wa-options button span {
    width: 26px;
    height: 26px;
    font-size: 0.5rem;
  }

  .wa-options button strong {
    font-size: 0.72rem;
  }
}
