/* ==========================================================================
   TAG – TANSHAAR AYURVEDA GOODNESS | single-page website stylesheet
   Palette derived from the TAG logo (greens) + product-label gold accents
   ========================================================================== */

:root {
  --leaf-light: #8dc63f;   /* logo light green  */
  --leaf:       #4ba343;   /* logo mid green    */
  --leaf-dark:  #1e7b34;   /* logo wordmark green */
  --deep:       #0b4d2c;   /* flex-banner dark green */
  --deeper:     #07381f;
  --gold:       #c9a227;   /* label gold */
  --gold-dark:  #a8841c;
  --cream:      #f8f8f2;
  --cream-2:    #f1f4e8;
  --ink:        #26332a;
  --muted:      #5d6b60;
  --whatsapp:   #25d366;
  --shadow:     0 10px 30px rgba(11, 77, 44, .12);
  --radius:     16px;
}

html { scroll-padding-top: 92px; }
@media (max-width: 991.98px) { html { scroll-padding-top: 76px; } }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .oswald { font-family: "Oswald", "Poppins", sans-serif; }

a { text-decoration: none; }
img { max-width: 100%; }

::selection { background: var(--leaf-light); color: var(--deeper); }

/* ---------- generic helpers ---------- */
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, .12);
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: 999px;
  padding: .35rem 1rem;
  margin-bottom: .9rem;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head h2, .section-title-left {
  font-weight: 700;
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0;
}
.section-lead { color: var(--muted); margin: .9rem auto 0; }

.leaf-divider { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: .8rem; }
.section-head .leaf-divider { justify-content: center; }
.leaf-divider.left { justify-content: flex-start; }
.leaf-divider.left { justify-content: flex-start; }
.leaf-divider::before, .leaf-divider::after {
  content: ""; height: 2px; width: 64px; border-radius: 2px;
  background: linear-gradient(90deg, var(--leaf-light), transparent);
}
.leaf-divider::after { background: linear-gradient(270deg, var(--leaf-light), transparent); }
.leaf-divider.left::after { display: none; }
.leaf-divider .leaf-ic { width: 1.15rem; height: 1.15rem; color: var(--leaf); }

.text-gold { color: var(--gold); }
.text-leaf-dark { color: var(--leaf-dark); }

/* ---------- buttons ---------- */
.btn-leaf {
  background: linear-gradient(135deg, var(--leaf-light) 0%, var(--leaf-dark) 90%);
  color: #fff; border: none; font-weight: 600; letter-spacing: .02em;
  border-radius: 999px; padding: .7rem 1.6rem;
  box-shadow: 0 6px 18px rgba(30, 123, 52, .35);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-leaf:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 24px rgba(30, 123, 52, .45); }

.btn-outline-light-leaf {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 999px; padding: .65rem 1.6rem; font-weight: 600;
  transition: background .25s, color .25s, transform .25s;
}
.btn-outline-light-leaf:hover { background: #fff; color: var(--deep); transform: translateY(-2px); }

.btn-gold { background: linear-gradient(135deg, #e3c04c, var(--gold-dark)); color: #2c2205; border: none; font-weight: 700; border-radius: 999px; padding: .55rem 1.3rem; }
.btn-gold:hover { color: #2c2205; filter: brightness(1.05); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; border: none; font-weight: 600; border-radius: 999px; padding: .55rem 1.3rem; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; }

.btn-outline-leaf { border: 1.5px solid var(--leaf-dark); color: var(--leaf-dark); border-radius: 999px; font-weight: 600; }
.btn-outline-leaf:hover { background: var(--leaf-dark); color: #fff; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--deeper);
  color: #cfe6cf;
  font-size: .8rem;
  padding: .45rem 0;
}
.topbar a { color: #cfe6cf; transition: color .2s; }
.topbar a:hover { color: var(--leaf-light); }
.topbar-gold { color: #e8cd7a !important; font-weight: 600; }
.topbar i { color: var(--leaf-light); }

/* ---------- navbar ---------- */
.tag-nav {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(11, 77, 44, .10);
  transition: box-shadow .3s, padding .3s;
  z-index: 1040;
}
.tag-nav.scrolled { box-shadow: 0 4px 22px rgba(11, 77, 44, .18); }
.brand-logo { height: 58px; width: auto; }
@media (max-width: 991.98px) { .brand-logo { height: 48px; } }

.tag-nav .nav-link {
  font-weight: 500; color: var(--ink);
  margin: 0 .35rem; padding: .45rem .8rem;
  border-radius: 999px; position: relative;
  transition: color .2s, background .2s;
}
.tag-nav .nav-link:hover { color: var(--leaf-dark); background: rgba(141, 198, 63, .14); }
.tag-nav .nav-link.active { color: var(--leaf-dark); font-weight: 600; background: rgba(141, 198, 63, .18); }

.nav-social-link {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-2); color: var(--leaf-dark);
  border: 1px solid rgba(30, 123, 52, .25);
  transition: background .25s, color .25s, transform .25s;
}
.nav-social-link:hover { background: var(--leaf-dark); color: #fff; transform: translateY(-2px); }

.navbar-toggler { border-color: rgba(30, 123, 52, .35); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(141, 198, 63, .35); }
@media (max-width: 991.98px) {
  #navCollapse { background: #fff; border-radius: 0 0 14px 14px; padding: .8rem 1rem 1.2rem; box-shadow: 0 14px 24px rgba(11, 77, 44, .12); }
  .tag-nav .nav-link { margin: .1rem 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(141, 198, 63, .28), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(141, 198, 63, .18), transparent 60%),
    linear-gradient(150deg, var(--deep) 0%, var(--leaf-dark) 62%, #2f8a3d 100%);
  color: #fff;
  padding: 92px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px 0; height: 70px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}
.hero-leaves svg { position: absolute; color: rgba(255, 255, 255, .12); fill: currentColor; }
.leaf-1 { width: 7rem; height: 7rem; top: 8%; right: 6%; animation: floatLeaf 9s ease-in-out infinite; }
.leaf-2 { width: 4.5rem; height: 4.5rem; bottom: 14%; left: 4%; animation: floatLeaf 11s ease-in-out infinite reverse; }
.leaf-3 { width: 3rem; height: 3rem; top: 40%; left: 44%; animation: floatLeaf 7s ease-in-out infinite; }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-22px) rotate(10deg); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: #f4e3a1; background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: .4rem 1.1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.12;
  text-transform: uppercase; letter-spacing: .015em;
  margin-bottom: 1.1rem;
}
.hero-sub { color: rgba(255, 255, 255, .9); max-width: 34rem; font-size: 1.02rem; }
.hero-tagline { color: #f0d98a; font-style: italic; font-weight: 500; margin: .4rem 0 1.4rem; }
.hero-trust { margin-top: 1.6rem; font-size: .85rem; color: rgba(255,255,255,.92); }
.hero-trust i { color: var(--leaf-light); }
.hero-trust li { margin-right: 1.1rem; }

/* hero collage – bottles presented as clean white product cards */
.hero-collage { position: relative; height: 440px; }
.bottle {
  position: absolute; bottom: 0;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .38);
  object-fit: contain;
}
.bottle-main { left: 50%; transform: translateX(-50%); height: 420px; z-index: 3; animation: bob 6s ease-in-out infinite; }
.bottle-left { left: 6%; height: 330px; transform: rotate(-7deg); opacity: .95; z-index: 2; animation: bob 7s ease-in-out infinite .6s; }
.bottle-right { right: 6%; height: 330px; transform: rotate(7deg); opacity: .95; z-index: 2; animation: bob 7s ease-in-out infinite 1.1s; }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.float-badge {
  position: absolute; z-index: 4;
  background: #fff; color: var(--deep);
  font-size: .8rem; font-weight: 600;
  border-radius: 999px; padding: .5rem 1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}
.float-badge i { color: var(--leaf-dark); }
.badge-top { top: 4%; right: 2%; animation: bob 5s ease-in-out infinite; }
.badge-bottom { bottom: 6%; left: 0; animation: bob 6s ease-in-out infinite .8s; }
.badge-bottom i { color: #c0392b; }

@media (max-width: 991.98px) {
  .hero { padding: 64px 0 84px; }
  .hero-collage { height: 340px; max-width: 480px; margin: 0 auto; }
  .bottle-main { height: 320px; }
  .bottle-left, .bottle-right { height: 250px; }
}
@media (max-width: 575.98px) {
  .hero-collage { height: 280px; }
  .bottle-main { height: 265px; }
  .bottle-left, .bottle-right { height: 200px; }
  .bottle-left { left: 0; } .bottle-right { right: 0; }
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  color: rgba(255, 255, 255, .8); font-size: 1.4rem; z-index: 5;
  animation: bounceDown 2s infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes bounceDown { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- consultation strip ---------- */
.consult-strip { background: var(--deeper); color: #fff; padding: .9rem 0; }
.consult-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark));
  font-size: 1.3rem; flex-shrink: 0;
}
.consult-label { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: #bfe3ae; }
.consult-name { font-family: "Oswald", sans-serif; font-size: 1.15rem; letter-spacing: .03em; }
.consult-note { color: rgba(255, 255, 255, .75); font-size: .85rem; }

/* ---------- stats ---------- */
.stats-band { background: linear-gradient(135deg, var(--leaf-dark), var(--deep)); padding: 46px 0; color: #fff; }
.stat-num { font-family: "Oswald", sans-serif; font-size: 2.6rem; font-weight: 700; color: #f0d98a; line-height: 1; }
.stat-plus { font-family: "Oswald", sans-serif; font-size: 1.6rem; color: var(--leaf-light); font-weight: 600; }
.stat-label { display: block; margin-top: .35rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .85); }

/* ---------- care categories ---------- */
.care-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(30, 123, 52, .14);
  border-radius: var(--radius);
  padding: 2rem 1.2rem 1.6rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.care-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--leaf-light), var(--leaf-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.care-card:hover, .care-card:focus-visible { transform: translateY(-8px); box-shadow: 0 18px 38px rgba(11, 77, 44, .2); border-color: rgba(141, 198, 63, .5); }
.care-card:hover::before, .care-card:focus-visible::before { transform: scaleX(1); }
.care-icon {
  display: grid; place-items: center;
  width: 72px; height: 72px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #f2fadf, #dff0c4);
  border: 2px solid rgba(141, 198, 63, .45);
  color: var(--leaf-dark); font-size: 1.9rem;
  transition: transform .3s, background .3s, color .3s;
}
.care-card:hover .care-icon { transform: rotate(-8deg) scale(1.06); background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark)); color: #fff; }
.care-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--deep); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .4rem; }
.care-card p { font-size: .83rem; color: var(--muted); margin: 0; min-height: 2.4em; }
.care-more { display: inline-block; margin-top: .9rem; font-size: .8rem; font-weight: 600; color: var(--gold-dark); letter-spacing: .08em; text-transform: uppercase; }
.care-more i { transition: transform .25s; }
.care-card:hover .care-more i { transform: translateX(4px); }

.more-care { margin-top: 2.6rem; text-align: center; }
.more-care-title { font-weight: 600; color: var(--deep); margin-right: .6rem; }
.more-pill {
  border: 1.5px solid rgba(30, 123, 52, .35);
  background: #fff; color: var(--leaf-dark);
  border-radius: 999px; padding: .42rem 1.05rem;
  font-size: .82rem; font-weight: 600; margin: .25rem .15rem;
  transition: background .25s, color .25s, transform .25s;
}
.more-pill:hover { background: var(--leaf-dark); color: #fff; transform: translateY(-2px); }

/* ---------- about ---------- */
.leaflet-card {
  background: #fff; border-radius: 18px; padding: 12px;
  box-shadow: 0 22px 44px rgba(11, 77, 44, .18);
  border: 1px solid rgba(30, 123, 52, .12);
}
.about-media { aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.leaflet-card:hover .about-media img { transform: scale(1.045); }
.leaflet-card figcaption {
  text-align: center; font-size: .82rem; color: var(--muted);
  padding: .7rem .4rem .2rem;
}
.leaflet-card figcaption i { color: var(--gold-dark); }

.conditions-title { color: var(--deep); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.cond-chip {
  background: #fff; border: 1px solid rgba(141, 198, 63, .5);
  color: var(--leaf-dark); font-size: .8rem; font-weight: 500;
  border-radius: 999px; padding: .38rem .95rem;
  box-shadow: 0 3px 10px rgba(11, 77, 44, .06);
}
.promise-line {
  background: linear-gradient(90deg, rgba(141, 198, 63, .16), rgba(201, 162, 39, .16));
  border-left: 4px solid var(--gold);
  color: var(--deep); font-weight: 600; font-size: .92rem;
  border-radius: 10px; padding: .8rem 1.1rem;
}
.promise-line i { color: var(--gold-dark); }

/* ---------- ayurveda ---------- */
.dosha-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem 1.4rem;
  text-align: center; height: 100%;
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.dosha-card:hover { transform: translateY(-6px); }
.dosha-dot { display: inline-block; width: 18px; height: 18px; border-radius: 50%; margin-bottom: .6rem; box-shadow: 0 0 0 6px rgba(0,0,0,.04); }
.dosha-dot.vata  { background: #7fb3d5; }
.dosha-dot.pitta { background: #e67e22; }
.dosha-dot.kapha { background: var(--leaf); }
.dosha-card h4 { color: var(--deep); font-weight: 600; letter-spacing: .05em; }
.dosha-card p { color: var(--muted); font-size: .88rem; margin: 0; }

.why-card {
  background: linear-gradient(160deg, #fff, var(--cream-2));
  border-radius: var(--radius); padding: 1.7rem 1.4rem;
  height: 100%; border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-icon {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark));
  color: #fff; font-size: 1.5rem; margin-bottom: 1rem;
}
.why-card h5 { color: var(--deep); font-size: 1.02rem; font-weight: 600; letter-spacing: .03em; }
.why-card p { color: var(--muted); font-size: .87rem; margin: 0; }

/* ---------- products ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
  margin-bottom: 2.4rem;
}
.filter-btn {
  border: 1.5px solid rgba(30, 123, 52, .3);
  background: #fff; color: var(--leaf-dark);
  border-radius: 999px; padding: .45rem 1.15rem;
  font-size: .84rem; font-weight: 600;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
}
.filter-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(11, 77, 44, .14); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark));
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px rgba(30, 123, 52, .35);
}

.product-item { transition: opacity .3s; }
.product-item.filter-hide { display: none; }
.product-item.filter-anim .product-card { animation: popIn .45s ease both; }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

.product-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11, 77, 44, .2); }

.product-img {
  position: relative;
  background: linear-gradient(180deg, #fdfdfb, #f0f2ea);
  padding: 1.2rem 1rem .6rem;
  display: grid; place-items: center;
}
.product-img img { height: 210px; width: auto; object-fit: contain; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.form-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--deep); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: .28rem .8rem;
}
.form-badge-syrup { background: #6d3b12; }

.product-body { padding: .4rem 1.1rem .8rem; flex: 1; }
.product-body h3 {
  font-size: 1.15rem; font-weight: 700; letter-spacing: .04em;
  color: var(--deep); text-transform: uppercase; margin-bottom: .3rem;
}
.p-support { font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.p-enriched { font-size: .78rem; font-style: italic; color: var(--gold-dark); margin-bottom: .6rem; }
.p-herbs { display: flex; flex-wrap: wrap; gap: .3rem; }
.p-herbs span {
  background: var(--cream-2); color: var(--leaf-dark);
  font-size: .68rem; font-weight: 600;
  border-radius: 6px; padding: .22rem .55rem;
  border: 1px solid rgba(141, 198, 63, .3);
}

.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed rgba(30, 123, 52, .25);
  padding: .7rem 1.1rem;
}
.p-pack { font-size: .78rem; font-weight: 600; color: var(--muted); }
.btn-enquire {
  background: rgba(37, 211, 102, .12); color: #128c4b;
  border: 1.5px solid rgba(37, 211, 102, .5);
  font-size: .78rem; font-weight: 700;
  border-radius: 999px; padding: .35rem .95rem;
  transition: background .25s, color .25s;
}
.btn-enquire:hover { background: var(--whatsapp); color: #fff; }

.product-note {
  margin: 2.4rem auto 0; max-width: 760px; text-align: center;
  font-size: .8rem; color: var(--muted);
  background: rgba(201, 162, 39, .1);
  border: 1px dashed rgba(201, 162, 39, .5);
  border-radius: 12px; padding: .8rem 1.2rem;
}
.product-note i { color: var(--gold-dark); }

/* ---------- career ---------- */
.career-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem; text-align: center; height: 100%;
  transition: transform .3s;
}
.career-card:hover { transform: translateY(-6px); }
.career-icon {
  display: grid; place-items: center;
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 1.6rem;
}
.career-card h4 { color: var(--deep); font-weight: 600; font-size: 1.08rem; letter-spacing: .04em; }
.career-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ---------- contact ---------- */
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem; margin-bottom: 1rem;
}
.contact-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark));
  color: #fff; font-size: 1.15rem;
}
.contact-card h5 { font-size: .95rem; font-weight: 600; color: var(--deep); letter-spacing: .05em; margin-bottom: .25rem; }
.contact-card p { margin: 0; font-size: .87rem; color: var(--muted); line-height: 1.55; }
.contact-card a { color: var(--leaf-dark); font-weight: 500; }
.contact-card a:hover { color: var(--gold-dark); }

.consult-mini {
  background: var(--deep); color: #fff;
  border-radius: 14px; padding: .95rem 1.2rem;
  font-size: .88rem;
}
.consult-mini i { color: var(--leaf-light); font-size: 1.1rem; }

.contact-form {
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.form-title { color: var(--deep); font-weight: 600; letter-spacing: .04em; margin-bottom: 1.3rem; }
.contact-form .form-label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.contact-form .form-control, .contact-form .form-select {
  border-color: rgba(30, 123, 52, .25); border-radius: 10px;
  font-size: .9rem; padding: .62rem .9rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--leaf); box-shadow: 0 0 0 .2rem rgba(141, 198, 63, .22);
}

.map-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(30, 123, 52, .15);
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--deeper); color: #cfe0cf; }
.footer .container { padding-top: 56px; padding-bottom: 40px; }
.footer-logo-wrap {
  display: inline-block; background: #fff;
  border-radius: 12px; padding: 8px 16px; margin-bottom: 1rem;
}
.footer-logo-wrap img { height: 52px; width: auto; }
.footer-blurb { font-size: .86rem; line-height: 1.7; color: #b9cdb9; }
.footer-social a {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #d9ecd9;
  transition: background .25s, color .25s, transform .25s;
}
.footer-social a:hover { background: var(--leaf-light); color: var(--deeper); transform: translateY(-3px); }
.footer h6 {
  color: #fff; letter-spacing: .14em; text-transform: uppercase;
  font-size: .82rem; margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid rgba(141, 198, 63, .4);
  display: inline-block;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; font-size: .86rem; }
.footer-links li, .footer-contact li { margin-bottom: .5rem; }
.footer-links a, .footer-contact a { color: #b9cdb9; transition: color .2s, padding-left .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--leaf-light); padding-left: 4px; }
.footer-contact i { color: var(--leaf-light); margin-right: .45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: .9rem 0; font-size: .8rem; color: #9db89d;
}
.footer-tag { color: #cdbd7e; }

/* ---------- floating buttons ---------- */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 1050;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
  animation: pulseWa 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }
@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

#backToTop {
  position: fixed; right: 26px; bottom: 92px; z-index: 1050;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: var(--deep); color: #fff; font-size: 1.1rem;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: 0 8px 20px rgba(11, 77, 44, .4);
}
#backToTop.show { opacity: 1; visibility: visible; transform: none; }
#backToTop:hover { background: var(--leaf-dark); }

/* ---------- modals ---------- */
.cat-modal .modal-content { border-radius: 18px; border: none; overflow: hidden; }
.cat-modal .modal-header {
  background: linear-gradient(135deg, var(--leaf-dark), var(--deep));
  color: #fff; border: none; padding: 1.1rem 1.4rem; gap: .9rem;
}
.modal-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .16); font-size: 1.4rem; flex-shrink: 0;
}
.cat-modal .modal-title { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.modal-sub { font-size: .78rem; color: #cfe6cf; }
.cat-modal .btn-close { filter: invert(1); opacity: .8; }
.cat-modal .modal-body h6 {
  color: var(--deep); text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; margin: 1.2rem 0 .6rem;
}
.modal-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.modal-chips span {
  background: var(--cream-2); border: 1px solid rgba(141, 198, 63, .4);
  color: var(--leaf-dark); font-size: .76rem; font-weight: 600;
  border-radius: 999px; padding: .3rem .8rem;
}
.modal-product {
  display: flex; gap: .9rem; align-items: center;
  background: var(--cream); border-radius: 12px;
  padding: .7rem .9rem; margin-bottom: .6rem;
  border: 1px solid rgba(30, 123, 52, .1);
}
.modal-product img { width: 52px; height: 78px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.modal-product strong { display: block; color: var(--deep); font-size: .92rem; }
.modal-product span { font-size: .8rem; color: var(--muted); }
.cat-modal .modal-footer { border-top: 1px solid rgba(30, 123, 52, .12); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .leaf, .bottle, .float-badge, .whatsapp-float, .hero-scroll { animation: none !important; }
}

/* toast brand tint */
#formToast { background: var(--leaf-dark) !important; }

/* ==========================================================================
   VARIATION 2 – lifestyle image banner hero
   (same text content as V1, hero uses a full-bleed lifestyle photograph)
   ========================================================================== */
.hero-v2 {
  background-image:
    linear-gradient(180deg, rgba(248, 247, 238, .88) 0%, rgba(248, 247, 238, .72) 42%, rgba(248, 247, 238, .93) 100%),
    url("../assets/img/hero-banner.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center 58%;
  background-size: cover, cover;
  background-attachment: scroll, scroll;
  padding: 150px 0 96px;
  position: relative;
  overflow: hidden;
}
/* light-theme hero text (over banner + light overlay) */
.hero-v2 .hero-eyebrow { color: var(--deep); background: rgba(255, 255, 255, .55); border-color: rgba(30, 123, 52, .30); }
.hero-v2 .hero-title { color: var(--deep); }
.hero-v2 .hero-tagline { color: #7a5a10; font-weight: 600; }
.hero-v2 .hero-trust { color: var(--deep); }
.hero-v2 .hero-trust i { color: var(--leaf-dark); }
.hero-v2 .hero-trust li { background: rgba(255, 255, 255, .72); border: 1px solid rgba(30, 123, 52, .20); backdrop-filter: blur(4px); }
.hero-v2 .slok-dev { color: var(--deeper); }
.hero-v2 .slok-src { color: var(--leaf-dark); }
.hero-v2 .slok-meaning { color: #4c5a44; }
.hero-v2 .btn-outline-light-leaf { color: var(--deep); border-color: var(--leaf-dark); background: rgba(255, 255, 255, .55); }
.hero-v2 .btn-outline-light-leaf:hover { background: var(--leaf-dark); color: #fff; }
.hero-v2-content { max-width: 52rem; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.hero-v2 .hero-trust li {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(30, 123, 52, .20);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: .4rem .95rem;
  margin: 0 .28rem .45rem;
  display: inline-block;
}
.hero-v2 .hero-scroll { bottom: 26px; }

@media (max-width: 991.98px) {
  .hero-v2 { padding: 118px 0 72px; background-position: center 62%; }
}
@media (max-width: 575.98px) {
  .hero-v2 { padding: 100px 0 96px; }
  .hero-v2 .hero-title { font-size: 2.05rem; }
}

/* ==========================================================================
   CLIENT UPDATE (final V2) – leaflet banner + shlok, partner section,
   footer career strip, enriched modal product rows
   ========================================================================== */

/* ---------- hero shlok (from leaflet top page) ---------- */
.hero-slok {
  margin: 0 auto 1.4rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid rgba(30, 123, 52, .16);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(4px);
  max-width: 46rem;
  text-align: center;
}
.slok-dev {
  margin: 0;
  color: #f7e6a8;
  font-size: clamp(.98rem, 1.6vw, 1.14rem);
  font-weight: 500;
  line-height: 1.95;
  text-shadow: 0 1px 8px rgba(7, 56, 31, .45);
}
.slok-meaning {
  margin: .3rem 0 0;
  color: #d9ecc9;
  font-size: .86rem;
  font-style: italic;
}

/* ---------- AYUSH quote in about ---------- */
.ayush-line {
  margin: 0;
  font-size: .85rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: .06em;
}

/* ---------- partner section ---------- */
.partner-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(30, 123, 52, .12);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
  transition: transform .3s, box-shadow .3s;
}
.partner-item:hover { transform: translateX(6px); box-shadow: 0 14px 30px rgba(11, 77, 44, .18); }
.partner-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark));
  color: #fff; font-size: 1.3rem;
}
.partner-item h5 { font-size: 1rem; font-weight: 600; color: var(--deep); letter-spacing: .03em; margin-bottom: .3rem; }
.partner-item p { font-size: .86rem; color: var(--muted); margin: 0; }

.partner-cta {
  background:
    radial-gradient(420px 220px at 90% -10%, rgba(141, 198, 63, .25), transparent 60%),
    linear-gradient(150deg, var(--deep), var(--deeper));
  color: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 22px 44px rgba(7, 56, 31, .35);
  display: flex; flex-direction: column; justify-content: center;
}
.partner-cta-icon {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
  animation: consultPulse 2.6s infinite;
}
.partner-cta h4 { font-weight: 600; letter-spacing: .03em; margin-bottom: .5rem; }
.partner-cta p { color: rgba(255, 255, 255, .82); font-size: .9rem; margin-bottom: 1.3rem; }
.partner-cta .btn-whatsapp { text-align: left; padding: .7rem 1.2rem; font-size: .9rem; }
.partner-cta .btn-outline-light-leaf { padding: .62rem 1.2rem; font-size: .88rem; }

/* ---------- modal product rows (enriched) ---------- */
.modal-product { align-items: flex-start; }
.modal-product img { width: 64px; height: 90px; object-fit: contain; object-position: center; border-radius: 8px; border: 1px solid rgba(30, 123, 52, .18); background: #fff; }
.modal-product > div { display: flex; flex-direction: column; }
.mp-form {
  display: inline-block; margin-left: .4rem;
  background: var(--deep); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: .18rem .6rem;
  vertical-align: middle;
}
.mp-benefit { font-size: .84rem; font-weight: 600; color: var(--ink); margin: .15rem 0 .25rem; }
.mp-meta { font-size: .76rem; color: var(--muted); line-height: 1.6; }
.mp-meta b { color: var(--leaf-dark); }

/* ---------- footer career strip ---------- */
.footer-career {
  background: linear-gradient(120deg, rgba(141, 198, 63, .14), rgba(201, 162, 39, .14));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 1.4rem 0;
}
.footer-career h6 {
  color: #fff; font-family: "Oswald", sans-serif;
  font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  border: none; padding: 0; margin: 0;
}
.footer-career p { font-size: .84rem; color: #b9cdb9; }
.fc-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 1.35rem;
}

/* ---------- responsive alignment fixes ---------- */
@media (max-width: 767.98px) {
  .hero-slok { padding: .85rem 1rem; margin-bottom: 1.1rem; }
  .slok-dev { font-size: .92rem; line-height: 1.85; }
  .partner-cta { padding: 1.7rem 1.3rem; }
  .footer-career .container { justify-content: flex-start !important; }
  .modal-product img { width: 52px; height: 74px; }
}

/* pulsing ring (partner CTA icon) */
@keyframes consultPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- full-width banner strip (leaflet page-1 image) ---------- */
.slok-src { display: inline-block; margin-top: .35rem; color: var(--leaf-light); font-weight: 600; letter-spacing: .08em; }
