/* ===================================
   TRIVEN AYURVEDA — PREMIUM DESIGN SYSTEM
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Core Palette */
  --forest:       #0d2818;
  --forest-mid:   #1a3d2b;
  --forest-light: #2d6a4f;
  --sage:         #52b788;
  --sage-light:   #95d5b2;
  --gold:         #c9a84c;
  --gold-light:   #e8d07a;
  --gold-pale:    #fdf3d7;
  --cream:        #faf7f2;
  --cream-dark:   #f0e8d8;
  --ivory:        #fffef9;
  --charcoal:     #1c2b22;
  --text:         #2c3e32;
  --text-muted:   #6b7d6e;
  --white:        #ffffff;


  /* Gradients */
  --grad-forest: linear-gradient(135deg, #0d2818 0%, #1a3d2b 50%, #2d6a4f 100%);
  --grad-gold:   linear-gradient(135deg, #c9a84c 0%, #e8d07a 100%);
  --grad-sage:   linear-gradient(135deg, #52b788 0%, #95d5b2 100%);
  --grad-glass:  linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(13,40,24,0.08);
  --shadow-md:   0 8px 32px rgba(13,40,24,0.12);
  --shadow-lg:   0 20px 60px rgba(13,40,24,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.3);

  /* Layout */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* Animation */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth premium Apple-style curve */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.3s;
  --dur-mid:     0.5s;
  --dur-slow:    0.8s;
}

/* ===== LUXURY TEXT GRADIENTS ===== */
h1 em, .section-tag, .consult-left h2 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1.2;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025; /* Super subtle grain */
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.25;
  font-weight: 600;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 10px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad-gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-forest);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(13,40,24,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(13,40,24,0.35);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--forest);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.45); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 78px;
  transition: all var(--dur-mid) var(--ease);
  width: 100%;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.90);
  backdrop-filter: blur(12px);
  transition: all var(--dur-mid) var(--ease);
  border-bottom: 1px solid rgba(13, 40, 24, 0.05);
}
.navbar.scrolled::before {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(13, 40, 24, 0.08);
  border-bottom: 1px solid rgba(13, 40, 24, 0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}
.logo img {
  height: 44px; width: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
  transition: box-shadow var(--dur-mid);
}
.logo:hover img { box-shadow: 0 0 0 3px var(--gold); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); font-weight: 600; }

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: all var(--dur-mid) !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================
   ANIMATED BACKGROUND EFFECT (VIDEO-LIKE)
   =================================== */
.bg-video-effect {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  animation: bgZoomFloat 25s ease-in-out infinite alternate;
  pointer-events: none;
  mix-blend-mode: luminosity; /* Blends nicely with the green hero background */
}
@keyframes bgZoomFloat {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, 1.5%); }
}

/* ===================================
   HERO — HOME
   =================================== */
.hero {
  min-height: 100vh;
  background: var(--grad-forest);
  display: flex;
  align-items: center;
  padding: 100px 80px 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(82,183,136,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(82,183,136,0.06);
  top: -100px; right: 0;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(201,168,76,0.08);
  bottom: 0; left: 20%;
}

.hero-left {
  flex: 1.1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
}
.hero-left h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-left h1 span {
  display: block;
  font-size: 0.65em;
  font-weight: 400;
  color: var(--sage-light);
  letter-spacing: 0.5px;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.hero-trust-item i { color: var(--sage); font-size: 1rem; }

.hero-right {
  flex: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: min(520px, 100%);
  height: 600px;
}
.hero-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: ringExpand 4s ease-in-out infinite;
}
.hero-img-ring:nth-child(1) { inset: 60px; animation-delay: 0s; }
.hero-img-ring:nth-child(2) { inset: 20px; animation-delay: 1s; border-color: rgba(82,183,136,0.15); }
@keyframes ringExpand { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.04); opacity: 1; } }
.hero-img-glow {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: floatImg 5s ease-in-out infinite;
}
.hero-img.active { opacity: 1; }
@keyframes floatImg { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif;
}
.hero-scroll a {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: bounceDown 2s infinite;
  display: block;
}
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===================================
   MARQUEE STRIP
   =================================== */
.marquee-strip {
  background: var(--forest);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before, .marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--forest), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(to left, var(--forest), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.marquee-item i { color: var(--gold); font-size: 0.9rem; }

/* ===================================
   ABOUT / BENEFITS
   =================================== */
.about { background: var(--ivory); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.1);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease);
  transform-origin: left;
}
.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 68px; height: 68px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--forest-light);
  transition: all var(--dur-mid) var(--ease);
}
.benefit-card:hover .benefit-icon { background: var(--forest); color: var(--gold-light); }
.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.benefit-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===================================
   PRODUCTS
   =================================== */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.15); /* Premium gold hint border */
  transition: all var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  z-index: 10;
  transition: none;
}
.product-card:hover::before {
  animation: premiumShine 1s var(--ease) forwards;
}
@keyframes premiumShine {
  0% { left: -100%; }
  100% { left: 200%; }
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold-light);
}
.product-img {
  height: 200px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid);
}
.product-card:hover .product-img::after { opacity: 1; }
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.badge-bestseller { background: var(--forest); color: var(--gold-light); }
.badge-new { background: var(--sage); color: var(--forest); }
.badge-popular { background: var(--gold); color: var(--forest); }
.badge-trending { background: #c0392b; color: var(--white); }

.product-info { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.25rem; color: var(--forest); margin-bottom: 8px; }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.price-wrap { display: flex; align-items: center; gap: 6px; }
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
}
.price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.discount-badge {
  background: #e74c3c;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ===================================
   STATS BANNER
   =================================== */
.stats-banner {
  background: var(--grad-forest);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* counter alias */
.counter { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.stat h2, .stat p { display: block; }
.stat h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.stat p { font-size: 0.88rem; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials { background: var(--ivory); }
.testimonials-slider { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 28px; left: 52px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--cream-dark);
  pointer-events: none;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; display: flex; gap: 4px; }
.testimonial-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 700px;
}
.reviewer { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 52px; height: 52px;
  background: var(--grad-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--forest); font-weight: 600; font-size: 1rem; }
.reviewer span { font-size: 0.85rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.slider-controls button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,40,24,0.15);
  background: var(--white);
  color: var(--forest);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--dur-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.slider-controls button:hover { background: var(--forest); color: var(--white); border-color: var(--forest); transform: scale(1.05); }
.dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(13,40,24,0.15);
  cursor: pointer;
  transition: all var(--dur-mid);
}
.dot.active { background: var(--forest); transform: scale(1.5); }

/* ===================================
   CONTACT / CONSULTATION
   =================================== */
.contact { background: var(--cream-dark); }
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.consult-left .section-tag { margin-bottom: 20px; }
.consult-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  margin-bottom: 18px;
  line-height: 1.35;
}
.consult-left h2 span { color: var(--gold); font-style: italic; }
.consult-left > p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.02rem; }
.consult-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.consult-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}
.consult-points li i { color: var(--sage); font-size: 1rem; flex-shrink: 0; }

.consult-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.12);
}
.consult-form-box h3 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 10px;
  text-align: center;
}
.form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid rgba(13,40,24,0.12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: all var(--dur-mid);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  color: var(--forest-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 4px;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.form-success.show { display: flex; }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  margin-bottom: 68px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links-row {
  display: contents;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; }
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--dur-mid);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); transform: translateY(-3px); }

.footer-links h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  transition: all var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; opacity: 0; transform: translateX(-5px); transition: all var(--dur-fast); font-size: 0.8rem; }
.footer-links a:hover { color: var(--sage-light); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-newsletter h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 18px; color: rgba(255,255,255,0.55); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: rgba(201,168,76,0.5); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom i { color: #e74c3c; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================================
   CALL FLOAT BAR
   =================================== */
.call-float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13, 40, 24, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.call-bar-doctor {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--sage);
  transition: opacity 0.4s ease;
}
.doctor-online {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.online-dot {
  width: 10px; height: 10px;
  background: var(--sage);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--dur-mid);
  box-shadow: var(--shadow-gold);
}
.call-now-btn:hover { transform: scale(1.04); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
.call-now-btn i { animation: ringShake 1.8s ease-in-out infinite; display: inline-block; }
@keyframes ringShake { 0%,100% { transform: rotate(0); } 15%,45% { transform: rotate(-18deg); } 30%,60% { transform: rotate(18deg); } 75% { transform: rotate(0); } }

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 84px; right: 28px;
  width: 48px; height: 48px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--forest-mid); transform: translateY(-4px); }

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
  background: var(--grad-forest);
  padding: 156px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(82,183,136,0.1) 0%, transparent 70%);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero .section-tag { color: var(--gold-light); }
.about-hero .section-tag::before,
.about-hero .section-tag::after { background: var(--gold-light); }
.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.about-hero h1 em { font-style: italic; color: var(--gold-light); }
.about-hero > .container > p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.about-story { background: var(--ivory); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text .section-tag { margin-bottom: 16px; }
.about-story-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--forest); margin-bottom: 24px; }
.about-story-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.85; }
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-story-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--grad-gold);
  z-index: -1;
  opacity: 0.3;
}
.about-story-img img { width: 100%; height: auto; object-fit: contain; }
.about-benefits { background: var(--cream); }

/* ===================================
   PRODUCTS PAGE
   =================================== */
.products-hero {
  background: var(--grad-forest);
  padding: 156px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.products-hero .container { position: relative; z-index: 1; }
.products-hero .section-tag { color: var(--gold-light); }
.products-hero .section-tag::before,
.products-hero .section-tag::after { background: var(--gold-light); }
.products-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.products-hero h1 em { font-style: italic; color: var(--gold-light); }
.products-hero > .container > p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

/* ===================================
   TESTIMONIALS PAGE
   =================================== */
.testimonials-hero {
  background: var(--grad-forest);
  padding: 156px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(82,183,136,0.08) 0%, transparent 60%);
}
.testimonials-hero .container { position: relative; z-index: 1; }
.testimonials-hero .section-tag { color: var(--gold-light); }
.testimonials-hero .section-tag::before,
.testimonials-hero .section-tag::after { background: var(--gold-light); }
.testimonials-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.testimonials-hero h1 em { font-style: italic; color: var(--gold-light); }
.testimonials-hero > .container > p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.reviews-grid-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,40,24,0.06);
  transition: all var(--dur-mid);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--cream-dark);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .stars { margin-bottom: 14px; }
.review-card > p { color: var(--text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-hero {
  background: var(--grad-forest);
  padding: 156px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .section-tag { color: var(--gold-light); }
.contact-hero .section-tag::before,
.contact-hero .section-tag::after { background: var(--gold-light); }
.contact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-hero h1 em { font-style: italic; color: var(--gold-light); }
.contact-hero > .container > p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest); margin-bottom: 18px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.02rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-details li i {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,40,24,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--dur-mid);
}
.social-links a:hover { background: var(--forest); color: var(--white); border-color: var(--forest); transform: translateY(-3px); }
.contact-map { background: var(--cream-dark); padding: 60px 0; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
  .hero { padding: 100px 48px 80px; gap: 60px; }
  .hero-img-wrap { width: 440px; height: 520px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .hero { padding: 100px 40px 80px; gap: 48px; }
  .hero-img-wrap { width: 380px; height: 450px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .consult-grid { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero {
    flex-direction: column;
    padding: 110px 20px 60px;
    gap: 36px;
    text-align: center;
    min-height: auto;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-trust-item { justify-content: center; }
  .hero-img-wrap { width: min(300px, 80vw); height: 360px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 20px 20px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(13,40,24,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .hamburger { display: flex; }
  .about-story-img img { height: auto; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-card > p { font-size: 1.1rem; }
  .consult-form-box { padding: 28px 22px; }
  /* Footer: break into single column, links-row becomes normal block flow */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .call-float-bar { padding: 10px 20px; }
  .consult-grid { gap: 32px; }
  .contact-grid { gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero {
    padding: 90px 16px 50px;
    gap: 28px;
    min-height: auto;
  }
  .hero-left { width: 100%; align-items: center; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-left h1 { font-size: 2rem; text-align: center; }
  .hero-sub { text-align: center; }
  .hero-img-wrap { width: min(240px, 70vw); height: 290px; }
  .hero-trust { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hero-trust-item { font-size: 0.8rem; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-btns .btn { justify-content: center; width: 100%; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat h2, .counter { font-size: 2.2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 18px; }
  .testimonial-card::before { font-size: 4.5rem; top: 8px; left: 14px; }
  .testimonial-card > p { font-size: 1rem; }
  .consult-form-box { padding: 22px 16px; }
  .section-header { margin-bottom: 36px; }
  .call-float-bar { padding: 8px 14px; gap: 8px; }
  .call-now-btn { font-size: 0.82rem; padding: 9px 16px; gap: 6px; }
  .call-bar-doctor { width: 36px; height: 36px; }
  .doctor-online { font-size: 0.82rem; gap: 8px; }
  .online-dot { width: 8px; height: 8px; }
  .footer { margin-bottom: 60px; }
  .about-story-img img { height: auto; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .product-footer .btn { width: 100%; justify-content: center; }
  .modal-box { padding: 28px 18px !important; }
  .back-to-top { bottom: 72px; right: 16px; width: 40px; height: 40px; font-size: 0.85rem; }
  .section-header h2 { font-size: 1.7rem; }
  .benefit-card { padding: 28px 20px; }
  .consult-left h2 { font-size: 1.6rem; }
  .about-hero, .products-hero, .testimonials-hero, .contact-hero { padding: 110px 0 60px; }
  .about-hero h1, .products-hero h1, .testimonials-hero h1, .contact-hero h1 { font-size: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.75rem; }
  .navbar { height: 64px; }
  .logo img { height: 36px; width: 36px; }
  .logo-name { font-size: 0.95rem; }
  .logo-tagline { font-size: 0.6rem; }
  .hero-img-wrap { width: min(200px, 65vw); height: 240px; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 2px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 14px 10px; }
  .call-float-bar { padding: 8px 10px; }
  .call-now-btn { font-size: 0.78rem; padding: 8px 14px; }
  .doctor-online span:last-child { display: none; }
  .section-tag { font-size: 0.68rem; letter-spacing: 2px; }
  .footer-grid { gap: 20px; }
  .footer-links-row { grid-template-columns: 1fr 1fr; }
  .consult-form-box { padding: 18px 14px; }
  .testimonial-card { padding: 20px 14px; }
  .review-card { padding: 24px 18px; }
}

/* ===================================
   POPUP MODAL
   =================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 40, 24, 0.75);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 440px;
  position: relative;
  transform: translateY(60px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.show .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: #e74c3c; }
