/* ====================================
   SUKRUTHAM HERBS — Global Styles
   ==================================== */

:root {
  /* Brand Colors */
  --green-deep:    #1a3a2a;
  --green-mid:     #2d6a4f;
  --green-light:   #52b788;
  --green-pale:    #b7e4c7;
  --gold:          #c9a84c;
  --gold-light:    #e8c97b;
  --gold-pale:     #fdf3d6;
  --cream:         #faf7f0;
  --brown-warm:    #5c3a1e;
  --text-dark:     #1a1a1a;
  --text-mid:      #3d3d3d;
  --text-light:    #6b7280;
  --white:         #ffffff;
  --off-white:     #f9fafb;

  /* B2B Accent */
  --b2b-dark:      #0f1f2e;
  --b2b-blue:      #1e4d8c;
  --b2b-gold:      #f4a01c;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.16);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.22);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: 100px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-img {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #dcedc8 100%);
  border: 2px dashed #81c784;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: #388e3c;
}

.hero-placeholder {
  width: 100%;
  height: 460px;
  border-radius: 20px;
}

.hero-product-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(201,168,76,0.25);
}

.product-placeholder {
  width: 100%;
  height: 280px;
}

.product-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.ing-placeholder {
  width: 100%;
  height: 160px;
}

.ph-icon { font-size: 2.5rem; }
.placeholder-img p { font-size: 0.85rem; font-weight: 600; line-height: 1.4; }
.placeholder-img small { font-size: 0.72rem; opacity: 0.7; }

/* ========== TYPOGRAPHY ========== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 2px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-logo:hover .logo-box {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.header-logo-img {
  max-height: 100% !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

.footer-logo-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 2px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  overflow: hidden;
  margin-bottom: 14px;
}

.footer-logo-img {
  max-height: 100% !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

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

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--green-pale);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(26,58,42,0.98);
  backdrop-filter: blur(16px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.mobile-cta {
  margin-top: 16px;
  background: #25D366;
  color: white !important;
  padding: 14px 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  border: none !important;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0d2a1a 40%, #1a3a2a 70%, #2d4a35 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(82, 183, 136, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(45, 106, 79, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.9; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--green-pale);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #52b788;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon { font-size: 1.4rem; }

.trust-pill div {
  display: flex;
  flex-direction: column;
}

.trust-pill strong {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}

.trust-pill small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

.large-btn { padding: 18px 40px; font-size: 1.1rem; }

.pulse-btn {
  animation: pulseShadow 2.5s ease-in-out infinite;
}

@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* ========== HERO IMAGE WRAP ========== */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-frame img,
.hero-image-frame .hero-placeholder {
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-badge-float.top-left { top: 24px; left: -20px; }
.hero-badge-float.bottom-right { bottom: 24px; right: -20px; }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ========== ANIMATIONS ========== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: linear-gradient(90deg, var(--green-deep), var(--green-mid), var(--green-deep));
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== WHY DIABETONE — Premium Redesign ========== */
.why-section {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Background decorative blobs */
.why-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.why-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.why-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  bottom: 0; right: -100px;
}

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

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 56px;
}
.why-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.why-headline em {
  font-style: italic;
  color: var(--gold);
}
.why-subtext {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Stats strip */
.why-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--green-deep), #1a4a30);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 72px;
  box-shadow: 0 20px 60px rgba(26,58,42,0.2);
}
.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.wstat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.wstat-plus {
  font-size: 1.4rem;
  color: var(--gold-light);
}
.wstat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.why-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 16px;
}

/* 3-column layout */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

/* Feature rows (left & right columns) */
.why-col { display: flex; flex-direction: column; gap: 28px; }

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(82,183,136,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-feature:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.why-feature:hover::after { opacity: 1; }

/* Flip layout for right col (icon on right) */
.why-feature-flip { flex-direction: row-reverse; text-align: right; }

.wf-icon-wrap {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.why-feature:hover .wf-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.wf-green  { background: rgba(82,183,136,0.12); color: #2d6a4f; }
.wf-gold   { background: rgba(201,168,76,0.12);  color: #a07820; }
.wf-teal   { background: rgba(20,184,166,0.12);  color: #0f766e; }
.wf-rose   { background: rgba(244,63,94,0.08);   color: #be123c; }
.wf-purple { background: rgba(139,92,246,0.1);   color: #6d28d9; }
.wf-orange { background: rgba(249,115,22,0.1);   color: #c2410c; }

.wf-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}
.wf-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Center Orb */
.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.why-orb {
  position: relative;
  width: 260px;
  height: 260px;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(82,183,136,0.25);
  animation: orbSpin linear infinite;
}
.orb-ring-1 { animation-duration: 18s; }
.orb-ring-2 { inset: 20px; border-color: rgba(201,168,76,0.2); animation-duration: 26s; animation-direction: reverse; }
.orb-ring-3 { inset: 40px; border-color: rgba(82,183,136,0.15); animation-duration: 34s; border-style: dashed; }

@keyframes orbSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orb-core {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), #1a4a30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(82,183,136,0.08),
    0 0 60px rgba(82,183,136,0.2),
    0 20px 50px rgba(0,0,0,0.25);
}
.orb-emoji { font-size: 2rem; line-height: 1; margin-bottom: 4px; }
.orb-word {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.od-1 { top: 6px;  left: 50%; transform: translateX(-50%); }
.od-2 { right: 6px; top: 50%; transform: translateY(-50%); }
.od-3 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.od-4 { left: 6px; top: 50%; transform: translateY(-50%); }

/* Certified badge */
.why-badge-wrap { text-align: center; }
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,42,0.07);
  border: 1px solid rgba(82,183,136,0.25);
  color: var(--green-mid);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.wb-dot {
  width: 7px; height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* Bottom CTA strip */
.why-cta-strip {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.why-cta-strip p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-center { order: -1; }
  .why-orb { width: 220px; height: 220px; }
  .why-feature-flip { flex-direction: row; text-align: left; }
}
@media (max-width: 640px) {
  .why-stats { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .why-stat-divider { width: 80px; height: 1px; margin: 0; }
}

/* ========== PRODUCTS ========== */
.products-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #112a1c 50%, #1a3a2a 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.product-image-wrap {
  position: relative;
  background: var(--gold-pale);
  height: 340px; /* Fixed height for uniformity */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the entire image is visible, no cropping */
  padding: 20px; /* Optional padding so it doesn't touch edges */
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
}

.new-tag { background: #14b8a6; color: white; }
.combo-tag { background: #8b5cf6; color: white; }

.product-info { padding: 28px; }

.product-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.dosage-box {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(201, 168, 76, 0.06));
  border-left: 3px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.dosage-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.dosage-box p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.millet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.millet-tags span {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-mrp {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
}

.price-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
}

.price-val small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
}

/* ========== INGREDIENTS CAROUSEL ========== */
.ingredients-section {
  padding: var(--section-py) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.ingredients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(82,183,136,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.ingredients-section .section-header .section-label { color: var(--gold-light); }
.ingredients-section .section-header .section-title { color: var(--white); }
.ingredients-section .section-header .section-desc { color: rgba(255,255,255,0.65); }

.ing-carousel-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 32px;
  overflow: hidden;
}

.ing-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.ing-dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.ing-dot.active {
  background: var(--gold);
  width: 28px;
}

.ing-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}

.ing-slide {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 40px 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  box-sizing: border-box;
}

.ing-slide-icon {
  width: 130px;
  min-width: 130px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ing-slide-body { flex: 1; }

.ing-slide-scientific {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.ing-slide-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.ing-slide-common {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
  font-style: italic;
}

.ing-slide-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ing-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ing-slide-tags span {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.ing-arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.ing-arrow:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}
.ing-prev { left: -24px; }
.ing-next { right: -24px; }

.ing-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.ing-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  border-radius: 2px;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .ing-slide { flex-direction: column; padding: 24px 20px; gap: 16px; align-items: center; text-align: center; }
  .ing-slide-icon { width: 70px; min-width: 70px; height: 70px; }
  .ing-slide-icon i { font-size: 2.5rem !important; }
  .ing-slide-name { font-size: 1.6rem; margin-bottom: 8px; }
  .ing-slide-desc { font-size: 0.9rem; margin-bottom: 16px; }
  .ing-arrow { display: none; }
  .ing-slide-tags { justify-content: center; }
}


/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-deep), #0d2a1a);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, background 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(82, 183, 136, 0.1));
  border-color: rgba(201, 168, 76, 0.3);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.t-author small {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

/* ========== B2B SECTION ========== */
.b2b-section {
  padding: var(--section-py) 0;
  background: var(--b2b-dark);
  position: relative;
  overflow: hidden;
}

.b2b-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(30, 77, 140, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.b2b-label { color: var(--b2b-gold); background: rgba(244, 160, 28, 0.1); border-color: rgba(244, 160, 28, 0.3); }
.b2b-section .section-title { color: var(--white); }
.b2b-section .section-desc { color: rgba(255,255,255,0.6); }

.b2b-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.b2b-headline-block {
  margin-bottom: 36px;
}

.b2b-headline-block h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.b2b-headline-block p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 0.95rem;
}

.b2b-headline-block strong { color: var(--b2b-gold); }

.margin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.margin-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.margin-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.margin-card.retailer { border-color: rgba(82, 183, 136, 0.3); }
.margin-card.distributor { border-color: rgba(59, 130, 246, 0.3); }
.margin-card.total {
  background: linear-gradient(135deg, rgba(244, 160, 28, 0.15), rgba(201, 168, 76, 0.1));
  border-color: rgba(244, 160, 28, 0.4);
}

.margin-pct {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.margin-card.retailer .margin-pct { color: var(--green-light); }
.margin-card.distributor .margin-pct { color: #60a5fa; }
.margin-card.total .margin-pct { color: var(--b2b-gold); }

.margin-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.margin-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.b2b-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.perk-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.btn-b2b {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-b2b:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

/* Price Breakdown Card */
.price-breakdown-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  overflow: hidden;
}

.pb-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.pb-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.pb-pack {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.pb-bars { display: flex; flex-direction: column; gap: 20px; }

.pb-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 16px;
}

.pb-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.pb-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  height: 36px;
  overflow: hidden;
}

.pb-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  transition: width 1.2s ease;
}

.pb-bar.dist-bar { background: linear-gradient(90deg, #3b82f6, #1e40af); }
.pb-bar.total-bar { background: linear-gradient(90deg, var(--b2b-gold), #d97706); }

.pb-footer {
  margin-top: 28px;
  padding: 14px;
  background: rgba(244, 160, 28, 0.08);
  border: 1px solid rgba(244, 160, 28, 0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d2a1a 0%, var(--green-mid) 50%, #0d2a1a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: #080f0a;
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--green-light);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.social-icon:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.whatsapp-icon:hover { background: #25D366 !important; border-color: #25D366 !important; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--green-light); }

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.contact-item address,
.contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--green-light); }

.disclaimer {
  font-size: 0.72rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.2) !important;
  line-height: 1.5;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.7);
}

.wa-icon { position: relative; z-index: 2; display: flex; }

.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-deep);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--green-deep);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 80px;
    text-align: center;
  }

  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtext { margin: 0 auto 36px; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .scroll-hint { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 64px; gap: 40px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-badge-float { display: none; }
  .hero-trust { flex-direction: column; gap: 16px; align-items: center; }
  .trust-divider { display: none; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 16px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; text-align: center; justify-content: center; }

  .section-title { font-size: 2rem; }

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

  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}

/* ========== PHOSPHOR ICONS CSS ========== */
i.ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hero-badge-float i.ph { font-size: 1.25rem; color: var(--gold); }
.trust-icon i.ph { font-size: 1.5rem; }
.marquee-track i.ph { font-size: 1.25rem; margin-right: 6px; vertical-align: middle; }
.orb-emoji i.ph { font-size: 2rem; color: var(--gold-light); }
.orbit-dot i.ph { font-size: 1.25rem; color: var(--green-deep); }
.dosage-label i.ph { font-size: 1.1rem; margin-right: 4px; vertical-align: bottom; }
.contact-icon i.ph { font-size: 1.4rem; color: var(--gold); }
.placeholder-img i.ph { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.8; }
