/* ============================================================
   SHREE NEELKANTH ORGANICS — STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --green-dark:   #1a5c2a;
  --green-mid:    #2d7a3a;
  --green-light:  #4a9e5c;
  --gold:         #c8972a;
  --gold-light:   #e8b84b;
  --brown:        #7a4520;
  --cream:        #f5f0e8;
  --cream-light:  #faf7f1;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #3a3a3a;
  --text-muted:   #666666;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --radius:       8px;
  --radius-lg:    16px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --transition:   0.3s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ── Section Header Bars (brochure style) ─────────────────── */
.sec-header {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sec-header h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sec-header .leaf-icon { color: var(--gold-light); font-size: 1rem; }

.section-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(26,92,42,0.12);
  /* min-width:0 prevents grid blowout when nested in a grid */
  min-width: 0;
}
.section-body { padding: 24px; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .brand { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--green-dark); }
.nav-logo-text .tagline { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); background: rgba(26,92,42,0.08); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 50px !important;
  font-size: 0.8rem !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  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); }

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 20px;
  border-top: 1px solid rgba(26,92,42,0.1);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-menu a:hover { background: rgba(26,92,42,0.08); color: var(--green-dark); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  margin-top: 72px;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow: hidden;
}

/* Brand header row */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 20px 12px;
  text-align: center;
}
.hero-logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}
.hero-brand-text { text-align: left; }
.hero-company {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 1px;
  line-height: 1.1;
}
.hero-tagline {
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  color: var(--green-mid);
  margin-top: 4px;
  font-family: var(--font-head);
}

/* Product title block */
.hero-titles {
  text-align: center;
  padding: 0 20px 8px;
}
.hero-pre {
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-product {
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.hero-ribbon {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  font-size: clamp(0.6rem, 1.2vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 32px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 4px;
}
.hero-ribbon::before,
.hero-ribbon::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 13px solid transparent;
}
.hero-ribbon::before { right: -13px; border-left-color: var(--brown); border-right: none; }
.hero-ribbon::after  { left:  -13px; border-right-color: var(--brown); border-left: none; }

/* Main hero image */
.hero-img-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Benefit icons row */
.hero-icons-row {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-top: 3px solid var(--green-dark);
  padding: 16px 20px;
  flex-wrap: wrap;
}
.hir-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 28px;
  border-right: 1px solid rgba(26,92,42,0.15);
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.hir-item:last-child { border-right: none; }
.hir-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.hir-item span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Bottom bar */
.hero-bottom-bar {
  background: var(--green-dark);
  padding: 13px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-bottom-bar span { color: var(--gold-light); }

/* ── MAIN CONTENT WRAPPER ────────────────────────────────── */
.main-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}
.section-gap { margin-bottom: 48px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Prevent grid children from blowing out their track width */
.two-col > *, .three-col > *,
.lab-content-grid > *, #usage .usage-grid > *,
#founder .founder-grid > *, #contact .contact-grid > *,
.founder-stats > *, .lab-quality-badges > * { min-width: 0; }

/* ── COMPANY PROFILE ─────────────────────────────────────── */
#about .section-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.strength-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,92,42,0.08);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.strength-list li:last-child { border-bottom: none; }
.strength-list li i { color: var(--green-mid); margin-top: 3px; flex-shrink: 0; }

.strength-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
}

/* ── OUR PLANT ───────────────────────────────────────────── */
#plant .plant-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.plant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plant-gallery .img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4ebd4 0%, #a8d5a8 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  gap: 8px;
  border: 2px dashed rgba(26,92,42,0.3);
}
.plant-gallery .img-placeholder i { font-size: 2rem; opacity: 0.5; }
.plant-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
#why .why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin-bottom: 24px;
}
#why .why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(26,92,42,0.08);
}
#why .why-list li i { color: var(--green-mid); margin-top: 3px; flex-shrink: 0; }
.quality-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 2px solid rgba(26,92,42,0.1);
}
.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 8px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(26,92,42,0.1);
}
.quality-badge .qb-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}
.quality-badge span { font-size: 0.72rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.3; }

/* ── BENEFITS ────────────────────────────────────────────── */
#benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  border: 1px solid rgba(26,92,42,0.1);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.benefit-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
}
.benefit-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.benefit-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── LAB QUALITY ─────────────────────────────────────────── */
#lab .lab-hero {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
#lab .lab-hero h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
#lab .lab-hero p { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.lab-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.lab-table-wrap { overflow-x: auto; }
.lab-table th {
  background: var(--green-dark);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lab-table td {
  padding: 9px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(26,92,42,0.08);
  color: var(--text-mid);
}
.lab-table tr:nth-child(even) td { background: rgba(26,92,42,0.04); }
.lab-table tr:hover td { background: rgba(26,92,42,0.08); }
.lab-table td:nth-child(2) { font-weight: 700; color: var(--green-dark); }
.lab-nabl {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}
.lab-nabl i { color: var(--gold); margin-right: 4px; }
.lab-quality-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lab-qb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius);
  border: 2px solid rgba(26,92,42,0.15);
  text-align: center;
  transition: var(--transition);
  background: var(--cream);
}
.lab-qb:hover { border-color: var(--green-mid); background: var(--white); }
.lab-qb .lqb-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
}
.lab-qb span { font-size: 0.78rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* ── USAGE / HOW MUCH ────────────────────────────────────── */
#usage .usage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.usage-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.5px;
}
.usage-table td {
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(26,92,42,0.08);
}
.usage-table tr:nth-child(even) td { background: rgba(26,92,42,0.04); }
.usage-table td:nth-child(2) { font-weight: 700; color: var(--green-dark); text-align: right; }

.dosage-table th {
  background: var(--gold);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
}
.dosage-table td {
  padding: 9px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(26,92,42,0.08);
  color: var(--text-mid);
}
.dosage-table tr:nth-child(even) td { background: rgba(200,151,42,0.06); }
.dosage-table td:nth-child(2) { font-weight: 700; color: var(--brown); text-align: right; }

.application-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.app-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--green-dark);
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
}
.app-method i { font-size: 1.5rem; color: var(--gold-light); }
.app-method .app-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.app-method .app-desc { font-size: 0.68rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ── Plant full image ────────────────────────────────────── */
.plant-full-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.plant-full-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ── Product bag image ───────────────────────────────────── */
.product-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.product-bag-img {
  width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.product-bag-img:hover { transform: scale(1.03); }

/* ── Table scroll wrapper ────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── PACKING ─────────────────────────────────────────────── */
#packing .packing-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0;
}
.pack-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pack-visual {
  background: linear-gradient(180deg, #e8f5e8 0%, #c8e8c8 30%, var(--green-dark) 100%);
  border: 2px solid var(--green-dark);
  border-radius: 10px 10px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px 14px;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}
.pack-visual:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pack-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: var(--green-dark);
  border-radius: 8px 8px 0 0;
}
.pack-inner { position: relative; z-index: 1; text-align: center; }
.pack-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 6px;
  border: 1px solid rgba(26,92,42,0.2);
}
.pack-icon i { color: var(--green-dark); font-size: 1rem; }
.pack-brand { font-size: 0.42rem; font-weight: 900; color: var(--green-dark); letter-spacing: 0.5px; line-height: 1.1; }
.pack-product { font-size: 0.38rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.pack-organic { font-size: 0.38rem; color: var(--green-mid); font-weight: 700; margin-top: 8px; }
.pack-weight-label {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 1px;
}

/* Named bag sizes — overrideable by media queries */
.pack-500g .pack-visual { width: 65px;  min-height: 85px; }
.pack-1kg  .pack-visual { width: 78px;  min-height: 100px; }
.pack-5kg  .pack-visual { width: 92px;  min-height: 118px; }
.pack-25kg .pack-visual { width: 112px; min-height: 144px; }
.pack-50kg .pack-visual { width: 132px; min-height: 168px; }

.howto-box {
  background: var(--cream);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.howto-box strong { color: var(--green-dark); }

/* ── FOUNDER ─────────────────────────────────────────────── */
#founder .founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--green-dark);
}
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4ebd4 0%, #a8d5a8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  border: 3px dashed rgba(26,92,42,0.3);
  gap: 10px;
}
.founder-photo-placeholder i { font-size: 3rem; opacity: 0.4; }
.founder-photo-placeholder span { font-size: 0.75rem; font-weight: 700; }
.founder-farm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.founder-farm-grid .img-placeholder { aspect-ratio: 4/3; }
.founder-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.founder-title { font-size: 0.85rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.founder-bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26,92,42,0.1);
}
.founder-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(26,92,42,0.1);
}
.stat-card .stat-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.stat-card .stat-number { font-size: 1.1rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.stat-card .stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item .ci-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item .ci-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-item .ci-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; }
.contact-item a.ci-value { color: var(--green-dark); }
.contact-item a.ci-value:hover { color: var(--gold); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(26,92,42,0.15);
  min-height: 280px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  text-align: center;
  padding: 20px;
}
.map-placeholder i { font-size: 3rem; opacity: 0.4; }
.map-placeholder p { font-size: 0.8rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: var(--white);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .fb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand .fb-logo img { height: 48px; filter: brightness(0) invert(1); }
.footer-brand h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.footer-brand .ft-tagline { color: var(--gold-light); font-style: italic; font-size: 0.85rem; }
.footer-links h4, .footer-contact-mini h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-links ul { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-mini .fci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.footer-contact-mini .fci i { color: var(--gold-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact-mini a { color: rgba(255,255,255,0.75); }
.footer-contact-mini a:hover { color: var(--gold-light); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  text-align: center;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-motto {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.footer-motto span { color: var(--gold-light); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── WHATSAPP FLOATING BUTTON ────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { background: #1da851; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: var(--white); }
.whatsapp-fab .wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-fab:hover .wa-tooltip { opacity: 1; }

/* ── Contact buttons ─────────────────────────────────────── */
.contact-btns {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-btns a { flex-shrink: 0; }

/* ── AOS overrides ───────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .two-col, .three-col   { grid-template-columns: 1fr; }
  .founder-grid          { grid-template-columns: 1fr; }
  .footer-inner          { grid-template-columns: 1fr 1fr; }
  .benefits-grid         { grid-template-columns: repeat(2,1fr) !important; }
  #usage .usage-grid     { grid-template-columns: 1fr; }
  .lab-content-grid      { grid-template-columns: 1fr; }
  #contact .contact-grid { grid-template-columns: 1fr; }
  .quality-badges        { grid-template-columns: repeat(2,1fr); }
  .lab-quality-badges    { grid-template-columns: repeat(4,1fr); }
  .founder-stats         { grid-template-columns: repeat(2,1fr); }
  .founder-photo-wrap    { max-width: 300px; margin: 0 auto; }
}

/* ── Tablet portrait (≤768px) ────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links            { display: none; }
  .hamburger            { display: flex; }
  .nav-inner            { height: 62px; }
  .nav-logo img         { height: 42px; }
  .nav-logo-text .brand   { font-size: 0.85rem; }
  .nav-logo-text .tagline { display: none; }

  /* Hero */
  #hero                 { margin-top: 62px; }
  .hero-brand           { padding: 20px 16px 8px; gap: 12px; }
  .hero-logo            { height: 60px; }
  .hero-bottom-bar      { font-size: 0.75rem; letter-spacing: 2px; padding: 11px 16px; }
  .hir-item             { padding: 8px 14px; min-width: 75px; }
  .hir-icon             { width: 40px; height: 40px; font-size: 1rem; }
  .hir-item span        { font-size: 0.6rem; }

  /* Layout */
  .main-wrapper         { padding: 28px 14px; }
  .section-gap          { margin-bottom: 28px; }
  .section-body         { padding: 16px 14px; }
  .sec-header h2        { font-size: 0.85rem; letter-spacing: 1.5px; }

  /* Allow child scroll containers to work — sec-header has its own border-radius */
  .section-card         { overflow: visible; }

  /* About */
  .strength-list li     { font-size: 0.84rem; }
  #why .why-list        { grid-template-columns: 1fr; }
  .quality-badges       { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .quality-badge        { padding: 12px 8px; }
  .two-col              { grid-template-columns: 1fr; }

  /* Plant */
  .product-bag-img      { width: 220px; }

  /* Benefits */
  .benefits-grid        { grid-template-columns: 1fr !important; }
  .benefit-card         { padding: 14px 12px; }
  .benefit-icon         { width: 42px; height: 42px; font-size: 1rem; flex-shrink: 0; }
  .benefit-card h3      { font-size: 0.88rem; }
  .benefit-card p       { font-size: 0.78rem; }

  /* Lab — full specificity to override base styles */
  .lab-content-grid     { grid-template-columns: 1fr !important; }
  .lab-table-wrap       { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .lab-table            { min-width: 460px; }
  .lab-hero             { padding: 18px 16px; }
  .lab-hero h3          { font-size: 1.3rem; }
  .lab-table th,
  .lab-table td         { font-size: 0.78rem; padding: 8px 10px; }
  .lab-quality-badges   { grid-template-columns: repeat(2,1fr) !important; }
  .lab-nabl             { font-size: 0.7rem; }

  /* Usage — full specificity overrides */
  #usage .usage-grid    { grid-template-columns: 1fr !important; }
  .table-scroll         { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .usage-table,
  .dosage-table         { min-width: 280px; }
  .application-methods  { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .app-method           { padding: 12px 6px; }
  .app-method .app-title { font-size: 0.65rem; }
  .app-method .app-desc  { font-size: 0.6rem; }
  .usage-table th,
  .usage-table td,
  .dosage-table th,
  .dosage-table td      { font-size: 0.8rem; padding: 8px 10px; }
  .howto-box            { font-size: 0.82rem; padding: 12px 14px; }

  /* Packing — scale bags down uniformly */
  .packing-grid         { gap: 10px; }
  .pack-500g .pack-visual { width: 54px;  min-height: 70px; }
  .pack-1kg  .pack-visual { width: 64px;  min-height: 83px; }
  .pack-5kg  .pack-visual { width: 76px;  min-height: 98px; }
  .pack-25kg .pack-visual { width: 92px;  min-height: 118px; }
  .pack-50kg .pack-visual { width: 108px; min-height: 138px; }
  .pack-weight-label    { font-size: 0.82rem; }

  /* Founder — full specificity overrides */
  #founder .founder-grid      { grid-template-columns: 1fr !important; }
  .founder-photo-wrap         { max-width: 260px; margin: 0 auto; }
  .founder-stats              { grid-template-columns: repeat(2,1fr) !important; gap: 10px; }
  .stat-card                  { padding: 11px 12px; }
  .stat-card .stat-number     { font-size: 0.95rem; }
  .founder-info h3            { font-size: 1.5rem; }
  .founder-bio                { font-size: 0.87rem; }
  .founder-farm-grid          { grid-template-columns: 1fr 1fr; }

  /* Contact — full specificity overrides */
  #contact .contact-grid { grid-template-columns: 1fr !important; }
  .contact-info h3      { font-size: 1.2rem; }
  .map-wrap iframe      { height: 240px; }
  .contact-item .ci-value { font-size: 0.84rem; word-break: break-word; }

  /* Footer */
  .footer-inner         { grid-template-columns: 1fr !important; gap: 24px; padding: 28px 16px 16px; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; gap: 6px; }
  .footer-motto         { font-size: 0.75rem; letter-spacing: 2px; }

  /* FAB */
  .whatsapp-fab         { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ── Mobile (≤480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
  /* Navbar */
  .nav-inner            { padding: 0 14px; height: 58px; }
  .nav-logo img         { height: 36px; }
  .nav-logo-text .brand { font-size: 0.75rem; }

  /* Hero */
  #hero                 { margin-top: 58px; }
  .hero-brand           { flex-direction: column; text-align: center; padding: 16px 14px 6px; gap: 8px; }
  .hero-brand-text      { text-align: center; }
  .hero-logo            { height: 52px; }
  .hero-ribbon          { font-size: 0.58rem; letter-spacing: 1.5px; padding: 6px 22px; }
  .hero-ribbon::before,
  .hero-ribbon::after   { border-width: 11px; }
  .hero-bottom-bar      { font-size: 0.62rem; letter-spacing: 1.5px; padding: 10px 12px; }
  .hero-icons-row       { padding: 10px 6px; }
  .hir-item             { padding: 6px 8px; min-width: 60px; }
  .hir-icon             { width: 34px; height: 34px; font-size: 0.8rem; }
  .hir-item span        { font-size: 0.56rem; }

  /* Layout */
  .main-wrapper         { padding: 20px 12px; }
  .section-gap          { margin-bottom: 20px; }
  .section-body         { padding: 14px 12px; }
  .sec-header           { padding: 9px 12px; }
  .sec-header h2        { font-size: 0.78rem; letter-spacing: 1px; }

  /* Plant */
  .product-bag-img      { width: 180px; }

  /* Lab */
  .lab-table            { min-width: 440px; }
  .lab-table th,
  .lab-table td         { font-size: 0.7rem; padding: 7px 8px; }
  .lab-quality-badges   { gap: 8px; }
  .lab-qb               { padding: 12px 8px; }
  .lab-qb .lqb-icon     { width: 44px; height: 44px; font-size: 1.1rem; }
  .lab-qb span          { font-size: 0.7rem; }
  .lab-hero             { padding: 16px 12px; }
  .lab-hero h3          { font-size: 1.15rem; }

  /* Usage */
  .application-methods  { grid-template-columns: 1fr !important; gap: 8px; }
  .app-method           { flex-direction: row; align-items: center; text-align: left;
                          padding: 11px 14px; gap: 12px; }
  .app-method i         { font-size: 1.2rem; flex-shrink: 0; }
  .app-method .app-title { font-size: 0.72rem; }
  .app-method .app-desc  { font-size: 0.67rem; }
  .usage-table th,
  .usage-table td,
  .dosage-table th,
  .dosage-table td      { font-size: 0.75rem; padding: 7px 9px; }
  .howto-box            { font-size: 0.8rem; padding: 12px; line-height: 1.65; }

  /* Packing — further scale down for small phones */
  .packing-grid         { gap: 8px; }
  .pack-500g .pack-visual { width: 46px;  min-height: 60px; }
  .pack-1kg  .pack-visual { width: 55px;  min-height: 72px; }
  .pack-5kg  .pack-visual { width: 65px;  min-height: 84px; }
  .pack-25kg .pack-visual { width: 78px;  min-height: 100px; }
  .pack-50kg .pack-visual { width: 92px;  min-height: 118px; }
  .pack-icon            { width: 24px !important; height: 24px !important; }
  .pack-icon i          { font-size: 0.65rem !important; }
  .pack-brand           { font-size: 0.28rem !important; }
  .pack-product         { font-size: 0.26rem !important; }
  .pack-weight-label    { font-size: 0.75rem; }

  /* Founder */
  .founder-photo-wrap         { max-width: 100%; }
  .founder-farm-grid          { grid-template-columns: 1fr 1fr; }
  #founder .founder-stats     { grid-template-columns: 1fr !important; }
  .stat-card                  { padding: 10px 12px; gap: 10px; }
  .stat-card .stat-number     { font-size: 0.9rem; }
  .stat-card .stat-label      { font-size: 0.68rem; }
  .founder-info h3            { font-size: 1.3rem; }
  .founder-bio                { font-size: 0.83rem; }

  /* Contact */
  .contact-item .ci-value { word-break: break-word; }
  .contact-btns         { flex-direction: column; }
  .contact-btns a       { justify-content: center; }
  .contact-item .ci-icon { width: 36px; height: 36px; font-size: 0.85rem; flex-shrink: 0; }
  .map-wrap iframe      { height: 200px; }

  /* Footer */
  .footer-inner         { padding: 22px 12px 12px; }
  .footer-brand h3      { font-size: 0.95rem; }
  .footer-links a       { font-size: 0.8rem; }
  .footer-contact-mini .fci { font-size: 0.78rem; }
  .footer-motto         { font-size: 0.65rem; letter-spacing: 1.5px; }

  /* FAB */
  .whatsapp-fab         { bottom: 12px; right: 12px; width: 46px; height: 46px; font-size: 1.3rem; }
}
