/* =========================================================
   HaldiMart — Global Stylesheet
   Pan India Organic Turmeric Marketplace
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --ivory:       #FAFAF7;
  --off-white:   #F4F1EA;
  --stone:       #E8E2D6;
  --amber:       #C8860A;
  --amber-lt:    #DFA030;
  --amber-pale:  #F5E0B0;
  --forest:      #1E3A2F;
  --forest-mid:  #2A5040;
  --forest-lt:   #3D6B58;
  --bark:        #4A3728;
  --bark-lt:     #7A6050;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-soft:   #7A7A7A;
  --divider:     rgba(74,55,40,0.12);
  --card-bg:     #FFFFFF;
  --section-alt: #F7F4EE;
  --green:       #2D6A4F;
  --green-lt:    #52B788;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; line-height: 1.2; }
.label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.label::before { content: ''; width: 16px; height: 2px; background: var(--amber); display: inline-block; }
.label.light { color: var(--amber-lt); }
.label.light::before { background: var(--amber-lt); }
.label.center { justify-content: center; }
.h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--text-dark); margin-bottom: 12px;
}
.h2 em { font-style: italic; color: var(--forest-mid); }
.h2.light { color: #fff; }
.h2.light em { color: var(--amber-lt); }
.sub { font-size: 0.95rem; color: var(--text-soft); line-height: 1.75; max-width: 560px; }
.sub.light { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber); color: #fff;
  font-weight: 700; font-size: 0.88rem;
  padding: 14px 30px; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s; letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(200,134,10,0.25);
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200,134,10,0.35); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.8);
  font-weight: 600; font-size: 0.88rem;
  padding: 14px 30px; border-radius: 6px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.25);
  transition: all .25s; cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--amber);
  font-weight: 700; font-size: 0.85rem;
  padding: 11px 24px; border-radius: 6px;
  text-decoration: none; border: 1.5px solid var(--amber);
  transition: all .25s; cursor: pointer;
}
.btn-outline:hover { background: var(--amber); color: #fff; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(30,58,47,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,134,10,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: linear-gradient(145deg, var(--amber), var(--amber-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.nav-logo-text { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.nav-logo-text em { color: var(--amber-lt); font-style: normal; }
.nav-logo-sub { font-size: 0.56rem; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; display: block; line-height: 1; margin-top: 1px; }
.nav-links { list-style: none; display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.6);
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.3px;
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--amber); border-radius: 2px;
}
.nav-cta {
  background: var(--amber) !important;
  color: #fff !important; padding: 9px 22px;
  border-radius: 6px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--amber-lt) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTIONS ── */
section { padding: 88px 5%; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .label { justify-content: center; }
.section-head.center .sub { margin-inline: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--forest);
  padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,134,10,0.08), transparent 70%);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--amber-lt); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,10,0.12); border: 1px solid rgba(200,134,10,0.25);
  padding: 6px 14px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--amber-lt); margin-bottom: 20px;
}
.page-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.ph-stat strong { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; color: var(--amber-lt); display: block; line-height: 1; margin-bottom: 4px; }
.ph-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--section-alt);
  padding: 12px 5%;
  border-bottom: 1px solid var(--stone);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-soft);
}
.breadcrumb a { color: var(--forest-lt); text-decoration: none; font-weight: 600; transition: color .2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--stone); }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--stone);
  border-radius: 10px;
  transition: all .3s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(74,55,40,0.1);
  border-color: rgba(200,134,10,0.25);
  transform: translateY(-3px);
}

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 3px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.tag-amber { background: var(--amber-pale); color: var(--bark); }
.tag-green { background: rgba(45,106,79,0.1); color: var(--green); }
.tag-forest { background: var(--forest); color: var(--amber-lt); }

/* ── CURCUMIN BAR ── */
.curc-bar { display: flex; align-items: center; gap: 8px; }
.curc-track { flex: 1; height: 6px; background: var(--stone); border-radius: 50px; overflow: hidden; }
.curc-fill { height: 100%; background: linear-gradient(90deg, var(--forest-lt), var(--amber)); border-radius: 50px; transition: width 1.2s ease; }
.curc-num { font-size: 0.75rem; font-weight: 800; color: var(--amber); white-space: nowrap; min-width: 36px; }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--forest);
  padding: 22px 5%;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
}
.is-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.is-item:last-child { border-right: none; }
.is-item strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--amber-lt); line-height: 1; }
.is-item span { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.is-icon { font-size: 1.2rem; }

/* ── TICKER ── */
.ticker-bar {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ticker-inner {
  display: flex; animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.tick-item span { color: var(--amber-lt); font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
  background: #111A15;
  padding: 56px 5% 28px;
  color: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.75; margin: 14px 0 20px; color: rgba(255,255,255,0.4); }
.footer-certs { display: flex; gap: 6px; flex-wrap: wrap; }
.fcert {
  border: 1px solid rgba(200,134,10,0.2); color: rgba(200,134,10,0.65);
  font-size: 0.62rem; font-weight: 800;
  padding: 3px 8px; border-radius: 3px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.footer-logo-text { font-family: 'Libre Baskerville', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-logo-text em { color: var(--amber-lt); font-style: normal; }
.footer-logo-sub { font-size: 0.56rem; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }
.site-footer h5 { font-family: 'Libre Baskerville', serif; font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 700; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.site-footer ul li a { text-decoration: none; color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color .2s; font-weight: 500; }
.site-footer ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; flex-wrap: wrap; gap: 10px;
}
.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: background .2s;
  text-decoration: none;
}
.soc-btn:hover { background: rgba(200,134,10,0.2); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(30,58,47,0.99); flex-direction: column; padding: 24px 5%; gap: 0; border-bottom: 1px solid rgba(200,134,10,0.15); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .intro-strip { gap: 0; }
  .is-item { padding: 12px 18px; }
}
@media (max-width: 560px) {
  section { padding: 60px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
}
