/* ═══════════════════════════════════════════════════════════
   SAATVIK PURE FOOD ENTERPRISES — style.css
   Aesthetic: Earthy Premium Indian — Deep Forest Green + Gold + Saffron
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --green-deep:    #1E3A0F;
  --green-main:    #2D5016;
  --green-mid:     #3D6B1F;
  --green-light:   #5A8C2E;
  --green-pale:    #E8F0D8;
  --green-xpale:   #F4F8EC;

  --gold:          #C8971A;
  --gold-light:    #E8B830;
  --gold-pale:     #FFF8E1;
  --gold-xpale:    #FFFDF4;

  --saffron:       #E07020;
  --saffron-light: #F08030;
  --saffron-pale:  #FFF0E0;

  --cream:         #FDFAF3;
  --ivory:         #F5F0E8;
  --white:         #FFFFFF;
  --text-dark:     #1A1A0F;
  --text-mid:      #3D3D2A;
  --text-soft:     #6B6B50;
  --text-muted:    #9A9A7A;

  --border-light:  rgba(93, 140, 46, 0.15);
  --border-gold:   rgba(200, 151, 26, 0.3);

  --shadow-sm:     0 2px 12px rgba(30, 58, 15, 0.08);
  --shadow-md:     0 6px 28px rgba(30, 58, 15, 0.12);
  --shadow-lg:     0 16px 48px rgba(30, 58, 15, 0.16);
  --shadow-gold:   0 8px 32px rgba(200, 151, 26, 0.2);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  --font-en:       'Poppins', sans-serif;
  --font-hi:       'Noto Sans Devanagari', 'Poppins', sans-serif;
  --font-display:  'Playfair Display', serif;

  --nav-h:         72px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-en);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
body.lang-hi { font-family: var(--font-hi); }

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

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45, 80, 22, 0.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary { z-index: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-product {
  display: inline-block;
  background: transparent;
  color: var(--green-main);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--green-main);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-product:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.nav-brand { flex-shrink: 0; }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.logo-leaf { font-size: 1.6rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--green-main);
  background: var(--green-pale);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(45,80,22,0.3);
}
.lang-toggle:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(45,80,22,0.4); }
.lang-flag { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-main) 50%, #1A3A08 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,151,26,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90,140,46,0.2) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero grid */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; padding-left: max(24px, calc((100vw - 1160px)/2 + 24px)); padding-right: max(24px, calc((100vw - 1160px)/2 + 24px)); padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px; }

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

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.badge-check { color: var(--gold-light); font-size: 0.8rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title-line1 { opacity: 0.85; font-style: italic; font-weight: 700; }
.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--gold-light), #FFD060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
}
.hero-mandala {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(200,151,26,0.25);
  animation: rotateMandala 20s linear infinite;
}
.ring1 { width: 280px; height: 280px; border-style: dashed; animation-duration: 40s; }
.ring2 { width: 220px; height: 220px; border-color: rgba(200,151,26,0.35); animation-direction: reverse; animation-duration: 30s; }
.ring3 { width: 160px; height: 160px; border-color: rgba(200,151,26,0.5); border-style: solid; animation-duration: 20s; }
.mandala-center {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(200,151,26,0.2), rgba(200,151,26,0.05));
  border-radius: 50%;
  border: 1px solid rgba(200,151,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mandala-icon { font-size: 2.5rem; }
@keyframes rotateMandala { to { transform: rotate(360deg); } }

.hero-spice-orb {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,151,26,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  animation: floatOrb 6s ease-in-out infinite;
}
.orb1 { top: 20px; right: 40px; animation-delay: 0s; }
.orb2 { bottom: 40px; right: 10px; animation-delay: 1.5s; }
.orb3 { bottom: 20px; left: 40px; animation-delay: 3s; }
.orb4 { top: 40px; left: 20px; animation-delay: 4.5s; }
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: linear-gradient(90deg, var(--green-deep), var(--green-main), var(--green-deep));
  padding: 14px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item span:first-child { font-size: 1rem; }
.trust-sep { color: var(--gold-light); font-size: 0.6rem; }

/* ── CERTIFICATIONS ──────────────────────────────────────────── */
.certifications {
  padding: 96px 0;
  background: var(--cream);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cert-msme::before { background: linear-gradient(90deg, var(--green-main), var(--green-light)); }
.cert-fssai::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.cert-shg::before { background: linear-gradient(90deg, var(--saffron), var(--saffron-light)); }
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.cert-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.cert-msme .cert-icon-wrap { background: var(--green-pale); }
.cert-fssai .cert-icon-wrap { background: var(--gold-pale); }
.cert-shg .cert-icon-wrap { background: var(--saffron-pale); }

.cert-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.cert-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cert-seal {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--green-pale);
  color: var(--green-main);
  border: 1px solid var(--border-light);
}
.cert-shg-code {
  background: var(--saffron-pale);
  border: 1px solid rgba(224,112,32,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.cert-shg-code strong { display: block; font-size: 0.9rem; color: var(--saffron); margin-top: 4px; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--green-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.c1 { width: 300px; height: 300px; background: var(--green-light); top: -50px; left: -50px; }
.c2 { width: 200px; height: 200px; background: var(--gold); bottom: -30px; right: -30px; }
.c3 { width: 160px; height: 160px; background: var(--saffron); top: 50%; right: 10%; }

.about-illustration-spice-grid,
.illus-spice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
  padding: 32px;
}
.illus-spice-grid span {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  animation: floatOrb 5s ease-in-out infinite;
}
.illus-spice-grid span:nth-child(2) { animation-delay: 0.5s; }
.illus-spice-grid span:nth-child(3) { animation-delay: 1s; }
.illus-spice-grid span:nth-child(4) { animation-delay: 1.5s; }
.illus-spice-grid span:nth-child(5) { animation-delay: 2s; }
.illus-spice-grid span:nth-child(6) { animation-delay: 2.5s; }
.illus-spice-grid span:nth-child(7) { animation-delay: 3s; }
.illus-spice-grid span:nth-child(8) { animation-delay: 3.5s; }
.illus-spice-grid span:nth-child(9) { animation-delay: 4s; }

.about-stat-bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  text-align: center;
  z-index: 3;
}
.stat1 { bottom: -16px; right: -16px; }
.stat2 { top: -16px; left: -16px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-main);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about-content .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.about-para {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.about-val {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
}
.about-val-icon { font-size: 1rem; }

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products {
  padding: 96px 0;
  background: var(--green-xpale);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--green-main);
  color: var(--white);
  z-index: 2;
}
.featured-tag { background: var(--gold); }
.spice-tag { background: var(--saffron); }

.product-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-emoji-bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.tea-bg { background: linear-gradient(145deg, #E8F0D8, #C8E0A8); }
.turmeric-bg { background: linear-gradient(145deg, #FFF0C0, #FFD060); }
.cumin-bg { background: linear-gradient(145deg, #F5EAD8, #DFB87A); }
.product-emoji {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  animation: floatOrb 5s ease-in-out infinite;
}

.product-info { padding: 24px 28px 28px; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.product-name-hindi {
  font-family: var(--font-hi);
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-benefits { display: flex; flex-wrap: wrap; gap: 8px; }
.benefit-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

/* ── WHY CHOOSE US ───────────────────────────────────────────── */
.why-us {
  padding: 96px 0;
  background: linear-gradient(145deg, var(--green-deep), #162A0B);
  position: relative;
  overflow: hidden;
}
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(200,151,26,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(90,140,46,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.section-header.light { position: relative; z-index: 1; }
.light-eyebrow { background: rgba(200,151,26,0.15); color: var(--gold-light); border-color: rgba(200,151,26,0.3); }
.light-title { color: var(--white); }
.light-desc { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,151,26,0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── ENGAGE ──────────────────────────────────────────────────── */
.engage-section {
  padding: 96px 0;
  background: var(--cream);
}
.engage-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.engage-tab {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--border-light);
  background: var(--white);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--transition);
}
.engage-tab.active {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.engage-tab:hover:not(.active) { border-color: var(--green-main); color: var(--green-main); }

.engage-content { display: block; }
.engage-content.hidden { display: none; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fact-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.fact-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.fact-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.contact-info p {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.contact-detail-icon { font-size: 1.1rem; }
.shg-badge-large {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-pale);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.shg-badge-icon { font-size: 2rem; flex-shrink: 0; }
.shg-badge-large strong { display: block; font-size: 0.95rem; color: var(--green-deep); }
.shg-badge-large span { font-size: 0.82rem; color: var(--text-soft); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-en);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo span { font-size: 2rem; }
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-certs { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.footer-links-col h4,
.footer-products-col h4,
.footer-cert-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links-col ul,
.footer-products-col ul,
.footer-cert-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col ul li a,
.footer-products-col ul li,
.footer-cert-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--gold-light); }
.footer-shg-code {
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
}
.footer-shg-code strong { color: var(--gold-light); display: block; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-domain {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-domain { color: var(--gold-light); opacity: 0.7; }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS / SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 40px) 24px 64px; gap: 48px; }
  .hero-visual { order: -1; height: 300px; }
  .hero-mandala { width: 200px; height: 200px; }
  .ring1 { width: 200px; height: 200px; }
  .ring2 { width: 160px; height: 160px; }
  .ring3 { width: 120px; height: 120px; }

  .cert-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 380px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); width: 100%; }
  .hamburger { display: flex; }

  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .trust-strip-inner { gap: 16px; }
  .trust-sep { display: none; }
  .hero-badge-row { gap: 8px; }
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .contact-form-wrap { padding: 28px 20px; }
  .cert-card { padding: 28px 20px; }
  .why-card { padding: 28px 20px; }
  .brand-sub { display: none; }
}

/* Language switch animation */
[data-key] {
  transition: opacity 0.2s ease;
}
.lang-switching [data-key] {
  opacity: 0;
}
