/* ═══════════════════════════════════════════════════════════════
   GARDEN PLEASURE — Global Design System
   Matching gardenpleasure.in exactly
   Fonts: Cormorant Garamond + Inter (Google Fonts)
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --forest:     #1a4a2e;
  --deep:       #0f2e1b;
  --mid:        #2a6642;
  --light-green:#e8f2eb;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --gray-100:   #f4f4f2;
  --gray-200:   #e8e8e4;
  --gray-400:   #9a9a94;
  --text:       #1a1a16;
  --text-muted: #6a6a62;
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body { font-family:'Inter',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; cursor:none; }
img { display:block; max-width:100%; background:var(--light-green); color:transparent; font-size:0; }
a { text-decoration:none; }
ul { list-style:none; }

/* ════════════════════════════════════════
   CURSOR
════════════════════════════════════════ */
#cursor-leaf { position:fixed; width:22px; height:22px; pointer-events:none; z-index:9999; transform:translate(-50%,-50%) rotate(-45deg); }
#cursor-leaf svg { width:22px; height:22px; transition:transform 0.3s; }
#cursor-dot { position:fixed; width:5px; height:5px; background:var(--gold); border-radius:50%; pointer-events:none; z-index:10000; transform:translate(-50%,-50%); transition:transform 0.06s; }
body:has(a:hover) #cursor-dot { transform:translate(-50%,-50%) scale(2.8); }
body:has(.btn-primary:hover) #cursor-leaf svg { transform:scale(1.6); }

/* ── GLITTER ── */
#glitter-canvas { position:fixed; inset:0; pointer-events:none; z-index:50; }

/* ── SCROLL PROGRESS ── */
#scroll-progress { position:fixed; top:0; left:0; height:2px; width:0%; background:var(--gold); z-index:9999; transition:width 0.08s; }

/* ── CLICK RIPPLE ── */
.click-ripple { position:fixed; border:1px solid rgba(201,168,76,0.45); border-radius:50%; pointer-events:none; z-index:9996; transform:translate(-50%,-50%); animation:rippleOut 0.8s ease-out forwards; }
@keyframes rippleOut { 0%{width:0;height:0;opacity:0.8;} 100%{width:140px;height:140px;opacity:0;} }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:300;
  padding:24px 64px;
  display:flex; align-items:center; justify-content:space-between;
  transition:background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(20px);
  padding:14px 64px;
  box-shadow:0 1px 0 var(--gray-200);
}
.nav-brand {
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem; font-weight:600;
  color:var(--white); letter-spacing:0.03em;
  text-decoration:none; transition:color 0.4s;
}
nav.scrolled .nav-brand { color:var(--deep); }
.nav-brand span { color:var(--gold); }
.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a {
  color:rgba(255,255,255,0.8); text-decoration:none;
  font-size:0.73rem; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase;
  transition:color 0.3s;
}
nav.scrolled .nav-links a { color:var(--text-muted); }
.nav-links a:hover { color:var(--gold-light); }
nav.scrolled .nav-links a:hover { color:var(--forest); }
.nav-cta {
  background:var(--gold)!important;
  color:var(--deep)!important;
  padding:9px 22px;
  font-weight:600!important;
  border-radius:2px;
  transition:background 0.3s, transform 0.2s!important;
}
.nav-cta:hover { background:var(--gold-light)!important; transform:translateY(-1px)!important; }

/* mobile toggle */
.nav-toggle {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; cursor:pointer; padding:8px; z-index:320;
}
.nav-toggle span {
  display:block; width:24px; height:2px;
  background:#fff; border-radius:2px;
  transition:transform .3s, opacity .3s, background .3s;
}
nav.scrolled .nav-toggle span { background:var(--deep); }
nav.nav-open .nav-toggle span { background:var(--deep); }
nav.nav-open .nav-toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity:0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary {
  background:var(--gold); color:var(--deep);
  padding:13px 30px;
  font-family:'Inter',sans-serif; font-size:0.78rem;
  font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  border:none; cursor:none; text-decoration:none;
  display:inline-block; border-radius:2px;
  position:relative; overflow:hidden; transition:background 0.3s;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,0.15);
  transform:translateX(-100%) skewX(-20deg);
  transition:transform 0.5s;
}
.btn-primary:hover { background:var(--gold-light); }
.btn-primary:hover::before { transform:translateX(120%) skewX(-20deg); }

.btn-ghost-white {
  color:rgba(255,255,255,0.75); font-size:0.78rem; font-weight:400;
  letter-spacing:0.08em; text-decoration:none;
  display:flex; align-items:center; gap:8px; transition:color 0.3s;
}
.btn-ghost-white:hover { color:var(--white); }
.btn-ghost-white svg { transition:transform 0.3s; }
.btn-ghost-white:hover svg { transform:translateX(5px); }

.btn-wa {
  display:inline-flex; align-items:center; gap:10px;
  background:#25D366; color:var(--white);
  padding:14px 30px; font-size:0.78rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; text-decoration:none;
  border-radius:2px; transition:background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-wa:hover { background:#1fb855; transform:translateY(-2px); box-shadow:0 12px 36px rgba(37,211,102,0.3); }

.btn-enquiry {
  display:inline-block; border:1px solid rgba(255,255,255,0.25);
  color:rgba(255,255,255,0.7); padding:13px 26px;
  font-size:0.76rem; letter-spacing:0.1em; text-transform:uppercase;
  text-decoration:none; border-radius:2px; transition:border-color 0.3s, color 0.3s;
}
.btn-enquiry:hover { border-color:var(--gold); color:var(--gold); }

.btn-text {
  font-size:0.82rem; color:var(--forest); font-weight:500;
  text-decoration:none; display:inline-flex; align-items:center; gap:6px;
  transition:gap 0.2s;
}
.btn-text:hover { gap:10px; }

/* ════════════════════════════════════════
   HERO (homepage)
════════════════════════════════════════ */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden; background:#071a0d;
}
.hero-video-wrap { position:absolute; inset:0; overflow:hidden; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-img-fallback {
  position:absolute; inset:0;
  background-image:url('../images/hero-lawn.jpg');
  background-size:cover; background-position:center 30%;
}
.hero-overlay { position:absolute; inset:0; background:linear-gradient(105deg,rgba(7,26,13,0.82) 0%,rgba(7,26,13,0.55) 50%,rgba(7,26,13,0.4) 100%); }
.hero-overlay-bottom { position:absolute; bottom:0; left:0; right:0; height:200px; background:linear-gradient(180deg,transparent,rgba(7,26,13,0.7)); }
.hero-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:0 64px; width:100%; padding-top:80px; }

.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:28px; animation:fadeUp 0.9s 0.2s both; }
.hero-eyebrow-line { width:28px; height:1px; background:var(--gold); }
.hero-eyebrow span { font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); font-weight:500; }

.hero-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.2rem,6vw,5.8rem);
  font-weight:300; line-height:1.0; color:var(--white);
  margin-bottom:28px; animation:fadeUp 0.9s 0.35s both;
  text-shadow:0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style:italic;
  background:linear-gradient(90deg,var(--gold-light),var(--gold),var(--gold-light));
  background-size:200% 100%;
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:goldShimmer 4s linear infinite;
}
@keyframes goldShimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }

.hero-sub {
  font-size:1.05rem; font-weight:300;
  color:rgba(255,255,255,0.78); line-height:1.8;
  max-width:520px; margin-bottom:40px;
  animation:fadeUp 0.9s 0.5s both;
  text-shadow:0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions { display:flex; gap:14px; align-items:center; animation:fadeUp 0.9s 0.65s both; }

.hero-stats-row {
  display:flex; gap:40px; margin-top:56px;
  padding-top:36px; border-top:1px solid rgba(255,255,255,0.15);
  animation:fadeUp 0.9s 0.8s both;
}
.hero-stat-num {
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem; font-weight:300;
  color:var(--gold-light); display:block; line-height:1;
  text-shadow:0 0 20px rgba(232,201,122,0.4);
}
.hero-stat-label { font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-top:6px; display:block; }

.hero-video-badge {
  position:absolute; right:64px; bottom:56px; z-index:3;
  display:flex; align-items:center; gap:12px;
  border:1px solid rgba(255,255,255,0.18); padding:13px 18px;
  background:rgba(0,0,0,0.3); backdrop-filter:blur(12px);
  animation:fadeUp 0.9s 1s both;
}
.play-ring {
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(201,168,76,0.5);
  display:flex; align-items:center; justify-content:center;
  animation:ringGlow 2.5s ease-in-out infinite; flex-shrink:0;
}
@keyframes ringGlow { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,0.25);}50%{box-shadow:0 0 0 8px rgba(201,168,76,0);} }
.hero-video-badge strong { font-family:'Cormorant Garamond',serif; font-size:0.92rem; color:var(--white); display:block; margin-bottom:2px; }
.hero-video-badge p { font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.45); }

/* ════════════════════════════════════════
   HERO BANNER SLIDER
════════════════════════════════════════ */
.hero-slider {
  position:relative;
  width:100%; height:100vh;
  overflow:hidden;
}
.hero-slider-track {
  display:flex;
  width:200%; height:100%;
  transition:transform 0.8s cubic-bezier(0.77,0,0.175,1);
  will-change:transform;
}
.hero-slide {
  position:relative;
  width:50%; height:100%;
  overflow:hidden;
  flex-shrink:0;
}

/* ── Slide Backgrounds ── */
.hs-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.06);
  transition:transform 8s ease;
}
.hero-slide.active .hs-bg { transform:scale(1.0); }
.hs-bg--orange {
  background-image:url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80');
  background-position:center bottom;
  filter:hue-rotate(30deg) saturate(0.6);
  background-color:#2D1500;
}

/* ── Overlays ── */
.hs-overlay {
  position:absolute; inset:0; z-index:1;
}
.hs-overlay--green {
  background:linear-gradient(110deg,rgba(4,18,9,0.88) 0%,rgba(8,30,16,0.7) 45%,rgba(4,18,9,0.35) 100%);
}
.hs-overlay--orange {
  background:linear-gradient(110deg,rgba(28,10,0,0.92) 0%,rgba(50,20,0,0.75) 45%,rgba(28,10,0,0.4) 100%);
}

/* ── Inner Layout ── */
.hs-inner {
  position:relative; z-index:2;
  width:100%; height:100%;
  max-width:1280px; margin:0 auto;
  padding:0 72px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

/* ── LEFT: Details ── */
.hs-details {
  display:flex; flex-direction:column;
  justify-content:center;
  padding-top:80px;
  opacity:0; transform:translateX(-40px);
  transition:opacity 0.8s 0.3s, transform 0.8s 0.3s;
}
.hero-slide.active .hs-details {
  opacity:1; transform:translateX(0);
}

/* Eyebrow */
.hs-eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  margin-bottom:20px;
}
.hs-eyebrow-line {
  width:32px; height:1px; background:var(--gold); flex-shrink:0;
}
.hs-eyebrow-line--orange { background:#e8813a; }
.hs-eyebrow span {
  font-size:0.65rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold); font-weight:500;
}
.hs-eyebrow--orange span { color:#e8a060; }

/* Title */
.hs-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5.2vw,5rem);
  font-weight:300; line-height:1.05;
  color:var(--white); margin-bottom:8px;
  text-shadow:0 2px 24px rgba(0,0,0,0.5);
}
.hs-title em {
  font-style:italic;
  background:linear-gradient(90deg,#e8c97a,#c9a84c,#e8c97a);
  background-size:200% 100%;
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:goldShimmer 4s linear infinite;
}
.hs-em--orange {
  background:linear-gradient(90deg,#ffb06a,#e8813a,#ffb06a) !important;
  background-size:200% 100% !important;
  -webkit-background-clip:text !important; background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
}

/* Subtitle tag */
.hs-subtitle {
  font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); font-weight:500; margin-bottom:18px; opacity:0.75;
}
.hs-subtitle--orange { color:#e8813a; }

/* Description */
.hs-desc {
  font-size:0.96rem; font-weight:300;
  color:rgba(255,255,255,0.75); line-height:1.8;
  max-width:460px; margin-bottom:24px;
}
.hs-desc strong { color:rgba(255,255,255,0.95); font-weight:500; }

/* Feature list */
.hs-features { display:flex; flex-direction:column; gap:10px; margin-bottom:30px; }
.hs-feature {
  display:flex; align-items:center; gap:10px;
  font-size:0.82rem; color:rgba(255,255,255,0.7); font-weight:300;
}

/* Stats row */
.hs-stats {
  display:flex; gap:32px;
  padding:20px 0; border-top:1px solid rgba(255,255,255,0.12);
  margin-bottom:32px;
}
.hs-stat { display:flex; flex-direction:column; gap:4px; }
.hs-stat-num {
  font-family:'Cormorant Garamond',serif;
  font-size:2rem; font-weight:300;
  color:var(--gold-light); line-height:1;
}
.hs-stat-num--orange { color:#ffb06a; }
.hs-stat-lbl {
  font-size:0.57rem; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.38);
}

/* Actions */
.hs-actions {
  display:flex; align-items:center; gap:20px;
  flex-wrap:wrap;
}
.btn-primary--orange {
  background:#e8813a !important;
  color:#fff !important;
}
.btn-primary--orange:hover { background:#ff9a55 !important; }

/* ── RIGHT: Product Visual ── */
.hs-product-visual {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  height:100%;
  opacity:0; transform:translateX(60px) scale(0.92);
  transition:opacity 0.9s 0.5s, transform 0.9s 0.5s;
}
.hero-slide.active .hs-product-visual {
  opacity:1; transform:translateX(0) scale(1);
}

/* Glow behind bottle */
.hs-product-glow {
  position:absolute;
  width:340px; height:340px;
  border-radius:50%;
  filter:blur(80px);
  z-index:0;
}
.hs-product-glow--green {
  background:radial-gradient(circle,rgba(42,102,66,0.55) 0%,transparent 70%);
}
.hs-product-glow--orange {
  background:radial-gradient(circle,rgba(232,129,58,0.45) 0%,transparent 70%);
}

/* The bottle itself */
.hs-product-bottle {
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center;
  animation:bottleFloat 4s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%,100% { transform:translateY(0px); }
  50%     { transform:translateY(-14px); }
}

/* Cap */
.hs-bottle-cap {
  width:50px; height:24px;
  background:linear-gradient(180deg,#c9a84c,#a8892e);
  border-radius:6px 6px 0 0;
  margin-bottom:0;
  box-shadow:0 -4px 12px rgba(201,168,76,0.3);
}
.hs-bottle-cap--orange {
  background:linear-gradient(180deg,#d46a20,#a84e10);
  box-shadow:0 -4px 12px rgba(212,106,32,0.3);
}

/* Body */
.hs-bottle-body {
  width:160px; min-height:280px;
  background:linear-gradient(160deg,#0d3520,#071a0d,#0d3520);
  border-radius:0 0 18px 18px;
  border:1px solid rgba(201,168,76,0.25);
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:6px;
  padding:28px 16px;
  box-shadow:
    inset 2px 0 8px rgba(255,255,255,0.05),
    inset -2px 0 8px rgba(0,0,0,0.3),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.1);
  position:relative; overflow:hidden;
}
.hs-bottle-body::before {
  content:'';
  position:absolute; top:0; left:12px;
  width:4px; height:100%;
  background:linear-gradient(180deg,rgba(255,255,255,0.12),transparent,rgba(255,255,255,0.06));
  border-radius:2px;
}
.hs-bottle-body--orange {
  background:linear-gradient(160deg,#2D1A08,#1A0F00,#2D1A08);
  border:1px solid rgba(232,129,58,0.25);
  box-shadow:
    inset 2px 0 8px rgba(255,255,255,0.05),
    inset -2px 0 8px rgba(0,0,0,0.3),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(232,129,58,0.1);
}

.hs-bottle-logo { margin-bottom:6px; }
.hs-bottle-brand {
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem; font-weight:400;
  color:var(--gold); letter-spacing:0.08em;
}
.hs-bottle-brand--orange { color:#e8813a; }
.hs-bottle-name {
  font-size:0.5rem; letter-spacing:0.3em; text-transform:uppercase;
  color:rgba(255,255,255,0.65); text-align:center;
}
.hs-bottle-name--orange { color:rgba(255,180,100,0.75); }
.hs-bottle-type {
  font-size:0.42rem; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.35);
}
.hs-bottle-type--orange { color:rgba(255,160,80,0.45); }
.hs-bottle-divider {
  width:60px; height:1px; background:rgba(201,168,76,0.3);
  margin:6px 0;
}
.hs-bottle-divider--orange { background:rgba(232,129,58,0.3); }
.hs-bottle-size {
  font-size:0.55rem; letter-spacing:0.15em; text-transform:uppercase;
  color:rgba(255,255,255,0.4);
}

/* Badge floating near bottle */
.hs-product-badge {
  position:absolute; bottom:18%; right:4%;
  display:flex; align-items:center; gap:8px;
  padding:8px 14px;
  backdrop-filter:blur(12px);
  border-radius:30px;
  font-size:0.72rem; font-weight:500;
  animation:badgePop 0.6s 1.2s both;
}
@keyframes badgePop { 0%{opacity:0;transform:scale(0.7);} 100%{opacity:1;transform:scale(1);} }
.hs-product-badge--green {
  background:rgba(26,74,46,0.6);
  border:1px solid rgba(201,168,76,0.3);
  color:var(--gold-light);
}
.hs-product-badge--orange {
  background:rgba(100,40,0,0.6);
  border:1px solid rgba(232,129,58,0.3);
  color:#ffb06a;
}

/* ── Navigation Arrows ── */
.hs-arrow {
  position:absolute; top:50%; z-index:10;
  transform:translateY(-50%);
  width:52px; height:52px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:50%;
  color:rgba(255,255,255,0.8);
  cursor:none;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
}
.hs-arrow:hover {
  background:rgba(201,168,76,0.2);
  border-color:var(--gold);
  color:var(--gold);
  transform:translateY(-50%) scale(1.1);
}
.hs-arrow--prev { left:28px; }
.hs-arrow--next { right:28px; }

/* ── Dots ── */
.hs-dots {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  z-index:10; display:flex; gap:12px;
}
.hs-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.3);
  border:none; cursor:none;
  transition:background 0.3s, transform 0.3s, width 0.3s;
}
.hs-dot.active {
  background:var(--gold); width:28px; border-radius:4px;
}

/* ── Slide Counter ── */
.hs-counter {
  position:absolute; bottom:38px; right:64px; z-index:10;
  font-size:0.65rem; letter-spacing:0.15em;
  color:rgba(255,255,255,0.35);
}
#hsCurrent { color:rgba(255,255,255,0.75); font-weight:500; }

/* ── Responsive ── */
@media (max-width:900px) {
  .hs-inner {
    grid-template-columns:1fr;
    padding:0 32px;
    align-content:center;
    gap:20px;
  }
  .hs-product-visual { height:260px; }
  .hs-product-bottle { transform:scale(0.8); }
  .hs-arrow { display:none; }
}
@media (max-width:600px) {
  .hs-inner { padding:0 20px; }
  .hs-title { font-size:clamp(2rem,8vw,3rem); }
  .hs-stats { gap:16px; }
  .hs-counter { right:20px; }
}



/* ════════════════════════════════════════
   SECTION EYEBROW + HEADINGS (shared)
════════════════════════════════════════ */
.section-eyebrow {
  font-size:0.67rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--mid); font-weight:500;
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.section-eyebrow::before { content:''; width:22px; height:1px; background:var(--mid); }
.section-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.8rem); font-weight:300; color:var(--text); margin-bottom:52px; line-height:1.2; }
.section-heading em { font-style:italic; color:var(--forest); }

/* ════════════════════════════════════════
   DENGUE PROBLEM SECTION
════════════════════════════════════════ */
.dengue-section { background:var(--deep); padding:80px 64px; }
.dengue-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.dengue-eyebrow { font-size:0.67rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(201,168,76,0.65); font-weight:500; display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.dengue-eyebrow::before { content:''; width:20px; height:1px; background:rgba(201,168,76,0.5); }
.dengue-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.8rem); font-weight:300; color:var(--white); line-height:1.2; margin-bottom:20px; }
.dengue-heading em { font-style:italic; color:var(--gold-light); }
.dengue-body { font-size:0.9rem; font-weight:300; color:rgba(255,255,255,0.55); line-height:1.85; margin-bottom:28px; }
.dengue-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.dengue-stat-card { background:rgba(255,255,255,0.04); padding:24px 20px; border-top:2px solid transparent; transition:border-color 0.3s; }
.dengue-stat-card:hover { border-top-color:var(--gold); }
.dengue-stat-card .num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; color:var(--gold); display:block; line-height:1; }
.dengue-stat-card .lbl { font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-top:6px; display:block; }
.dengue-right { display:flex; flex-direction:column; gap:14px; }
.dengue-fact { display:flex; gap:16px; align-items:flex-start; padding:20px 22px; background:rgba(255,255,255,0.04); border-left:2px solid transparent; transition:border-color 0.3s, background 0.3s; }
.dengue-fact:hover { border-left-color:var(--gold); background:rgba(255,255,255,0.07); }
.dengue-fact-icon { width:38px; height:38px; background:rgba(201,168,76,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dengue-fact strong { font-size:0.78rem; font-weight:600; letter-spacing:0.08em; color:rgba(255,255,255,0.85); display:block; margin-bottom:5px; text-transform:uppercase; }
.dengue-fact p { font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.45); line-height:1.65; }
.dengue-img-wrap { margin-top:20px; position:relative; overflow:hidden; }
.dengue-img-wrap img { width:100%; height:200px; object-fit:cover; filter:brightness(0.65) saturate(0.7); }
.dengue-img-caption { position:absolute; bottom:0; left:0; right:0; padding:16px 20px; background:linear-gradient(transparent,rgba(7,26,13,0.85)); font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   PRODUCT INTRO SECTION
════════════════════════════════════════ */
.product-section { background:var(--white); padding:96px 0; }
.product-inner { max-width:1200px; margin:0 auto; padding:0 64px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.product-visual { position:relative; display:flex; justify-content:center; align-items:center; min-height:400px; }
.product-bg-img { position:absolute; inset:0; }
.product-bg-img img { width:100%; height:100%; object-fit:cover; border-radius:2px; filter:brightness(0.85) saturate(0.8); }
.product-img-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(15,46,27,0.7) 0%,rgba(15,46,27,0.3) 60%,transparent 100%); }
.bottle-center { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; }
#prod-canvas { position:absolute; inset:-60px; pointer-events:none; z-index:3; }
.bottle-svg {
  width:130px; height:275px;
  background:linear-gradient(145deg,#1e5235 0%,#0f2e1b 55%,#1a4a2e 100%);
  border-radius:10px 10px 18px 18px;
  border:1px solid rgba(201,168,76,0.4);
  box-shadow:0 30px 60px rgba(0,0,0,0.5),0 0 40px rgba(201,168,76,0.12),inset 0 1px 0 rgba(255,255,255,0.08);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:7px; padding:22px 16px; position:relative; overflow:hidden;
  animation:bottleFloat 4s ease-in-out infinite;
}
.bottle-svg::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:55%;
  background:linear-gradient(180deg,transparent,rgba(74,124,94,0.3) 40%,rgba(26,74,46,0.55) 100%);
  border-radius:0 0 16px 16px; animation:liqWave 3s ease-in-out infinite;
}
@keyframes bottleFloat { 0%,100%{transform:translateY(0) rotate(-0.3deg);}50%{transform:translateY(-11px) rotate(0.3deg);} }
@keyframes liqWave {
  0%,100%{clip-path:polygon(0 25%,20% 18%,40% 28%,60% 18%,80% 26%,100% 20%,100% 100%,0 100%);}
  50%{clip-path:polygon(0 20%,20% 28%,40% 18%,60% 28%,80% 18%,100% 26%,100% 100%,0 100%);}
}
.bottle-cap-top { width:54px; height:27px; background:linear-gradient(180deg,var(--gold),#9a7228); border-radius:5px 5px 0 0; position:absolute; top:-21px; left:50%; transform:translateX(-50%); }
.bottle-brand { font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:600; color:var(--gold); position:relative; z-index:1; }
.bottle-hr { width:46px; height:1px; background:rgba(201,168,76,0.35); position:relative; z-index:1; }
.bottle-type { font-size:0.48rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.5); text-align:center; position:relative; z-index:1; }
.bottle-shine { position:absolute; top:0; left:0; right:0; bottom:0; border-radius:10px 10px 18px 18px; background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,0.05) 50%,transparent 62%); animation:shinePass 3.5s ease-in-out infinite; }
@keyframes shinePass { 0%,100%{opacity:0;transform:translateX(-100%);}50%{opacity:1;transform:translateX(200%);} }

.product-text .eyebrow { font-size:0.67rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--mid); font-weight:500; display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.product-text .eyebrow::before { content:''; width:22px; height:1px; background:var(--mid); }
.product-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:300; line-height:1.15; color:var(--text); margin-bottom:18px; }
.product-text h2 em { font-style:italic; color:var(--forest); }
.product-text p { font-size:0.93rem; font-weight:300; line-height:1.85; color:var(--text-muted); margin-bottom:26px; }
.dilution-tag { display:inline-flex; align-items:center; gap:14px; border:1px solid rgba(26,74,46,0.15); padding:10px 18px; margin-bottom:16px; }
.dilution-tag strong { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; color:var(--forest); }
.dilution-tag span { font-size:0.78rem; color:var(--text-muted); line-height:1.5; }
.pack-row { display:flex; gap:8px; flex-wrap:wrap; }
.pack-btn { border:1px solid var(--gray-200); padding:9px 16px; cursor:pointer; transition:all 0.25s; background:transparent; }
.pack-btn.active { background:var(--forest); border-color:var(--forest); }
.pack-btn span { font-size:0.85rem; font-weight:600; color:var(--text); display:block; }
.pack-btn small { font-size:0.58rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); }
.pack-btn.active span,.pack-btn.active small { color:var(--white); }

/* ════════════════════════════════════════
   USP SECTION
════════════════════════════════════════ */
.usp-section { background:var(--off-white); padding:96px 64px; }
.usp-inner { max-width:1200px; margin:0 auto; }
.usp-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:2px; }
.usp-card { background:var(--white); padding:34px 24px; border-top:2px solid transparent; transition:border-color 0.3s, transform 0.35s; position:relative; overflow:hidden; }
.usp-card:hover { border-top-color:var(--gold); transform:translateY(-4px); }
.usp-img { width:100%; height:120px; object-fit:cover; margin-bottom:20px; filter:saturate(0.7) brightness(0.9); }
.usp-icon { width:38px; height:38px; background:var(--light-green); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px; transition:background 0.3s, transform 0.5s cubic-bezier(.34,1.56,.64,1); }
.usp-card:hover .usp-icon { background:rgba(26,74,46,0.12); transform:rotate(-8deg) scale(1.15); }
.usp-title { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:500; color:var(--text); margin-bottom:8px; }
.usp-body { font-size:0.78rem; font-weight:300; color:var(--text-muted); line-height:1.7; }

/* ════════════════════════════════════════
   WHO IT'S FOR
════════════════════════════════════════ */
.serve-section { background:var(--white); padding:96px 64px; }
.serve-inner { max-width:1200px; margin:0 auto; }
.serve-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:52px; }
.serve-card { position:relative; overflow:hidden; border-radius:2px; cursor:pointer; }
.serve-card-img { width:100%; height:240px; object-fit:cover; object-position:center; display:block; transition:transform 0.5s cubic-bezier(.16,1,.3,1), filter 0.5s; }
.serve-card:hover .serve-card-img { transform:scale(1.05); filter:brightness(0.8); }
.serve-card-overlay { position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(7,26,13,0.85) 100%); transition:background 0.4s; }
.serve-card:hover .serve-card-overlay { background:linear-gradient(180deg,transparent 20%,rgba(7,26,13,0.9) 100%); }
.serve-card-content { position:absolute; bottom:0; left:0; right:0; padding:20px 18px; }
.serve-card-icon { font-size:1.4rem; display:block; margin-bottom:6px; }
.serve-card-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:var(--white); margin-bottom:4px; font-weight:400; }
.serve-card-desc { font-size:0.7rem; font-weight:300; color:rgba(255,255,255,0.5); line-height:1.5; max-height:0; overflow:hidden; transition:max-height 0.4s, opacity 0.4s; opacity:0; }
.serve-card:hover .serve-card-desc { max-height:60px; opacity:1; }
.serve-card-bar { width:20px; height:2px; background:var(--gold); margin-top:8px; transition:width 0.4s; }
.serve-card:hover .serve-card-bar { width:40px; }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-section { background:var(--off-white); padding:96px 64px; }
.how-inner { max-width:1200px; margin:0 auto; }
.how-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:52px; }
.how-steps-col { display:flex; flex-direction:column; gap:2px; }
.how-step { display:grid; grid-template-columns:56px 1fr; gap:20px; align-items:start; padding:28px 0; border-bottom:1px solid var(--gray-200); }
.how-step:last-child { border-bottom:none; }
.how-step-num-wrap { width:52px; height:52px; border:1px solid var(--gray-200); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:border-color 0.3s, background 0.3s; }
.how-step:hover .how-step-num-wrap { border-color:var(--forest); background:var(--forest); }
.how-step-num-wrap span { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:300; color:var(--text-muted); transition:color 0.3s; }
.how-step:hover .how-step-num-wrap span { color:var(--white); }
.how-step-title { font-size:0.78rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--forest); margin-bottom:7px; }
.how-step-body { font-size:0.85rem; font-weight:300; color:var(--text-muted); line-height:1.7; }
.how-image-col { position:relative; }
.how-main-img { width:100%; height:420px; object-fit:cover; display:block; border-radius:2px; }
.how-img-caption { position:absolute; bottom:0; left:0; right:0; padding:24px; background:linear-gradient(transparent,rgba(7,26,13,0.8)); }
.how-img-caption strong { font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--gold-light); display:block; margin-bottom:4px; }
.how-img-caption p { font-size:0.72rem; color:rgba(255,255,255,0.5); font-weight:300; }
.science-callout { margin-top:20px; background:var(--light-green); padding:20px 24px; display:flex; align-items:center; gap:16px; }
.science-callout-icon { width:40px; height:40px; background:var(--forest); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.science-callout strong { font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--deep); display:block; margin-bottom:3px; }
.science-callout p { font-size:0.75rem; color:var(--text-muted); font-weight:300; line-height:1.5; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi-section { background:var(--white); padding:96px 64px; }
.testi-inner { max-width:1200px; margin:0 auto; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.testi-card { background:var(--off-white); overflow:hidden; transition:transform 0.35s, box-shadow 0.35s; }
.testi-card:hover { transform:translateY(-5px); box-shadow:0 20px 50px rgba(0,0,0,0.08); }
.testi-card-img { width:100%; height:160px; object-fit:cover; display:block; filter:saturate(0.7); }
.testi-card-body { padding:28px 26px; }
.testi-stars { color:var(--gold); font-size:0.72rem; letter-spacing:0.1em; margin-bottom:14px; }
.testi-quote { font-family:'Cormorant Garamond',serif; font-size:1.02rem; font-style:italic; color:var(--text); line-height:1.75; margin-bottom:18px; }
.testi-rule { width:24px; height:1px; background:var(--gray-200); margin-bottom:14px; }
.testi-name { font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--forest); }
.testi-role { font-size:0.68rem; font-weight:300; color:var(--text-muted); margin-top:2px; }
.logos-row { margin-top:52px; padding-top:40px; border-top:1px solid var(--gray-200); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.logos-label { font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); margin-right:8px; }
.logo-pill { border:1px solid var(--gray-200); padding:8px 18px; border-radius:20px; font-size:0.7rem; color:var(--text-muted); transition:border-color 0.25s, color 0.25s; }
.logo-pill:hover { border-color:var(--forest); color:var(--forest); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { background:var(--off-white); padding:96px 64px; }
.faq-inner { max-width:760px; margin:0 auto; }
.faq-list { margin-top:48px; }
.faq-item { border-bottom:1px solid var(--gray-200); }
.faq-q { padding:20px 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-size:0.9rem; color:var(--text); transition:color 0.25s; }
.faq-q:hover { color:var(--forest); }
.faq-icon { width:22px; height:22px; border:1px solid var(--gray-200); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.88rem; flex-shrink:0; transition:transform 0.35s, background 0.25s, border-color 0.25s; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--forest); border-color:var(--forest); color:var(--white); }
.faq-ans { max-height:0; overflow:hidden; transition:max-height 0.45s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-ans { max-height:200px; }
.faq-ans p { font-size:0.86rem; font-weight:300; color:var(--text-muted); line-height:1.8; padding-bottom:20px; }

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section {
  background:var(--forest); padding:96px 64px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; left:50%; top:50%; width:700px; height:700px;
  border-radius:50%; border:1px solid rgba(255,255,255,0.04);
  transform:translate(-50%,-50%); animation:ctaRing 5s ease-out infinite;
}
.cta-section::after {
  content:''; position:absolute; left:50%; top:50%; width:460px; height:460px;
  border-radius:50%; border:1px solid rgba(255,255,255,0.06);
  transform:translate(-50%,-50%); animation:ctaRing 5s 1.5s ease-out infinite;
}
@keyframes ctaRing { 0%{opacity:0.8;transform:translate(-50%,-50%) scale(0.5);}100%{opacity:0;transform:translate(-50%,-50%) scale(1.8);} }
.cta-inner { position:relative; z-index:1; max-width:600px; margin:0 auto; }
.cta-eyebrow { font-size:0.67rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(201,168,76,0.7); margin-bottom:18px; }
.cta-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.2rem); font-weight:300; color:var(--white); line-height:1.2; margin-bottom:14px; }
.cta-heading em { font-style:italic; color:var(--gold-light); }
.cta-sub { font-size:0.88rem; font-weight:300; color:rgba(255,255,255,0.45); line-height:1.7; margin-bottom:36px; }
.cta-btns { display:flex; gap:12px; justify-content:center; }
.cta-btns .btn-enquiry {
  background:var(--gold); color:var(--deep);
  border:none; font-weight:600;
  transition:background 0.3s, transform 0.2s;
}
.cta-btns .btn-enquiry:hover { background:var(--gold-light); color:var(--deep); transform:translateY(-2px); }

/* ════════════════════════════════════════
   FOOTER (.gpf)
════════════════════════════════════════ */
.gpf { background:linear-gradient(180deg,#0E1B12 0%,#0A130D 100%); border-top:1px solid rgba(201,166,72,.3); font-family:'Inter',sans-serif; }
.gpf-top { max-width:1320px; margin:0 auto; padding:72px 5vw 52px; display:grid; grid-template-columns:1.5fr 1fr 1.3fr 1.3fr; gap:56px; }
.gpf-brand { font-family:'Cormorant Garamond',Georgia,serif; font-size:28px; font-weight:600; color:#F2EDE0; margin-bottom:16px; }
.gpf-brand span { color:#C9A648; }
.gpf-desc { color:#9FAF9C; font-size:14px; line-height:1.8; margin:0 0 24px; max-width:300px; }
.gpf h4 { font-family:'Cormorant Garamond',Georgia,serif; color:#C9A648; font-size:22px; font-weight:600; font-style:italic; letter-spacing:.02em; text-transform:none; margin:0 0 20px; }
.gpf-links a { display:block; color:#D8DDD3; text-decoration:none; font-size:14px; padding:6px 0; transition:color .2s, transform .2s; }
.gpf-links a:hover { color:#C9A648; transform:translateX(4px); }
.gpf-help div { display:flex; gap:12px; color:#9FAF9C; font-size:14px; line-height:1.7; margin-bottom:16px; }
.gpf-help .gic { color:#C9A648; flex:none; padding-top:1px; }
.gpf-help a { color:#D8DDD3; text-decoration:none; }
.gpf-help a:hover { color:#C9A648; }
.gpf-follow { color:#C9A648; font-size:12px; letter-spacing:.18em; text-transform:uppercase; font-weight:600; margin-bottom:14px; }
.gpf-socials { display:flex; gap:12px; }
.gpf-socials a { width:38px; height:38px; border:1px solid rgba(201,166,72,.4); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#C9A648; transition:all .25s; }
.gpf-socials a:hover { background:#C9A648; color:#0E1B12; transform:translateY(-2px); }
.gpf-sub { display:flex; background:rgba(201,166,72,.06); border:1px solid rgba(201,166,72,.4); border-radius:10px; overflow:hidden; }
.gpf-sub input { flex:1; background:transparent; border:0; color:#F2EDE0; padding:14px 16px; font-size:14px; min-width:0; font-family:'Inter',sans-serif; }
.gpf-sub input::placeholder { color:#8A9A8A; }
.gpf-sub input:focus { outline:none; }
.gpf-sub button { background:#C9A648; border:0; color:#14100a; padding:0 20px; cursor:pointer; display:flex; align-items:center; transition:background .2s; }
.gpf-sub button:hover { background:#E0C471; }
.gpf-submsg { font-size:13px; margin-top:10px; color:#9FAF9C; min-height:18px; }
.gpf-bottom { border-top:1px solid rgba(201,166,72,.16); text-align:center; padding:22px 5vw; color:#8A9A8A; font-size:13px; letter-spacing:.02em; }
.gpf-bottom a { color:#C9A648; text-decoration:none; }
.gpf-bottom a:hover { text-decoration:underline; }

/* WhatsApp sticky */
.wa-sticky {
  position:fixed; bottom:28px; right:28px; z-index:500;
  width:52px; height:52px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  transition:transform 0.3s, box-shadow 0.3s;
}
.wa-sticky:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,0.55); }
.wa-sticky svg { width:26px; height:26px; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background:var(--deep); padding:140px 64px 80px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(26,74,46,0.3) 0%,transparent 70%);
  pointer-events:none;
}
.page-hero .container { max-width:1200px; margin:0 auto; position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:20px; font-size:0.72rem; letter-spacing:0.06em; }
.breadcrumb a { color:rgba(255,255,255,0.4); text-decoration:none; transition:color 0.2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:rgba(255,255,255,0.25); }
.page-eyebrow { font-size:0.67rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(201,168,76,0.65); font-weight:500; display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.page-eyebrow::before { content:''; width:20px; height:1px; background:rgba(201,168,76,0.5); }
.page-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.4rem,5vw,4.5rem); font-weight:300; color:var(--white); line-height:1.1; margin-bottom:20px; }
.page-hero h1 em { font-style:italic; background:linear-gradient(90deg,var(--gold-light),var(--gold),var(--gold-light)); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; animation:goldShimmer 4s linear infinite; }
.page-hero p { font-size:1rem; font-weight:300; color:rgba(255,255,255,0.6); line-height:1.8; max-width:560px; }

/* ════════════════════════════════════════
   PRODUCT DETAIL PAGE
════════════════════════════════════════ */
.product-detail-section { background:var(--off-white); padding:80px 64px; }
.product-detail-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:start; }
.product-detail-sticky { position:sticky; top:100px; }
.product-main-visual {
  width:100%; aspect-ratio:4/3; background:linear-gradient(135deg,var(--deep),var(--forest));
  border-radius:2px; display:flex; align-items:center; justify-content:center;
  font-size:6rem; position:relative; overflow:hidden;
}
.product-main-visual img { width:100%; height:100%; object-fit:cover; }
.product-thumbs { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
.product-thumb { background:var(--white); border:1px solid var(--gray-200); border-radius:2px; padding:16px; text-align:center; font-size:1.8rem; cursor:pointer; transition:border-color 0.25s; }
.product-thumb:hover { border-color:var(--gold); }
.product-info-col {}
.product-badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.product-badge { border:1px solid rgba(26,74,46,0.2); padding:5px 14px; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--forest); border-radius:20px; }
.product-info-col h2 { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:300; color:var(--text); line-height:1.1; margin-bottom:8px; }
.product-info-col h2 em { font-style:italic; color:var(--forest); }
.product-sku-line { font-size:0.82rem; color:var(--text-muted); margin-bottom:32px; }
.product-sub-label { font-size:0.67rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--mid); font-weight:600; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.product-sub-label::before { content:''; width:16px; height:1px; background:var(--mid); }
.surface-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:32px; }
.surface-card { background:var(--white); border:1px solid var(--gray-200); border-radius:2px; padding:18px; text-align:center; transition:border-color 0.25s; }
.surface-card:hover { border-color:var(--gold); }
.surface-icon { font-size:1.6rem; margin-bottom:8px; }
.surface-name { font-weight:600; font-size:0.88rem; color:var(--text); margin-bottom:2px; }
.surface-desc { font-size:0.72rem; color:var(--text-muted); }
.how-steps-product { display:flex; flex-direction:column; gap:0; margin-bottom:32px; }
.feature-list { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.feature-item { display:flex; gap:12px; align-items:flex-start; font-size:0.86rem; color:var(--text-muted); line-height:1.6; }
.feature-check { width:18px; height:18px; background:var(--forest); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.feature-check svg { width:10px; height:10px; }
.product-table { width:100%; border-collapse:collapse; margin-bottom:28px; font-size:0.86rem; }
.product-table tr { border-bottom:1px solid var(--gray-200); }
.product-table td { padding:12px 8px; color:var(--text-muted); }
.product-table td:first-child { font-weight:500; color:var(--text); width:40%; }
.product-actions { display:flex; gap:12px; flex-wrap:wrap; }
.safety-note { background:var(--light-green); border-left:3px solid var(--forest); padding:14px 18px; font-size:0.82rem; color:var(--text-muted); line-height:1.6; margin-bottom:24px; border-radius:0 2px 2px 0; }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-section { padding:96px 64px; }
.about-section .container { max-width:1200px; margin:0 auto; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.founder-quote { border-left:3px solid var(--gold); padding:24px 28px; background:var(--off-white); font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-style:italic; color:var(--text); line-height:1.75; margin:28px 0; }
.founder-attribution { display:block; font-size:0.72rem; font-style:normal; font-family:'Inter',sans-serif; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-top:14px; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-top:8px; }
.value-card { background:var(--light-green); padding:24px 22px; border-top:2px solid transparent; transition:border-color 0.3s; }
.value-card:hover { border-top-color:var(--gold); }
.value-card h5 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--forest); margin-bottom:8px; }
.value-card p { font-size:0.8rem; color:var(--text-muted); line-height:1.65; }
.about-image-box { position:relative; min-height:460px; background:linear-gradient(135deg,var(--deep),var(--forest)); border-radius:2px; display:flex; align-items:center; justify-content:center; font-size:6rem; }
.serve-grid-about { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.serve-item { background:var(--white); border:1px solid var(--gray-200); border-radius:2px; padding:28px 20px; text-align:center; transition:border-color 0.3s, transform 0.3s; }
.serve-item:hover { border-color:var(--gold); transform:translateY(-3px); }
.serve-item-icon { font-size:2rem; margin-bottom:12px; }
.serve-item h5 { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:var(--text); }

/* ════════════════════════════════════════
   RESEARCH PAGE
════════════════════════════════════════ */
.research-section { padding:80px 64px; }
.research-inner { max-width:1200px; margin:0 auto; }
.research-content { max-width:860px; }
.research-block { margin-bottom:60px; padding-bottom:60px; border-bottom:1px solid var(--gray-200); }
.research-block:last-child { border-bottom:none; }
.research-block h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:300; color:var(--text); margin-bottom:20px; }
.research-block h2 em { font-style:italic; color:var(--forest); }
.research-block h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; color:var(--text); margin:28px 0 12px; }
.research-block p { font-size:0.92rem; font-weight:300; color:var(--text-muted); line-height:1.85; margin-bottom:16px; }
.research-block ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.research-block ul li { font-size:0.9rem; color:var(--text-muted); padding-left:22px; position:relative; line-height:1.7; }
.research-block ul li::before { content:'—'; position:absolute; left:0; color:var(--gold); }
.research-stat-row { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:28px; }
.research-stat-card { background:var(--off-white); border-top:2px solid transparent; padding:22px 18px; transition:border-color 0.3s; }
.research-stat-card:hover { border-top-color:var(--gold); }
.research-stat-card .stat-num { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--forest); display:block; }
.research-stat-card .stat-lbl { font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-top:6px; display:block; line-height:1.5; }
.citation { background:var(--off-white); border-left:3px solid var(--gold); padding:18px 22px; font-size:0.86rem; color:var(--text-muted); line-height:1.75; margin-bottom:16px; }
.honesty-box { background:var(--light-green); border:1px solid rgba(26,74,46,0.15); padding:32px 36px; margin-bottom:40px; }
.honesty-box h4 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--forest); margin-bottom:16px; }
.honesty-box p { font-size:0.88rem; color:var(--text-muted); line-height:1.8; margin-bottom:12px; }
.partner-invite { background:var(--deep); padding:36px 40px; margin-bottom:40px; }
.partner-invite h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; color:var(--white); margin-bottom:14px; }
.partner-invite p { font-size:0.88rem; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:24px; }
.references { margin-top:40px; padding-top:32px; border-top:1px solid var(--gray-200); }
.references h4 { font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
.references ol { list-style:decimal; padding-left:20px; display:flex; flex-direction:column; gap:10px; }
.references ol li { font-size:0.82rem; color:var(--text-muted); line-height:1.7; }

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
.blog-listing-section { background:var(--white); padding:80px 64px; }
.blog-listing-inner { max-width:1200px; margin:0 auto; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:var(--off-white); overflow:hidden; transition:transform 0.35s, box-shadow 0.35s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:0 20px 50px rgba(0,0,0,0.08); }
.blog-card-img { width:100%; height:180px; object-fit:cover; display:block; font-size:3.5rem; background:var(--light-green); display:flex; align-items:center; justify-content:center; }
.blog-card-body { padding:28px 26px; }
.blog-tag { font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--forest); font-weight:600; display:block; margin-bottom:10px; }
.blog-card-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:400; color:var(--text); line-height:1.4; margin-bottom:12px; }
.blog-card-body p { font-size:0.82rem; color:var(--text-muted); line-height:1.7; margin-bottom:20px; }
.blog-meta-row { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.blog-date { font-size:0.7rem; color:var(--gray-400); }
.btn-read-more { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:600; color:var(--forest); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:gap 0.2s; }
.btn-read-more:hover { gap:10px; }

/* Blog post */
.blog-post-section { padding:80px 64px; }
.blog-post-inner { max-width:760px; margin:0 auto; }
.blog-post-meta { display:flex; gap:12px; align-items:center; flex-wrap:wrap; font-size:0.72rem; color:var(--text-muted); margin-bottom:40px; padding-bottom:24px; border-bottom:1px solid var(--gray-200); }
.blog-post-meta span { letter-spacing:0.05em; }
.blog-post-inner h2 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; color:var(--text); margin:40px 0 16px; }
.blog-post-inner h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; color:var(--text); margin:28px 0 12px; }
.blog-post-inner p { font-size:0.92rem; font-weight:300; color:var(--text-muted); line-height:1.9; margin-bottom:20px; }
.blog-post-inner ul,
.blog-post-inner ol { padding-left:22px; margin-bottom:20px; display:flex; flex-direction:column; gap:8px; }
.blog-post-inner ul li { font-size:0.9rem; color:var(--text-muted); line-height:1.7; list-style:disc; }
.blog-callout { background:var(--light-green); border-left:3px solid var(--forest); padding:20px 24px; margin:28px 0; }
.blog-callout p { font-size:0.88rem; font-style:italic; color:var(--text); line-height:1.75; margin:0; }
.blog-back { margin-top:48px; padding-top:32px; border-top:1px solid var(--gray-200); }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-section { background:var(--white); padding:80px 64px; }
.contact-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:start; }
.contact-info h2 { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--text); margin-bottom:32px; }
.contact-detail { display:flex; gap:16px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--gray-200); }
.contact-detail:last-of-type { border-bottom:none; }
.contact-detail-icon { width:38px; height:38px; background:var(--light-green); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1rem; }
.contact-detail h5 { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--mid); margin-bottom:4px; }
.contact-detail a { font-size:0.9rem; color:var(--text); text-decoration:none; transition:color 0.25s; }
.contact-detail a:hover { color:var(--forest); }
.contact-detail p { font-size:0.82rem; color:var(--text-muted); margin-top:2px; }
.wa-inline { display:flex; align-items:center; gap:10px; background:#25D366; color:var(--white); padding:13px 20px; border-radius:2px; font-size:0.8rem; font-weight:500; text-decoration:none; margin-top:24px; transition:background 0.25s; }
.wa-inline svg { width:18px; height:18px; fill:currentColor; }
.wa-inline:hover { background:#1fb855; }
.map-embed { margin-top:28px; border-radius:2px; overflow:hidden; }
.map-embed iframe { width:100%; height:220px; border:none; display:block; filter:saturate(0.6) contrast(1.1); }
.lead-form-card { background:var(--off-white); padding:40px; border-top:3px solid var(--gold); }
.lead-form-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; color:var(--text); margin-bottom:8px; }
.lead-form-card > p { font-size:0.86rem; color:var(--text-muted); margin-bottom:24px; }
.form-note { display:flex; gap:8px; align-items:center; background:var(--light-green); padding:10px 14px; font-size:0.8rem; color:var(--forest); margin-bottom:24px; border-radius:2px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:6px; }
.form-group input,
.form-group select,
.form-group textarea { width:100%; border:1px solid var(--gray-200); background:var(--white); padding:12px 14px; font-family:'Inter',sans-serif; font-size:0.88rem; color:var(--text); transition:border-color 0.25s; border-radius:2px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline:none; border-color:var(--forest); }
.form-group textarea { min-height:100px; resize:vertical; }
.form-success { display:none; text-align:center; padding:24px 0; }
.form-success-icon { font-size:2.5rem; margin-bottom:12px; }
.form-success h4 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--text); margin-bottom:8px; }
.form-success p { font-size:0.88rem; color:var(--text-muted); margin-bottom:20px; }
.brochure-btns { display:flex; flex-direction:column; gap:10px; }

/* ════════════════════════════════════════
   BROCHURE MODAL
════════════════════════════════════════ */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.75); z-index:2000; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal-box { background:var(--white); max-width:460px; width:100%; padding:40px; position:relative; border-top:3px solid var(--gold); }
.modal-close { position:absolute; top:16px; right:16px; background:transparent; border:none; font-size:1.4rem; cursor:pointer; color:var(--text-muted); line-height:1; }
.modal-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text); margin-bottom:8px; }
.modal-box > p { font-size:0.86rem; color:var(--text-muted); margin-bottom:24px; }

/* ════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════ */
.legal-section { padding:80px 64px; }
.legal-inner { max-width:760px; margin:0 auto; }
.legal-date { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); display:block; margin-bottom:32px; }
.legal-inner h2 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:400; color:var(--text); margin:36px 0 12px; }
.legal-inner p { font-size:0.9rem; font-weight:300; color:var(--text-muted); line-height:1.85; margin-bottom:14px; }
.legal-inner ul { list-style:disc; padding-left:22px; display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.legal-inner ul li { font-size:0.88rem; color:var(--text-muted); line-height:1.7; }
.legal-inner strong { color:var(--text); font-weight:600; }
.legal-inner a { color:var(--forest); }

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.from-left { transform:translateX(-28px); }
.reveal.from-right { transform:translateX(28px); }
.reveal.scale-in { transform:scale(0.94); }
.reveal.visible { opacity:1; transform:none; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);} }
.party-mode { animation:partyHue 1s linear infinite; }
@keyframes partyHue { 0%{filter:hue-rotate(0deg);}100%{filter:hue-rotate(360deg);} }
@media(prefers-reduced-motion:reduce){*{animation-duration:0.01ms!important;transition-duration:0.01ms!important;}}
@keyframes navSlideIn{from{opacity:0;transform:translateX(24px);}to{opacity:1;transform:translateX(0);}}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
════════════════════════════════════════ */
@media(max-width:900px){
  nav{padding:16px 22px;}
  nav.scrolled{padding:12px 22px;}
  .nav-toggle{display:flex;}
  .nav-links{
    position:fixed;top:0;right:0;height:100vh;width:min(80vw,320px);
    flex-direction:column;align-items:flex-start;justify-content:flex-start;
    gap:8px;padding:88px 28px 28px;background:var(--white);
    box-shadow:-8px 0 40px rgba(0,0,0,0.18);display:none;
  }
  nav.nav-open .nav-links{display:flex;animation:navSlideIn .32s cubic-bezier(.16,1,.3,1);}
  .nav-links a{color:var(--text)!important;font-size:0.95rem;width:100%;padding:10px 0;}
  .nav-links a:hover{color:var(--forest)!important;}
  .nav-cta{display:inline-block;margin-top:10px;padding:12px 26px!important;}

  .hero-content,.product-inner{padding-left:22px!important;padding-right:22px!important;}
  .dengue-section,.usp-section,.serve-section,.how-section,.testi-section,.faq-section,.cta-section,.about-section,.research-section,.blog-listing-section,.blog-post-section,.contact-section,.legal-section{padding-left:22px;padding-right:22px;}
  .page-hero{padding:120px 22px 60px;}

  .dengue-inner,.product-inner,.how-layout,.about-grid,.contact-inner,.product-detail-inner{grid-template-columns:1fr!important;gap:40px!important;}
  .product-visual{min-height:320px;}
  .usp-grid{grid-template-columns:1fr 1fr!important;gap:12px!important;}
  .serve-grid{grid-template-columns:1fr 1fr!important;gap:12px!important;}
  .testi-grid,.blog-grid{grid-template-columns:1fr!important;gap:18px!important;}
  .research-stat-row{grid-template-columns:1fr 1fr!important;}
  .serve-grid-about{grid-template-columns:1fr 1fr!important;}
  .gpf-top{grid-template-columns:1fr 1fr;gap:40px;}
  .gpf-top>div:first-child{grid-column:1/-1;}
}

/* ════════════════════════════════════════
   RESPONSIVE — PHONE ≤ 600px
════════════════════════════════════════ */
@media(max-width:600px){
  .dengue-section,.usp-section,.serve-section,.how-section,.testi-section,.faq-section,.cta-section,.about-section,.research-section,.blog-listing-section,.blog-post-section,.contact-section,.legal-section{padding-top:60px;padding-bottom:60px;padding-left:18px;padding-right:18px;}
  .page-hero{padding:110px 18px 52px;}
  .product-section{padding:64px 0;}
  .hero-content{padding-top:96px;}
  .usp-grid,.serve-grid{grid-template-columns:1fr!important;}
  .dengue-stats-grid,.surface-grid,.values-grid{gap:1px;}
  .hero-stats-row{gap:18px 28px!important;flex-wrap:wrap;}
  .hero-stat-num{font-size:2rem!important;}
  .cta-btns{flex-direction:column;align-items:stretch;}
  .cta-btns .btn-wa,.cta-btns .btn-enquiry{width:100%;justify-content:center;}
  .how-step{grid-template-columns:44px 1fr!important;gap:14px!important;padding:22px 0!important;}
  .section-heading{margin-bottom:36px;}
  .research-stat-row{grid-template-columns:1fr 1fr!important;}
  .serve-grid-about{grid-template-columns:1fr!important;}
  .gpf-top{grid-template-columns:1fr;padding:52px 6vw 36px;}
  .gpf-bottom{flex-direction:column;gap:6px;text-align:center;}
}

/* ── TOUCH DEVICES — restore cursor ── */
@media(hover:none),(pointer:coarse){
  body{cursor:auto!important;}
  a,button,.btn-primary,.faq-q,.serve-card,.pack-btn{cursor:pointer!important;}
  #cursor-leaf,#cursor-dot{display:none!important;}
}

/* ════════════════════════════════════════
   NAV DROPDOWN
════════════════════════════════════════ */
.nav-dropdown { position:relative; }
.nav-dropdown-toggle { display:flex; align-items:center; gap:3px; }
.nav-dropdown-menu {
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:8px; min-width:240px;
  box-shadow:0 16px 48px rgba(0,0,0,0.14); border:1px solid var(--gray-200);
  overflow:hidden; display:none; z-index:500; flex-direction:column;
  animation:fadeDropdown 0.22s cubic-bezier(.16,1,.3,1);
}
@keyframes fadeDropdown{ from{opacity:0;transform:translateX(-50%) translateY(-8px);}to{opacity:1;transform:translateX(-50%) translateY(0);} }
.nav-dropdown:hover .nav-dropdown-menu { display:flex; }
.nav-dropdown-menu li a {
  display:block; padding:13px 20px;
  color:var(--text)!important; font-size:0.82rem!important;
  font-weight:500!important; text-transform:none!important;
  letter-spacing:0.02em!important; transition:background 0.18s, color 0.18s!important;
}
.nav-dropdown-menu li a:hover { background:var(--light-green); color:var(--forest)!important; }
.nav-dropdown-menu li:not(:last-child) { border-bottom:1px solid var(--gray-200); }
/* mobile dropdown */
@media(max-width:900px){
  .nav-dropdown-menu {
    position:static; transform:none; box-shadow:none; border:none;
    background:var(--light-green); border-radius:4px; margin:4px 0 8px;
    display:flex; animation:none;
  }
  .nav-dropdown-menu li a { padding:10px 16px; font-size:0.88rem!important; }
}

/* ════════════════════════════════════════
   PRODUCT CAROUSEL
════════════════════════════════════════ */
/* Section wrapper */
.product-section { background:var(--white); }
.product-carousel-outer {
  overflow:hidden;
  background:var(--white);
}
.prod-section-header {
  text-align:center; padding:36px 7vw 0;
  background:var(--white);
}
.prod-section-header .section-heading { margin-bottom:24px; }
.prod-carousel-wrap { position:relative; overflow:hidden; }
.prod-carousel-track {
  display:flex;
  transition:transform 0.65s cubic-bezier(.16,1,.3,1);
  will-change:transform;
  align-items:stretch;
}
.prod-slide { width:100%; min-width:100%; flex-shrink:0; }
.prod-slide-inner {
  display:grid;
  grid-template-columns:55% 45%;
  min-height:520px;
  height:100%;
}
/* Visual column — full bleed, contains bottle centered */
.prod-slide-visual {
  position:relative;
  overflow:hidden;
  min-height:520px;
}
.prod-slide-visual .product-bg-img {
  position:absolute; inset:0;
}
.prod-slide-visual .product-bg-img img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.prod-slide-visual .product-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(15,46,27,0.82) 0%,rgba(26,74,46,0.5) 100%);
}
.prod-slide-visual .bottle-center {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
/* Arrows — inside visual column, bottom-right */
.prod-carousel-arrows {
  position:absolute;
  bottom:28px; left:50%;
  transform:translateX(-50%);
  display:flex; gap:10px; z-index:10;
}
.prod-arrow {
  width:44px; height:44px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.6);
  background:rgba(0,0,0,0.42); backdrop-filter:blur(10px);
  color:white; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.22s, border-color 0.22s, transform 0.2s;
}
.prod-arrow:hover { background:var(--gold); border-color:var(--gold); transform:scale(1.1); }
/* Text column */
.prod-slide-text {
  padding:36px 56px 36px 48px;
  background:var(--off-white);
  display:flex; flex-direction:column; justify-content:center;
  border-left:1px solid var(--gray-200);
}
.prod-slide-text h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:2.2rem; font-weight:600;
  color:var(--deep); line-height:1.15;
  margin-bottom:10px; margin-top:6px;
}
.prod-slide-text h2 em { color:var(--forest); font-style:italic; }
.prod-slide-text p {
  font-size:0.88rem; font-weight:300; color:var(--text-muted);
  line-height:1.65; margin-bottom:0;
}
.prod-slide-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.7rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--forest); background:rgba(26,74,46,0.07);
  border:1px solid rgba(26,74,46,0.18);
  padding:5px 14px; border-radius:20px; margin-bottom:10px; width:fit-content;
}
.prod-slide-actions {
  display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;
  align-items:center;
}
.prod-slide-actions .btn-primary { font-size:0.82rem; padding:13px 28px; }
.prod-slide-actions .btn-enquiry {
  font-size:0.82rem; padding:13px 28px;
  background:transparent; border:1.5px solid var(--forest); color:var(--forest);
  border-radius:2px; font-weight:500; cursor:pointer;
  transition:background 0.2s, color 0.2s;
}
.prod-slide-actions .btn-enquiry:hover { background:var(--forest); color:var(--white); }
.surface-tags-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; margin-bottom:4px; }
.surface-tag {
  padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:500;
  background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.28); color:var(--forest);
}
.prod-sku-small { font-size:0.77rem; color:var(--text-muted); margin-top:8px; }
/* Dots row — below carousel */
.prod-carousel-dots {
  display:flex; justify-content:center; align-items:center; gap:14px;
  padding:24px 7vw 36px;
  background:var(--off-white);
}
.prod-dot {
  background:none; border:1.5px solid var(--gray-200); border-radius:24px;
  padding:9px 22px; font-size:0.78rem; font-weight:500; color:var(--text-muted);
  cursor:pointer; transition:all 0.26s; white-space:nowrap;
}
.prod-dot.active {
  border-color:var(--forest); color:var(--forest);
  background:rgba(26,74,46,0.07); font-weight:600;
}
/* Orange bottle */
.orange-bottle { position:relative; display:flex; flex-direction:column; align-items:center; }
.orange-bottle-cap { width:42px; height:20px; background:linear-gradient(180deg,#d4780a,#c9a84c); border-radius:4px 4px 0 0; }
.orange-bottle-body {
  width:110px; height:260px; border-radius:16px;
  background:linear-gradient(160deg,#d4780a 0%,#c9a84c 40%,#a05c08 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  padding:18px 12px; position:relative; box-shadow:0 12px 40px rgba(0,0,0,0.35);
}
.orange-bottle-shine { position:absolute; top:10px; left:12px; width:22px; height:80%; border-radius:10px; background:linear-gradient(180deg,rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 100%); }
.orange-bottle-brand { color:white; font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:700; letter-spacing:0.08em; position:relative; z-index:1; }
.orange-bottle-hr { width:60%; height:1px; background:rgba(255,255,255,0.4); margin:8px 0; position:relative; z-index:1; }
.orange-bottle-type { color:rgba(255,255,255,0.85); font-size:0.6rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; position:relative; z-index:1; text-align:center; }
/* Responsive carousel */
@media(max-width:900px){
  .prod-slide-inner { grid-template-columns:1fr!important; }
  .prod-slide-visual { min-height:300px!important; }
  .prod-slide-text { padding:40px 28px 40px!important; border-left:none!important; border-top:1px solid var(--gray-200); }
  .prod-carousel-arrows { bottom:260px; }
  .prod-section-header { padding:52px 22px 0; }
}
@media(max-width:600px){
  .prod-slide-text { padding:32px 18px 32px!important; }
  .prod-slide-actions { flex-direction:column; }
  .prod-slide-actions .btn-primary,.prod-slide-actions .btn-enquiry { text-align:center; justify-content:center; width:100%; }
  .prod-slide-text h2 { font-size:1.9rem; }
}

/* ════════════════════════════════════════
   DENGUE — MOSQUITO IMG ON LEFT
════════════════════════════════════════ */
.dengue-mosquito-img {
  margin-top:28px; border-radius:4px; overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,0.22); position:relative;
}
.dengue-mosquito-img img { width:100%; height:220px; object-fit:cover; display:block; }
.dengue-mosquito-img .dengue-img-caption {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(0deg,rgba(15,46,27,0.92) 0%,transparent 100%);
  padding:20px 14px 10px; font-size:0.72rem; color:rgba(255,255,255,0.7); text-align:center;
}

/* ════════════════════════════════════════
   MODAL POPUP (Quote + Brochure)
════════════════════════════════════════ */
.modal-overlay {
  position:fixed; inset:0; z-index:10000;
  background:rgba(15,46,27,0.72); backdrop-filter:blur(8px);
  display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; animation:modalFadeIn 0.3s ease; }
@keyframes modalFadeIn { from{opacity:0;}to{opacity:1;} }
.modal-box {
  background:var(--white); border-radius:12px;
  width:100%; max-width:520px; max-height:90vh; overflow-y:auto;
  padding:44px 40px; position:relative;
  box-shadow:0 32px 80px rgba(0,0,0,0.28);
  animation:modalSlideUp 0.35s cubic-bezier(.16,1,.3,1);
}
@keyframes modalSlideUp { from{opacity:0;transform:translateY(32px);}to{opacity:1;transform:translateY(0);} }
.modal-close {
  position:absolute; top:16px; right:20px;
  background:none; border:none; font-size:1.6rem; color:var(--text-muted);
  cursor:pointer; line-height:1; transition:color 0.2s;
}
.modal-close:hover { color:var(--text); }
.modal-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:600; color:var(--deep); margin-bottom:8px; }
.modal-box p { font-size:0.85rem; color:var(--text-muted); margin-bottom:20px; }
.form-note { display:flex; gap:8px; align-items:center; font-size:0.75rem; color:var(--text-muted); background:var(--off-white); padding:10px 14px; border-radius:6px; margin-bottom:20px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.75rem; font-weight:600; color:var(--text); letter-spacing:0.05em; text-transform:uppercase; margin-bottom:6px; }
.form-group input,.form-group select,.form-group textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--gray-200);
  border-radius:6px; font-family:'Inter',sans-serif; font-size:0.88rem;
  color:var(--text); background:var(--white);
  transition:border-color 0.2s; outline:none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--forest); }
.form-group textarea { min-height:90px; resize:vertical; }
@media(max-width:600px){ .modal-box { padding:32px 22px; } }

/* ════════════════════════════════════════
   FOOTER ENHANCED
════════════════════════════════════════ */
.gpf { background:var(--deep); border-top:1px solid rgba(201,168,76,0.18); }
.gpf-top {
  display:grid; grid-template-columns:1.4fr 1fr 1.2fr 1fr;
  gap:52px; padding:72px 7vw 52px; max-width:1400px; margin:0 auto;
}
.gpf-brand {
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem; font-weight:600; color:var(--white);
  letter-spacing:0.04em; margin-bottom:14px;
}
.gpf-brand span { color:var(--gold); }
.gpf-desc { font-size:0.8rem; color:rgba(255,255,255,0.52); line-height:1.75; margin-bottom:20px; }
.gpf-follow { font-size:0.68rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:10px; }
.gpf-socials { display:flex; gap:12px; }
.gpf-socials a {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.2); color:rgba(255,255,255,0.65);
  display:flex; align-items:center; justify-content:center;
  transition:border-color 0.2s, color 0.2s, background 0.2s;
}
.gpf-socials a:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,168,76,0.1); }
.gpf-links h4,.gpf-help h4,.gpf-col-sub h4 {
  font-family:'Inter',sans-serif;
  font-style:normal;
  font-size:0.95rem; font-weight:600; color:var(--white);
  margin-bottom:18px; letter-spacing:0.04em; text-transform:uppercase;
}
.gpf-links { display:flex; flex-direction:column; gap:10px; }
.gpf-links a { font-size:0.8rem; color:rgba(255,255,255,0.52); transition:color 0.2s; }
.gpf-links a:hover { color:var(--gold-light); }
.gpf-help { display:flex; flex-direction:column; gap:14px; }
.gpf-help div { display:flex; gap:10px; align-items:flex-start; font-size:0.8rem; color:rgba(255,255,255,0.52); line-height:1.6; }
.gpf-help a { color:rgba(255,255,255,0.52); }
.gpf-help a:hover { color:var(--gold-light); }
.gic { color:var(--gold); font-size:0.9rem; flex-shrink:0; margin-top:2px; }
.gpf-sub { display:flex; gap:0; }
.gpf-sub input {
  flex:1; padding:11px 14px; border-radius:4px 0 0 4px;
  border:1px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.07);
  color:var(--white); font-size:0.82rem; outline:none;
}
.gpf-sub input::placeholder { color:rgba(255,255,255,0.3); }
.gpf-sub input:focus { border-color:var(--gold); }
.gpf-sub button {
  padding:11px 16px; background:var(--gold); color:var(--deep);
  border:none; border-radius:0 4px 4px 0; cursor:pointer;
  transition:background 0.2s; display:flex; align-items:center;
}
.gpf-sub button:hover { background:var(--gold-light); }
.gpf-submsg { font-size:0.78rem; color:var(--gold); margin-top:8px; min-height:16px; }
.gpf-bottom {
  border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 7vw; display:flex; align-items:center; justify-content:center;
  gap:4px; flex-wrap:wrap; font-size:0.74rem; color:rgba(255,255,255,0.32);
  max-width:1400px; margin:0 auto;
}
.gpf-bottom a { color:rgba(255,255,255,0.45); }
.gpf-bottom a:hover { color:var(--gold-light); }

