/* ============================================================
   EVERCARE MEDGROUP — Premium Ayurvedic Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Primary Palette — Earthy Sage & Turmeric */
  --sage-50:  #f4f7f3;
  --sage-100: #e6ede4;
  --sage-200: #cedbc9;
  --sage-300: #a9c0a1;
  --sage-400: #7fa076;
  --sage-500: #6b8f62;
  --sage-600: #4f6e47;
  --sage-700: #3f5839;
  --sage-800: #34472f;
  --sage-900: #2c3a28;

  --turmeric-50:  #fef9ec;
  --turmeric-100: #fcefc4;
  --turmeric-200: #f9de8a;
  --turmeric-300: #f6c94f;
  --turmeric-400: #f4b627;
  --turmeric-500: #d5a021;
  --turmeric-600: #b17815;
  --turmeric-700: #8d5614;
  --turmeric-800: #754317;
  --turmeric-900: #643719;

  --earth-50:  #f8f5f2;
  --earth-100: #ede7df;
  --earth-200: #ddd2c4;
  --earth-300: #c8b6a1;
  --earth-400: #b39a81;
  --earth-500: #9d7f65;
  --earth-600: #8a6a53;
  --earth-700: #735746;
  --earth-800: #5c4a3d;
  --earth-900: #4b3d33;

  --white: #ffffff;
  --off-white: #fafaf8;
  --cream: #f9f7f3;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-accent: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 58, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 58, 40, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 58, 40, 0.12);
  --shadow-xl: 0 16px 48px rgba(44, 58, 40, 0.16);
  --shadow-glow-sage: 0 8px 32px rgba(107, 143, 98, 0.25);
  --shadow-glow-turmeric: 0 8px 32px rgba(213, 160, 33, 0.25);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;
}

/* ============================================================
   SHIRODHARA PRELOADER — Oil Drip Animation
   ============================================================ */

/* ── Full-screen overlay ── */
#ayur-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #F9F6F0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  overflow: hidden;
}

#ayur-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ── Scene container ── */
.shirodhara-scene {
  position: relative;
  width: 200px;
  height: 80vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Brass vessel (SVG) ── */
.dhara-vessel {
  width: 160px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 4px 12px rgba(168, 135, 45, 0.3));
  animation: vesselSway 4s ease-in-out infinite;
}

@keyframes vesselSway {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  25%      { transform: translateX(-50%) rotate(0.5deg); }
  75%      { transform: translateX(-50%) rotate(-0.5deg); }
}

/* ── Continuous oil stream ── */
.oil-stream {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 210px);
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    #D4AF37 0%,
    rgba(212, 175, 55, 0.7) 20%,
    rgba(197, 160, 89, 0.5) 50%,
    rgba(197, 160, 89, 0.3) 80%,
    rgba(197, 160, 89, 0.05) 100%
  );
  animation: streamFlow 2s ease-in-out infinite;
}

@keyframes streamFlow {
  0%   { opacity: 0.6; width: 4px; }
  50%  { opacity: 1;   width: 5px; }
  100% { opacity: 0.6; width: 4px; }
}

/* ── Falling oil drop ── */
.oil-drop-wrapper {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: calc(100% - 180px);
  pointer-events: none;
}

.oil-drop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 14px;
  background: radial-gradient(ellipse at 40% 30%, #F5DFA0, #D4AF37 40%, #C5A059 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow:
    0 2px 8px rgba(212, 175, 55, 0.5),
    inset 0 -2px 4px rgba(168, 135, 45, 0.3);
  animation: dropFall 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes dropFall {
  0% {
    top: 0;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    opacity: 0;
  }
  8% {
    opacity: 1;
    height: 10px;
    width: 8px;
    border-radius: 50%;
  }
  /* Stretch as it forms */
  20% {
    top: 0;
    height: 18px;
    width: 7px;
    border-radius: 45% 45% 50% 50% / 30% 30% 70% 70%;
    opacity: 1;
  }
  /* Detach & begin fall */
  30% {
    top: 8%;
    height: 12px;
    width: 9px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  }
  /* Accelerate downward */
  70% {
    top: 70%;
    height: 14px;
    width: 10px;
    opacity: 1;
  }
  /* Approaching pool */
  90% {
    top: 95%;
    height: 10px;
    width: 11px;
    border-radius: 50%;
    opacity: 0.8;
  }
  /* Impact */
  95% {
    top: 100%;
    height: 4px;
    width: 14px;
    border-radius: 50%;
    opacity: 0.3;
  }
  100% {
    top: 100%;
    height: 2px;
    width: 16px;
    border-radius: 50%;
    opacity: 0;
  }
}

/* ── Ripple pool at bottom ── */
.ripple-pool {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Oil pool base (subtle golden disc) */
.oil-pool {
  position: absolute;
  width: 40px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.35), rgba(197, 160, 89, 0.1) 70%, transparent 100%);
  animation: poolPulse 2.2s ease-in-out infinite;
}

@keyframes poolPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 0.9; }
}

/* Ripple circles */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  opacity: 0;
  animation: rippleExpand 2.2s ease-out infinite;
}

.ripple-1 {
  width: 10px;
  height: 5px;
  animation-delay: 0s;
}

.ripple-2 {
  width: 10px;
  height: 5px;
  animation-delay: 0.3s;
}

.ripple-3 {
  width: 10px;
  height: 5px;
  animation-delay: 0.6s;
}

@keyframes rippleExpand {
  0% {
    width: 6px;
    height: 3px;
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  50% {
    width: 80px;
    height: 24px;
    opacity: 0.4;
    border-color: rgba(212, 175, 55, 0.25);
  }
  100% {
    width: 150px;
    height: 40px;
    opacity: 0;
    border-color: rgba(197, 160, 89, 0.05);
  }
}

/* ── Loading text with staggered letter reveals ── */
#ayur-loader .loader-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  white-space: nowrap;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8963A;
}

#ayur-loader .loader-text span {
  display: inline-block;
  opacity: 0;
  animation: letterReveal 2.5s ease-in-out infinite;
}

/* Stagger each letter */
#ayur-loader .loader-text span:nth-child(1)  { animation-delay: 0.00s; }
#ayur-loader .loader-text span:nth-child(2)  { animation-delay: 0.05s; }
#ayur-loader .loader-text span:nth-child(3)  { animation-delay: 0.10s; }
#ayur-loader .loader-text span:nth-child(4)  { animation-delay: 0.15s; }
#ayur-loader .loader-text span:nth-child(5)  { animation-delay: 0.20s; }
#ayur-loader .loader-text span:nth-child(6)  { animation-delay: 0.25s; }
#ayur-loader .loader-text span:nth-child(7)  { animation-delay: 0.30s; }
#ayur-loader .loader-text span:nth-child(8)  { animation-delay: 0.35s; }
#ayur-loader .loader-text span:nth-child(9)  { animation-delay: 0.40s; }
#ayur-loader .loader-text span:nth-child(10) { animation-delay: 0.45s; }
#ayur-loader .loader-text span:nth-child(11) { animation-delay: 0.50s; }
#ayur-loader .loader-text span:nth-child(12) { animation-delay: 0.55s; }
#ayur-loader .loader-text span:nth-child(13) { animation-delay: 0.60s; }
#ayur-loader .loader-text span:nth-child(14) { animation-delay: 0.65s; }
#ayur-loader .loader-text span:nth-child(15) { animation-delay: 0.70s; }
#ayur-loader .loader-text span:nth-child(16) { animation-delay: 0.75s; }
#ayur-loader .loader-text span:nth-child(17) { animation-delay: 0.80s; }
#ayur-loader .loader-text span:nth-child(18) { animation-delay: 0.85s; }
#ayur-loader .loader-text span:nth-child(19) { animation-delay: 0.90s; }
#ayur-loader .loader-text span:nth-child(20) { animation-delay: 0.95s; }
#ayur-loader .loader-text span:nth-child(21) { animation-delay: 1.00s; }
#ayur-loader .loader-text span:nth-child(22) { animation-delay: 1.05s; }
#ayur-loader .loader-text span:nth-child(23) { animation-delay: 1.10s; }
#ayur-loader .loader-text span:nth-child(24) { animation-delay: 1.15s; }
#ayur-loader .loader-text span:nth-child(25) { animation-delay: 1.20s; }
#ayur-loader .loader-text span:nth-child(26) { animation-delay: 1.25s; }

@keyframes letterReveal {
  0%, 100% { opacity: 0; transform: translateY(4px); }
  20%, 80% { opacity: 1; transform: translateY(0); }
}

/* ── Responsive adjustments ── */
@media (max-height: 500px) {
  .shirodhara-scene {
    max-height: 350px;
  }
  .dhara-vessel {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .dhara-vessel {
    width: 130px;
  }
  #ayur-loader .loader-text {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}

/* ── Global Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--earth-800);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--turmeric-300);
  color: var(--earth-900);
}

img {
  display: block;
  max-width: 100%;
}

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

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--sage-50);
}
::-webkit-scrollbar-thumb {
  background: var(--sage-300);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sage-500);
}

/* ── Preloader ── */
#ayur-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo);
}

#ayur-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ring::before,
.loader-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring::before {
  border-top-color: var(--sage-500);
  border-bottom-color: var(--sage-500);
  animation: loaderSpin 1.8s linear infinite;
}

.loader-ring::after {
  inset: 8px;
  border-left-color: var(--turmeric-400);
  border-right-color: var(--turmeric-400);
  animation: loaderSpin 1.2s linear infinite reverse;
}

.loader-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--sage-500), var(--turmeric-400));
  border-radius: 50%;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-text {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--sage-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: loaderTextFade 2s ease-in-out infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

@keyframes loaderTextFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--container-padding);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.site-header .header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height var(--duration-normal) var(--ease-out-expo);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(107, 143, 98, 0.08);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .header-inner {
  height: 72px;
}

.site-header.hidden-up {
  transform: translateY(-100%);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-500), var(--turmeric-400));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.logo-mark:hover {
  transform: scale(1.08) rotate(5deg);
}

.logo-mark span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--sage-700);
}

.logo-text .brand-tag {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  color: var(--sage-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--earth-600);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--duration-fast) ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-500), var(--turmeric-400));
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--sage-600);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-600));
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-sage);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107, 143, 98, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-600);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--sage-300);
}

.btn-secondary:hover {
  background: var(--sage-50);
  border-color: var(--sage-500);
  transform: translateY(-2px);
}

.btn-turmeric {
  background: linear-gradient(135deg, var(--turmeric-400), var(--turmeric-500));
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-turmeric);
}

.btn-turmeric:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(213, 160, 33, 0.4);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-icon {
  transition: transform var(--duration-normal) var(--ease-spring);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth-700);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 100px 2rem 2rem;
  transition: right 0.5s var(--ease-out-expo);
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--earth-700);
  padding: 1rem 0;
  border-bottom: 1px solid var(--sage-100);
  transition: all var(--duration-normal) ease;
}

.mobile-nav a:hover {
  color: var(--sage-600);
  padding-left: 12px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-links, .header-cta {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--container-padding) 80px;
  overflow: hidden;
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--off-white) 50%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(107, 143, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(213, 160, 33, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating botanical elements */
.hero-botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

.hero-botanical-1 {
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage-500) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-botanical-2 {
  bottom: 15%;
  left: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--turmeric-400) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, -20px) scale(0.95); }
  75% { transform: translate(10px, 15px) scale(1.03); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 143, 98, 0.08);
  border: 1px solid rgba(107, 143, 98, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--sage-500);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--earth-800);
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--sage-500);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--turmeric-200);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.6;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--earth-500);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sage-100);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage-600);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--earth-400);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 58, 40, 0.7) 100%);
  z-index: 1;
}

.hero-image-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.hero-image-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
}

.hero-image-text .underline-bar {
  width: 40px;
  height: 3px;
  background: var(--turmeric-400);
  border-radius: 4px;
  margin-top: 0.75rem;
  transition: width var(--duration-slow) var(--ease-out-expo);
}

.hero-image-wrapper:hover .underline-bar {
  width: 100px;
}

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card-1 {
  top: 8%;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-card-2 {
  bottom: 12%;
  left: -40px;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.float-card-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--earth-700);
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sage-600);
}

/* ── Section Shared Styles ── */
.section {
  padding: var(--section-padding) var(--container-padding);
  position: relative;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--turmeric-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--turmeric-300);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--earth-800);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--earth-400);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Treatments Section ── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 143, 98, 0.06);
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.treatment-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.treatment-card:hover .treatment-card-image img {
  transform: scale(1.08);
}

.treatment-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44, 58, 40, 0.8) 100%);
  z-index: 1;
  transition: opacity var(--duration-normal) ease;
}

.treatment-card-image .card-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}

.treatment-card-image .card-label h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}

.treatment-card-image .card-label .accent-bar {
  width: 28px;
  height: 3px;
  background: var(--turmeric-400);
  border-radius: 4px;
  margin-top: 6px;
  transition: width var(--duration-slow) var(--ease-out-expo);
}

.treatment-card:hover .accent-bar {
  width: 64px;
}

.treatment-card-body {
  padding: 1.75rem;
}

.treatment-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--earth-800);
  margin-bottom: 0.5rem;
}

.treatment-card-body p {
  font-size: 0.925rem;
  color: var(--earth-400);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.treatment-card-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-fast) ease;
}

.treatment-card-link svg {
  transition: transform var(--duration-normal) var(--ease-spring);
}

.treatment-card:hover .treatment-card-link {
  color: var(--turmeric-500);
}

.treatment-card:hover .treatment-card-link svg {
  transform: translateX(4px);
}

/* Treatment category tags */
.treatment-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Consult a Vaidya Section ── */
.vaidya-section {
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--white) 100%);
}

.vaidya-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.vaidya-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.vaidya-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 1s ease;
}

.vaidya-intro-image:hover img {
  transform: scale(1.03);
}

.vaidya-intro-content .section-badge {
  justify-content: flex-start;
}

.vaidya-intro-content .section-title {
  text-align: left;
}

.vaidya-intro-content p {
  font-size: 1.05rem;
  color: var(--earth-400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vaidya-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vaidya-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vaidya-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: rgba(107, 143, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-500);
  margin-top: 2px;
}

.vaidya-feature-text {
  font-size: 0.95rem;
  color: var(--earth-600);
  font-weight: 400;
}

.vaidya-feature-text strong {
  color: var(--earth-800);
  font-weight: 600;
}

/* Vaidya Profile Cards */
.vaidya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vaidya-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 143, 98, 0.06);
  transition: all var(--duration-normal) var(--ease-out-expo);
  text-align: center;
}

.vaidya-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vaidya-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--sage-50);
}

.vaidya-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease-out-expo);
}

.vaidya-card:hover .vaidya-card-image img {
  transform: scale(1.05);
}

.vaidya-card-image .specialty-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(44, 58, 40, 0.9));
  padding: 2rem 1.5rem 1rem;
}

.vaidya-card-image .specialty-badge span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--turmeric-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vaidya-card-body {
  padding: 1.5rem;
}

.vaidya-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--earth-800);
  margin-bottom: 4px;
}

.vaidya-card-body .title {
  font-family: var(--font-accent);
  font-size: 0.825rem;
  color: var(--sage-500);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.vaidya-card-body .experience {
  font-size: 0.825rem;
  color: var(--earth-400);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.vaidya-card-body .consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(107, 143, 98, 0.06);
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--sage-600);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.vaidya-card-body .consult-btn:hover {
  background: var(--sage-500);
  color: var(--white);
  border-color: var(--sage-500);
  box-shadow: var(--shadow-glow-sage);
}

/* ── Hospitals Section ── */
.hospitals-section {
  background: var(--cream);
}

.hospitals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hospital-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 143, 98, 0.06);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.hospital-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hospital-card-image {
  width: 200px;
  min-width: 200px;
  overflow: hidden;
}

.hospital-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.hospital-card:hover .hospital-card-image img {
  transform: scale(1.06);
}

.hospital-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hospital-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--earth-800);
  margin-bottom: 0.5rem;
}

.hospital-card-body .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--sage-500);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hospital-card-body p {
  font-size: 0.9rem;
  color: var(--earth-400);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Appointment / Booking Section ── */
.booking-section {
  background: var(--white);
}

.booking-wrapper {
  background: linear-gradient(145deg, var(--sage-50), rgba(107, 143, 98, 0.04));
  border: 1px solid rgba(107, 143, 98, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 143, 98, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.booking-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(213, 160, 33, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.booking-form {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--earth-700);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--earth-800);
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--duration-fast) ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage-400);
  box-shadow: 0 0 0 4px rgba(107, 143, 98, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--earth-300);
  font-weight: 300;
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-submit-row {
  text-align: center;
  margin-top: 1.5rem;
}

/* Success alert */
.alert-success {
  background: rgba(107, 143, 98, 0.08);
  border: 1px solid rgba(107, 143, 98, 0.2);
  color: var(--sage-700);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.925rem;
  margin-bottom: 2rem;
}

.alert-success strong {
  font-family: var(--font-display);
}

/* ── Medicine Shop Teaser ── */
.shop-section {
  background: linear-gradient(175deg, var(--earth-800) 0%, var(--earth-900) 100%);
  position: relative;
  overflow: hidden;
}

.shop-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 143, 98, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(213, 160, 33, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.shop-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.shop-text p {
  font-size: 1.05rem;
  color: var(--earth-200);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.shop-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.shop-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(107, 143, 98, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.shop-feature-text {
  font-family: var(--font-accent);
  font-size: 0.825rem;
  color: var(--earth-100);
  font-weight: 500;
}

.shop-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.shop-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1s ease;
}

.shop-image:hover img {
  transform: scale(1.04);
}

.shop-image .glass-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  z-index: 2;
}

.shop-image .glass-badge span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  background: var(--earth-900);
  color: var(--earth-200);
  padding: 5rem var(--container-padding) 2rem;
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--turmeric-400);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.925rem;
  color: var(--earth-300);
  font-weight: 300;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--earth-300);
  font-weight: 300;
  transition: all var(--duration-fast) ease;
}

.footer-col ul li a:hover {
  color: var(--turmeric-400);
  padding-left: 6px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--earth-300);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  font-family: var(--font-body);
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--duration-fast) ease;
}

.newsletter-input::placeholder {
  color: var(--earth-400);
}

.newsletter-input:focus {
  border-color: var(--turmeric-400);
}

.newsletter-btn {
  background: var(--turmeric-500);
  border: none;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.825rem;
  transition: all var(--duration-fast) ease;
}

.newsletter-btn:hover {
  background: var(--turmeric-400);
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--earth-400);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-300);
  transition: all var(--duration-fast) ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--turmeric-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll Reveal System ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-card-1 {
    right: -10px;
  }

  .hero-float-card-2 {
    left: -10px;
  }

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

  .vaidya-intro {
    grid-template-columns: 1fr;
  }

  .vaidya-intro-content .section-badge,
  .vaidya-intro-content .section-title {
    text-align: center;
  }

  .vaidya-intro-content p {
    text-align: center;
  }

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

  .shop-content {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .treatments-grid,
  .vaidya-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-features {
    grid-template-columns: 1fr;
  }

  .hospital-card {
    flex-direction: column;
  }

  .hospital-card-image {
    width: 100%;
    min-width: auto;
    height: 200px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-float-card {
    display: none;
  }
}

/* ── Counter Animation ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Decorative Line ── */
.divider-line {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-200), transparent);
}
