/* ==========================================================================
   COLD VALLEY BEVERAGE COMPANY — STYLESHEET
   Palette: White base, Lime Green, Fresh Green, Lemon Yellow, Deep Ink Green
   ========================================================================== */

:root {
  --white: #ffffff;
  --off-white: #f7faf3;
  --lime: #8bc53f;
  --lime-dark: #6ea52c;
  --fresh-green: #2f8a3e;
  --deep-green: #123317;
  --lemon: #f4d03f;
  --lemon-dark: #e0b820;
  --ink: #16281a;
  --text-soft: #4c5c4e;
  --border: #e4ece0;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(18, 51, 23, 0.08);
  --shadow-strong: 0 20px 50px rgba(18, 51, 23, 0.16);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--deep-green); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 3px solid var(--fresh-green); outline-offset: 3px; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep-green);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-drop {
  width: 40px; height: 55px;
  background: linear-gradient(180deg, var(--lime), var(--lemon));
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  animation: dropPulse 1s ease-in-out infinite;
}
@keyframes dropPulse { 0%,100% { transform: rotate(45deg) scale(1); } 50% { transform: rotate(45deg) scale(1.25); } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.2px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lime), var(--fresh-green));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(47, 138, 62, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(47, 138, 62, 0.45); }
.btn-outline {
  background: transparent; color: var(--deep-green);
  border: 2px solid var(--deep-green);
}
.btn-outline:hover { background: var(--deep-green); color: var(--white); transform: translateY(-3px); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}
.navbar.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 20px rgba(18,51,23,0.08); padding: 10px 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--lime), var(--fresh-green));
  color: var(--white); font-family: var(--font-display); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.logo-text { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--deep-green); line-height: 1.1; }
.logo-text small { font-family: var(--font-body); font-weight: 500; font-size: 0.65rem; color: var(--text-soft); letter-spacing: 0.5px; }
.logo-img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-weight: 500; font-size: 0.92rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--fresh-green); transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--lime), var(--fresh-green));
  color: var(--white); padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,138,62,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 32px; z-index: 1001; }
.hamburger span { display: block; height: 3px; width: 100%; background: var(--deep-green); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 110px; overflow: hidden;
  background: radial-gradient(circle at 20% 20%, #f3fbe9 0%, var(--white) 55%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; }
.blob-1 { width: 420px; height: 420px; background: var(--lime); top: -100px; right: -80px; animation: floatBlob 9s ease-in-out infinite; }
.blob-2 { width: 320px; height: 320px; background: var(--lemon); bottom: -60px; left: -80px; animation: floatBlob 11s ease-in-out infinite reverse; }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.08); } }

.hero-drops { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.drop {
  position: absolute; width: 8px; height: 12px; border-radius: 50% 50% 50% 0;
  background: var(--lime); opacity: 0.5; transform: rotate(45deg);
  animation: dropFall linear infinite;
}
@keyframes dropFall { 0% { transform: translateY(-40px) rotate(45deg); opacity: 0; } 10% { opacity: 0.6; } 100% { transform: translateY(110vh) rotate(45deg); opacity: 0; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fresh-green);
  background: rgba(139, 197, 63, 0.14); padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero-text h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: 22px; }
.text-gradient {
  background: linear-gradient(135deg, var(--fresh-green), var(--lime), var(--lemon-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-text p { font-size: 1.05rem; color: var(--text-soft); max-width: 520px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 50px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number, .stat-suffix { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--deep-green); display: inline; }
.stat p { font-size: 0.8rem; color: var(--text-soft); margin-top: 2px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 460px; }
.bottle-stage { position: relative; width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 18px; z-index: 2; }
.bottle {
  width: 100px; border-radius: 40px 40px 16px 16px; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; text-align: center;
  display: flex; align-items: center; justify-content: center; padding: 0;
  box-shadow: none;
  animation: bottleBob 4s ease-in-out infinite;
  background: transparent;
}
.bottle::before {
  display: none;
}
.bottle-image {
  width: 100%; height: auto; display: block;
}
.bottle-green, .bottle-yellow, .bottle-lime {
  height: auto; background: transparent;
  animation-delay: 0s;
}
.bottle-green { animation-delay: 0s; }
.bottle-yellow { animation-delay: 0.6s; }
.bottle-lime { animation-delay: 1.2s; }
@keyframes bottleBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.splash-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 2px dashed rgba(47,138,62,0.25); z-index: 1;
  animation: spinSlow 24s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 90px; }
.hero-wave path { fill: var(--off-white); }

/* ============ SCROLL ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s ease forwards; }
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.45s; }
.fade-up.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.fade-in-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-scroll.in-view { opacity: 1; transform: translateY(0); }
.fade-in-scroll.delay-1.in-view, .fade-in-scroll.delay-1 { transition-delay: 0.1s; }
.fade-in-scroll.delay-2.in-view, .fade-in-scroll.delay-2 { transition-delay: 0.2s; }
.fade-in-scroll.delay-3.in-view, .fade-in-scroll.delay-3 { transition-delay: 0.3s; }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 650px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.02rem; }
.section-head.light .eyebrow { background: rgba(255,255,255,0.15); color: var(--lemon); }
.section-head.light h2 { color: var(--white); }

/* ============ ABOUT ============ */
.about { padding: 110px 0 90px; background: var(--off-white); }
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 20px; }
.about-text p { color: var(--text-soft); margin-bottom: 16px; }
.about-points { margin-top: 24px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--deep-green); }
.about-points span { width: 26px; height: 26px; border-radius: 50%; background: var(--lime); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }

.about-visual { position: relative; height: 380px; }
.about-glow { position: absolute; inset: 0; margin: auto; width: 260px; height: 260px; background: var(--lime); filter: blur(80px); opacity: 0.35; border-radius: 50%; }
.about-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 20px 24px;
  box-shadow: var(--shadow-soft); font-weight: 600; font-family: var(--font-display); color: var(--deep-green);
  animation: cardFloat 5s ease-in-out infinite;
}
.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 45%; right: 0; animation-delay: 1s; }
.card-3 { bottom: 5%; left: 15%; animation-delay: 2s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============ PRODUCTS ============ */
.products { padding: 110px 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.product-media {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 16px 14px 10px;
}
.product-media::after { display: none; }
.product-green, .product-yellow, .product-lime { background: transparent; }
.product-img {
  width: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 14px;
}
.product-bottle {
  width: auto;
  min-width: 110px;
  height: auto;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--deep-green);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(18,51,23,0.08);
  transition: transform var(--transition);
}
.product-card:hover .product-bottle { transform: translateY(-10px) rotate(-3deg); }
.product-body { padding: 26px 26px 30px; }
.product-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-body p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 16px; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--fresh-green); background: rgba(139,197,63,0.14); padding: 5px 12px; border-radius: 999px; }

/* ============ WHY US ============ */
.why-us { padding: 110px 0; background: linear-gradient(160deg, var(--deep-green), #0c2110); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px 24px; text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ============ QUALITY ============ */
.quality { padding: 110px 0; background: var(--off-white); }
.quality-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.quality-visual { display: flex; align-items: center; justify-content: center; }
.quality-badge {
  width: 230px; height: 230px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--lime), var(--lemon), var(--fresh-green), var(--lime));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  box-shadow: var(--shadow-strong); animation: spinSlow 30s linear infinite;
}
.quality-badge span:first-child { font-size: 1.6rem; }
.quality-text h2 { margin-bottom: 18px; }
.quality-text p { color: var(--text-soft); margin-bottom: 28px; }
.quality-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.q-step { display: flex; flex-direction: column; gap: 6px; padding: 18px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.q-step strong { color: var(--lime-dark); font-family: var(--font-display); font-size: 1.3rem; }
.q-step span { font-weight: 600; color: var(--deep-green); font-size: 0.92rem; }

/* ============ DISTRIBUTOR ============ */
.distributor { padding: 110px 0; }
.distributor-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.distributor h2 { margin-bottom: 18px; }
.distributor p { color: var(--text-soft); margin-bottom: 24px; }
.distributor-list { display: grid; gap: 12px; margin-bottom: 32px; }
.distributor-list li { position: relative; padding-left: 26px; font-weight: 500; color: var(--ink); }
.distributor-list li::before { content: '✓'; position: absolute; left: 0; color: var(--fresh-green); font-weight: 800; }
.distributor-visual { display: flex; align-items: center; justify-content: center; }
.map-graphic {
  width: 100%; height: 320px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--lime), var(--fresh-green));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-size: 3.5rem; color: var(--white); box-shadow: var(--shadow-strong);
}
.map-graphic span { font-size: 1rem; font-family: var(--font-display); font-weight: 700; }

/* ============ ORDER FORM ============ */
.order { padding: 110px 0; background: var(--off-white); }
.order-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto; position: relative;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--deep-green); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--fresh-green); box-shadow: 0 0 0 4px rgba(47,138,62,0.12); outline: none;
}
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #d9534f; }
.error-msg { font-size: 0.78rem; color: #d9534f; min-height: 16px; }
.btn-submit { width: 100%; margin-top: 28px; }
.form-success {
  display: none; margin-top: 22px; padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(139,197,63,0.15); color: var(--fresh-green); font-weight: 600; text-align: center;
}
.form-success.show { display: block; animation: fadeUp 0.6s ease forwards; }

/* ============ INDIAMART ============ */
.indiamart { padding: 70px 0; }
.indiamart-inner {
  background: linear-gradient(120deg, var(--lemon), var(--lime));
  border-radius: var(--radius-lg); padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.indiamart-text h2 { margin: 10px 0 12px; }
.indiamart-text p { color: var(--deep-green); max-width: 480px; margin-bottom: 20px; }
.indiamart-inner .eyebrow { background: rgba(255,255,255,0.4); color: var(--deep-green); }
.indiamart-badge {
  width: 120px; height: 120px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--fresh-green);
  box-shadow: var(--shadow-strong); flex-shrink: 0;
}
.indiamart-logo {
  width: 90px; height: auto;
  flex-shrink: 0;
  filter: drop-shadow(var(--shadow-strong));
}

/* ============ FAQS ============ */
.faqs { padding: 110px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; color: var(--deep-green);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question span { font-size: 1.3rem; color: var(--fresh-green); transition: transform var(--transition); }
.faq-item.active .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-soft); font-size: 0.92rem; }

/* ============ CONTACT ============ */
.contact { padding: 110px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--text-soft); margin-bottom: 28px; }
.contact-details { display: grid; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--deep-green); }
.contact-item span { width: 40px; height: 40px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center; }
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem;
  color: var(--fresh-green); box-shadow: var(--shadow-soft); transition: transform var(--transition), background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--fresh-green); color: var(--white); transform: translateY(-4px); }
.social-icon svg { width: 18px; height: 18px; }
.map-placeholder {
  height: 320px; border-radius: var(--radius-lg); background: repeating-linear-gradient(135deg, #eef5e6, #eef5e6 10px, #e6f0dd 10px, #e6f0dd 20px);
  display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 700; color: var(--deep-green);
  border: 2px dashed var(--lime); padding: 20px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ============ FOOTER ============ */
.footer { position: relative; overflow: hidden; background: transparent; color: #000; padding: 70px 0 0; }
.footer-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 1; z-index: 0; pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer .logo-text { color: #000; }
.footer .logo-text small { color: rgba(0,0,0,0.6); }
.footer-col p { margin-top: 14px; font-size: 0.9rem; color: #000; }
.footer-col h4 { color: #000; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.9rem; transition: color var(--transition); color: #000; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.06); text-align: center; padding: 22px 0; font-size: 0.82rem; color: #000; }

/* ============ FLOATING BUTTONS ============ */
.floating-btn {
  position: fixed; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0;
  box-shadow: var(--shadow-strong); z-index: 900; transition: transform var(--transition);
}
.whatsapp-btn {
  bottom: 96px;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 30% 30%, #5de877 0%, #25d366 42%, #128c7e 100%);
  animation: pulseBtn 2.2s ease-in-out infinite;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}
.call-btn { bottom: 26px; background: var(--fresh-green); }
.floating-btn:hover { transform: scale(1.1); }
.floating-btn svg { width: 28px; height: 28px; color: #ffffff; display: block; }
@keyframes pulseBtn { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

.back-to-top {
  position: fixed; left: 26px; bottom: 26px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--deep-green); color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 900; box-shadow: var(--shadow-strong);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--fresh-green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner, .about-inner, .quality-inner, .distributor-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; order: -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 80vw);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 24px; box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition);
  }
  .nav-links.active { right: 0; }
  .nav-cta { margin-top: 12px; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 24px; }
  .product-grid, .why-grid, .quality-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .indiamart-inner { padding: 36px 28px; text-align: center; justify-content: center; }
  .bottle-stage { gap: 10px; }
  .bottle { width: 80px; }
  .bottle-green, .bottle-lime { height: 220px; }
  .bottle-yellow { height: 250px; }
}

@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============ PLACEHOLDER PAGES ============ */
.policy-page { padding: 160px 0 100px; max-width: 820px; margin: 0 auto; }
.policy-page h1 { margin-bottom: 24px; }
.policy-page h2 { font-size: 1.3rem; margin: 28px 0 12px; }
.policy-page p, .policy-page li { color: var(--text-soft); margin-bottom: 10px; }
.policy-page ul { padding-left: 20px; list-style: disc; }