/* ===================================
   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&family=Outfit:wght@400;500;600;700;800&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:        #f9f6ef;
  --cream-dark:   #eaddc9;
  --ivory:        #f9f6ef;
  --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(249, 246, 239, 0.90); /* Matches #f9f6ef */
  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(249, 246, 239, 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: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: color var(--dur-fast);
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--forest);
  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); }

/* ===================================
   NAV TOOLS (SEARCH, USER, CART)
   =================================== */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(13, 40, 24, 0.1);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  gap: 10px;
  width: 200px;
  transition: all 0.3s ease;
}
.search-bar:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(45, 90, 60, 0.1);
  width: 240px;
}
.search-bar i {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: var(--text);
}
.nav-icon {
  color: var(--text);
  font-size: 1.2rem;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}
.nav-icon:hover {
  color: var(--forest);
}
.cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #90c279;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.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; }

/* Mobile Drawer Elements default hidden on desktop */
.drawer-header {
  display: none !important;
}
.mobile-link-icon {
  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: 60vh;
  background: var(--cream); /* Light cream — matches #f9f6ef */
  display: flex;
  align-items: center;
  padding: 80px 0 48px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: #e5ecd6; /* Light green from image */
  color: #2c592a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  width: fit-content;
}

.hero-left h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

.text-dark {
  display: block;
  color: #1a1a1a;
  background: none !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

.text-green {
  display: block;
  color: #2d5a27;
  background: none !important;
  -webkit-text-fill-color: #2d5a27 !important;
}

.hero-sub {
  color: #555;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 540px;
  margin-top: 8px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn-pill {
  border-radius: 99px !important;
  font-weight: 600;
  padding: 14px 28px !important;
  font-family: 'Outfit', sans-serif;
}

.hero-left .btn-primary {
  background-color: #2d5a27;
  color: #fff;
  border: none;
}

.hero-left .btn-primary:hover {
  background-color: #1f3f1b;
}

.hero-left .btn-outline {
  background-color: #fff;
  color: #2d5a27;
  border: 1px solid #e0e0e0;
}

.hero-left .btn-outline:hover {
  border-color: #2d5a27;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-stat-item h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d5a27;
  margin: 0;
  background: none !important;
  -webkit-text-fill-color: #2d5a27 !important;
}

.hero-stat-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  font-weight: 500;
}

/* Hero Right Image */
.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: visible;
}

.hero-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: white;
  padding: 10px 20px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 2;
}

.floating-badge i {
  color: #72a868; /* Light green icon */
  font-size: 1rem;
}

.badge-organic {
  top: 32px;
  left: 16px;
  animation: floatBadgeUp 3s ease-in-out infinite;
}

.badge-pure {
  bottom: 32px;
  right: 16px;
  animation: floatBadgeDown 3.5s ease-in-out infinite;
}

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

@keyframes floatBadgeDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-sub { text-align: center; }
  .hero-stats { justify-content: center; width: 100%; }
  .badge-organic { left: 20px; }
  .badge-pure { right: 20px; }
}

/* ===================================
   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(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(13, 40, 24, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-img {
  position: relative;
  background: #f4f6f5; 
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #de9b68; /* Orange badge from image */
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  z-index: 2;
}
.product-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.product-action-btn {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border: none; cursor: pointer;
}
.product-action-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #88968d;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-info h3 {
  font-size: 1.1rem;
  color: #2c3e32;
  margin: 0 0 8px 0;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.card-rating i {
  color: #f6c042;
  font-size: 0.85rem;
}
.card-rating span {
  font-size: 0.75rem;
  color: #88968d;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d2818;
}
.card-add-btn {
  background: #528165;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.card-add-btn:hover {
  background: #3e6850;
}

/* ===================================
   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;
}

/* ===================================
   CATEGORIES SECTION
   =================================== */
.categories-section {
  padding: 80px 0 40px;
  background: var(--cream);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.category-icon {
  width: 64px; height: 64px;
  background: #ede7dd; /* Tan background from image */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #2d5a27; /* Dark green icon */
  margin-bottom: 8px;
  transition: all 0.4s var(--ease);
}
.category-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
}
.category-card p {
  font-size: 0.85rem;
  color: #6b7d6e; /* Subtle text */
  margin: 0;
  line-height: 1.5;
}
.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); }

/* ===================================
   VIDEO REVIEWS
   =================================== */
.video-reviews { margin-top: 56px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ===================================
   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;
}
.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; } }

/* WeClinic-style blue sonar call button */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a6fc4;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 18px rgba(26,111,196,0.45);
  position: relative;
  overflow: visible;
}
.call-now-btn:hover { background: #155fa0; transform: translateY(-2px); }
.call-now-btn i { animation: ringShake 1.8s ease-in-out infinite; display: inline-block; }
/* Sonar rings */
.call-now-btn::before,
.call-now-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: rgba(26,111,196,0.4);
  animation: sonarRing 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.call-now-btn::after { animation-delay: 0.9s; }
@keyframes sonarRing {
  0%   { transform: scale(1);   opacity: 0.75; }
  100% { transform: scale(2);   opacity: 0; }
}
@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) {
  .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 { padding-bottom: 70px; }
  .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; }
}

/* ===================================
   PAGE LOADER
   =================================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.loader-brand {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}
.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 2px;
  animation: loaderBar 1.2s var(--ease) forwards;
}
@keyframes loaderBar {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===================================
   LEAD POPUP MODAL
   =================================== */
.modal-lead-box {
  background: var(--white);
  border-radius: 20px;
  width: 92%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(-60px);
  transition: none;
}
.modal-lead-box::-webkit-scrollbar { display: none; }
.modal-overlay.show .modal-lead-box {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Direction variants set via JS */
.modal-lead-box.from-top    { transform: translateY(-80px); }
.modal-lead-box.from-bottom { transform: translateY(80px); }
.modal-lead-box.from-left   { transform: translateX(-80px); }
.modal-lead-box.from-right  { transform: translateX(80px); }

/* Gold card floats inside white modal */
.modal-lead-header {
  background: linear-gradient(145deg, #d4a843 0%, #e8c96a 50%, #c9a030 100%);
  margin: 18px 18px 0;
  border-radius: 14px;
  padding: 22px 22px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.modal-lead-tag {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.6;
  margin-bottom: 10px;
}
.modal-lead-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1.35;
}
.modal-lead-header h3 span { font-style: italic; }
.modal-lead-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--forest);
  opacity: 0.7;
  margin-bottom: 14px;
}
.modal-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
  text-decoration: none;
}
.modal-phone-link i { font-size: 0.95rem; }

/* Call button inside gold card */
.modal-lead-header .btn-gold {
  background: #1a6fc4 !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(26,111,196,0.4) !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Sonar rings */
.modal-lead-header .btn-gold::before,
.modal-lead-header .btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: rgba(26,111,196,0.35);
  animation: sonarRing 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.modal-lead-header .btn-gold::after {
  animation-delay: 0.9s;
}
@keyframes sonarRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}
.modal-lead-header .btn-gold:hover {
  background: #155fa0 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,196,0.55) !important;
}

/* Form area below gold card */
.modal-lead-box .contact-form {
  padding: 20px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.modal-lead-box .form-group input {
  background: var(--cream);
  border: 1.5px solid rgba(13,40,24,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.93rem;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.modal-lead-box .form-group input:focus {
  border-color: var(--forest-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}
.modal-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--text);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(13,40,24,0.1);
  background: var(--cream);
  transition: all 0.2s;
  user-select: none;
}
.check-item:hover { border-color: var(--forest-light); background: var(--white); }
.check-item input[type="checkbox"] { accent-color: var(--forest); width: 14px; height: 14px; flex-shrink: 0; }
.check-item:has(input:checked) { border-color: var(--forest-light); background: rgba(45,106,79,0.06); font-weight: 600; }

/* ===================================
   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);
  padding: 40px 32px;
}
.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; }
/* ===================================
   RESPONSIVE OVERRIDES (MOBILE & TABLET)
   =================================== */

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .search-bar { width: 160px; }
}

@media (max-width: 992px) {
  section { padding: 60px 0; }
  
  /* Navbar Cleanup */
  .logo-text { display: none; }
  .logo img { height: 38px; width: 38px; }
  
  .hamburger { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: #fdfcf8; /* Reference Light Cream */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    gap: 0;
    box-shadow: none;
    transition: right 0.4s var(--ease);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  
  /* Hide main hamburger when menu is open to prevent overlap */
  .nav-links.open ~ .hamburger { display: none !important; }
  
  /* Drawer Header (Ref: [X] [Logo] [Icons]) */
  .drawer-header {
    width: 100%;
    height: 80px;
    padding: 0 16px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fdfcf8;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 32px;
  }
  .drawer-close { font-size: 1.4rem; color: #333; cursor: pointer; width: 32px; }
  .drawer-logo-inner { display: flex; align-items: center; gap: 6px; text-decoration: none; flex: 1; justify-content: center; }
  .drawer-logo-inner img { height: 28px; width: auto; }
  .drawer-logo-inner .logo-name { font-size: 0.95rem; font-weight: 700; color: var(--forest); white-space: nowrap; }
  .drawer-logo-inner .logo-tagline { display: none !important; }
  
  .drawer-tools { display: flex !important; gap: 12px; width: 64px; justify-content: flex-end; }
  .drawer-tools .search-bar { display: none; }
  .drawer-tools .nav-icon { font-size: 1.2rem; color: #333; }

  .nav-links li { width: 100%; text-align: left; padding: 0 40px; }
  .nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    transition: color 0.3s;
  }
  .mobile-link-icon {
    display: inline-block !important;
    font-size: 1.1rem;
    color: var(--forest-light);
    width: 24px;
    text-align: center;
  }
  .nav-links a.active { color: var(--forest); }
  .nav-links a.active::after { display: none; }
  .nav-container > .nav-tools {
    display: flex !important;
    gap: 16px;
    align-items: center;
  }
  .nav-container > .nav-tools .search-bar,
  .nav-container > .nav-tools a[aria-label="Account"],
  .nav-container > .nav-tools a[aria-label="Cart"] {
    display: none !important;
  }
  .hamburger span { background: var(--forest); }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-container { flex-direction: column; gap: 40px; text-align: center; }
  .hero-left { align-items: center; }
  .hero-sub { text-align: center; margin-inline: auto; font-size: 0.95rem; }
  .hero-stats { justify-content: center; width: 100%; }
  
  /* Floating Badges */
  .badge-organic { left: 10px; top: 10px; padding: 6px 12px; font-size: 0.72rem; }
  .badge-pure { right: 10px; bottom: 10px; padding: 6px 12px; font-size: 0.72rem; }
  
  /* Grids */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  .product-img { height: 280px; padding: 0; }
  .product-img img { width: 100%; height: 100%; object-fit: cover; }
}

@media (max-width: 768px) {
  .logo-name { font-size: 0.95rem; }
  .logo-tagline { font-size: 0.6rem; }
  
  .section-header h2 { font-size: 2rem; }
  .section-tag { font-size: 0.65rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand, .footer-links, .footer-newsletter { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 580px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-main-img { height: 320px; }
}

/* TRUST SECTION */
.trust-section {
  padding: 40px 0;
  background: #fdfcf8;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.trust-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #666;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* PREMIUM BENEFITS */
.benefits-premium {
  padding: 80px 0;
  background: var(--cream);
}
.benefits-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card-new {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.3s var(--ease);
}
.benefit-card-new:hover {
  transform: translateY(-5px);
}
.benefit-icon-new {
  width: 60px;
  height: 60px;
  background: #f1f7f3;
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 24px;
}
.benefit-card-new h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--forest);
}
.benefit-card-new p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 992px) {
  .benefits-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .trust-logos-row { gap: 30px; }
  .trust-brand { font-size: 1.2rem; }
}
@media (max-width: 580px) {
  .benefits-grid-premium { grid-template-columns: 1fr; }
}

/* DOSHA SECTION */
.dosha-section {
  padding: 80px 0;
  background: #fdfcf8;
}
.dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.dosha-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border-top: 6px solid #eee; /* Default */
  transition: transform 0.3s var(--ease);
}
.dosha-card:hover { transform: translateY(-10px); }

.dosha-card.vata { border-top-color: #89cff0; } /* Blue for Air/Space */
.dosha-card.pitta { border-top-color: #ff7f50; } /* Orange for Fire/Water */
.dosha-card.kapha { border-top-color: #77dd77; } /* Green for Earth/Water */

.dosha-card.vata h3 { color: #5dade2; }
.dosha-card.pitta h3 { color: #e67e22; }
.dosha-card.kapha h3 { color: #27ae60; }

.dosha-card h3 { font-size: 2rem; margin-bottom: 8px; }
.dosha-elements {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 24px;
}
.dosha-info {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}
.dosha-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--forest);
  border-radius: 30px;
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.dosha-btn:hover {
  background: var(--forest);
  color: #fff;
}

@media (max-width: 992px) {
  .dosha-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* HEALTH CONCERNS SECTION */
.concerns-section {
  padding: 80px 0;
  background: var(--cream);
}
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.concern-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s var(--ease);
}
.concern-card:hover {
  transform: translateY(-8px);
}
.concern-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.concern-card:hover .concern-img {
  transform: scale(1.1);
}
.concern-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}
.concern-overlay i {
  font-size: 1.8rem;
  color: #77dd77; /* Light green icon as per ref */
}
.concern-overlay span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .concerns-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .concerns-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-header h2 { font-size: 2rem; }
}
