/* ==========================================================================
   VASUDHA VERMICOMPOST — Master Stylesheet & Design System
   High-End Agricultural & Organic Enterprise Branding
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Colors */
  --green-deep: #051a0e;
  --green-footer: #082614;
  --green-dark: #0d3820;
  --green-primary: #15803d;
  --green-mid: #16a34a;
  --green-fresh: #22c55e;
  --green-bright: #4ade80;
  --green-light: #86efac;
  --green-soft: #f0fdf4;
  --green-mint: #dcfce7;

  /* Earth / Gold / Amber Accents */
  --gold-primary: #f59e0b;
  --gold-deep: #d97706;
  --gold-soft: #fef3c7;
  --earth-warm: #78350f;
  --danger-color: #ef4444;
  --danger-soft: #fef2f2;
  --danger-border: #fca5a5;

  /* Slate & Text */
  --dark-slate: #0b1320;
  --text-title: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-footer-heading: #ffffff;
  --text-footer-body: #e2e8f0;
  --text-footer-link: #cbd5e1;

  /* Surfaces & Backgrounds */
  --bg-page: #f8faf9;
  --bg-white: #ffffff;
  --bg-surface: #f1f6f2;
  --bg-surface-alt: #eaf3ec;
  --border-subtle: #e2e8f0;
  --border-green: rgba(22, 163, 74, 0.2);
  --border-focus: #22c55e;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(11, 40, 23, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(21, 128, 61, 0.22), 0 10px 20px -5px rgba(0, 0, 0, 0.06);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-nav: rgba(255, 255, 255, 0.95);

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--green-fresh);
  color: #ffffff;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
}

/* ==========================================================================
   TYPOGRAPHY & SECTION HEADERS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.highlight {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  background: var(--green-mint);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.section-header h2 {
  margin-bottom: 14px;
  color: var(--green-deep);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary, .btn-whatsapp, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-fresh) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(21, 128, 61, 0.4);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--green-deep);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pulse-dot, .cta-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-fresh);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseAnimation 1.8s infinite;
}

.cta-pulse-dot {
  background-color: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes pulseLight {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal, .reveal-left, .reveal-right, .benefit-stagger-item {
  opacity: 0;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .benefit-stagger-item.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   TOP BAR (ANNOUNCEMENT / HELPLINE STRIP)
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #072213 0%, #0d3b20 50%, #072213 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-badge {
  font-weight: 600;
  color: var(--green-bright);
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: var(--green-bright);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ==========================================================================
   NAVBAR (STICKY FROSTED GLASS)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 61, 35, 0.08);
  transition: all var(--transition-normal);
  padding: 14px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(11, 40, 23, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22, 163, 74, 0.3);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.nav-links li a:hover {
  color: var(--green-primary);
  background: var(--green-soft);
}

.nav-links li a.active {
  color: var(--green-deep);
  background: var(--green-mint);
  font-weight: 800;
  border: 1.5px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.15);
}

.nav-links li a.active::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-green);
  transition: all var(--transition-fast);
}

.nav-phone-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: scale(1.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #15803d 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--green-deep);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 22px;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-normal);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.15rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-actions .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 100px 0 85px;
  background: 
    radial-gradient(ellipse 65% 55% at 85% 25%, rgba(74, 222, 128, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 10% 75%, rgba(34, 197, 94, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #f3faf5 0%, #eef8f2 60%, #ffffff 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(21, 128, 61, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.25);
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 22px;
}

.hero-title-accent {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 55%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 34px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-highlights {
  display: flex;
  gap: 16px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.hero-highlight-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(8, 40, 23, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  flex-direction: column;
  min-width: 140px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.hero-highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  opacity: 0.85;
}

.hero-highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(8, 40, 23, 0.12);
  border-color: var(--green-mid);
}

.hero-highlight-item strong {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1.1;
}

.hero-highlight-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: buttonShine 4s infinite ease-in-out;
}

@keyframes buttonShine {
  0%, 75% { left: -60%; }
  100% { left: 140%; }
}

/* Hero Visual & Badges */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 30px 70px -15px rgba(8, 40, 23, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 0 2px rgba(34, 197, 94, 0.15);
  background: #ffffff;
  padding: 14px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-img-wrapper:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 
    0 40px 90px -15px rgba(8, 40, 23, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 0 0 2px rgba(34, 197, 94, 0.3);
}

.hero-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.hero-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.45) 0%, rgba(34, 197, 94, 0.15) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-float-badge {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 36px rgba(8, 40, 23, 0.14), 0 0 0 1.5px rgba(34, 197, 94, 0.22);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.hero-float-badge:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 45px rgba(8, 40, 23, 0.22), 0 0 0 2px var(--green-mid);
}

.hero-float-badge .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mint), #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.badge-text-group strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green-deep);
}

.badge-text-group span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-float-badge:nth-of-type(1) {
  top: -24px;
  left: -35px;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.hero-float-badge:nth-of-type(2) {
  bottom: -28px;
  right: -35px;
  animation: floatSlow 4s ease-in-out infinite alternate;
  animation-delay: 1.3s;
}

/* 3-Badges Layout (Index Page): Top-Left, Top-Right, Bottom-Center */
.has-3-badges .hero-float-badge:nth-of-type(2),
.hero-visual:has(.hero-float-badge:nth-of-type(3)) .hero-float-badge:nth-of-type(2) {
  top: -24px;
  bottom: auto;
  right: -35px;
  animation: floatSlow 4s ease-in-out infinite alternate;
  animation-delay: 1.3s;
}

.has-3-badges .hero-float-badge:nth-of-type(3),
.hero-visual:has(.hero-float-badge:nth-of-type(3)) .hero-float-badge:nth-of-type(3) {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatSlowCenter 4s ease-in-out infinite alternate;
  animation-delay: 2.2s;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatSlowCenter {
  0% { transform: translateX(-50%) translateY(0px); }
  100% { transform: translateX(-50%) translateY(-10px); }
}

.leaf-particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.65;
  z-index: 3;
  pointer-events: none;
  animation: leafDrift 6s infinite linear;
}

.leaf-particle:nth-of-type(1) { top: 5%; right: 10%; animation-duration: 7s; }
.leaf-particle:nth-of-type(2) { bottom: 15%; left: 5%; animation-duration: 9s; animation-delay: 2s; }
.leaf-particle:nth-of-type(3) { top: 40%; left: -10px; animation-duration: 8s; animation-delay: 1s; }
.leaf-particle:nth-of-type(4) { bottom: 30%; right: -15px; animation-duration: 6s; animation-delay: 3s; }

@keyframes leafDrift {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.85; }
  100% { transform: translateY(-30px) rotate(45deg); opacity: 0.3; }
}

@media (max-width: 1200px) {
  .hero-float-badge:nth-of-type(1) { left: -15px; }
  .has-3-badges .hero-float-badge:nth-of-type(2),
  .hero-float-badge:nth-of-type(2) { right: -15px; }
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-badge, .hero-buttons, .hero-highlights {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    margin: 30px auto 20px;
    max-width: 440px;
  }

  .hero-float-badge:nth-of-type(1) { top: -16px; left: -10px; }
  .has-3-badges .hero-float-badge:nth-of-type(2),
  .hero-float-badge:nth-of-type(2) { top: -16px; right: -10px; }
  .hero-float-badge:nth-of-type(3) { bottom: -20px; }
}

@media (max-width: 576px) {
  .hero-float-badge {
    padding: 7px 12px;
    gap: 8px;
  }
  .hero-float-badge .badge-icon {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }
  .badge-text-group strong {
    font-size: 0.78rem;
  }
  .badge-text-group span {
    font-size: 0.65rem;
  }
  .hero-float-badge:nth-of-type(1) { top: -12px; left: -5px; }
  .has-3-badges .hero-float-badge:nth-of-type(2),
  .hero-float-badge:nth-of-type(2) { top: -12px; right: -5px; }
  .hero-float-badge:nth-of-type(3) { bottom: -15px; }
}

/* ==========================================================================
   MARQUEE TICKER SECTION
   ========================================================================== */
.marquee-section {
  background: var(--green-deep);
  color: #ffffff;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
}

.marquee-item .m-icon {
  font-size: 1.15rem;
}

.marquee-divider {
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  opacity: 0.7;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SOIL COMPARISON SECTION
   ========================================================================== */
.soil-comparison-section {
  padding: 90px 0;
  background-color: var(--bg-page);
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.comparison-card.bad {
  border-color: var(--danger-border);
  background: linear-gradient(180deg, #ffffff 0%, var(--danger-soft) 100%);
}

.comparison-card.good {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%);
}

.comparison-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.comparison-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.comparison-card.bad h3 { color: #991b1b; }
.comparison-card.good h3 { color: var(--green-dark); }

.comparison-card p {
  color: var(--text-body);
  margin-bottom: 28px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.comparison-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.comp-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comp-metric span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-title);
}

.comp-metric-bar {
  width: 100%;
  height: 9px;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.comparison-card.bad .comp-metric-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f87171);
  border-radius: var(--radius-pill);
}

.comparison-card.good .comp-metric-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
  border-radius: var(--radius-pill);
}

.comparison-tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.comparison-card.bad .comparison-tag {
  background: #fee2e2;
  color: #991b1b;
}

.comparison-card.good .comparison-tag {
  background: var(--green-mint);
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   PRODUCT SPOTLIGHT WITH HOTSPOTS & QUICK ESTIMATOR
   ========================================================================== */
.product-spotlight-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #ffffff 100%);
}

.spotlight-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.spotlight-image-wrap {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.spotlight-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--green-fresh);
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  animation: hotspotPulse 2s infinite;
  z-index: 10;
}

@keyframes hotspotPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--green-deep);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 20;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--green-deep) transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.spotlight-info .spotlight-eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.spotlight-info h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--green-deep);
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.spotlight-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  background: var(--bg-surface);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.spotlight-feature .sf-icon {
  font-size: 1.25rem;
}

.qty-selector {
  background: #ffffff;
  border: 1.5px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.qty-selector h4 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.qty-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.qty-btn {
  background: var(--bg-surface);
  color: var(--text-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

.qty-btn:hover {
  background: var(--green-mint);
  border-color: var(--green-bright);
}

.qty-btn.active {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

.qty-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green-soft);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.qty-result-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.qty-result-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-deep);
}

@media (max-width: 992px) {
  .spotlight-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .qty-options {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DOSAGE & ROI CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
  background-color: var(--bg-page);
}

.calc-card {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
}

.calc-field select, .calc-field input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-title);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.calc-field select:focus, .calc-field input:focus {
  border-color: var(--green-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.calc-result-item {
  background: linear-gradient(180deg, var(--green-soft) 0%, #ffffff 100%);
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.calc-result-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.calc-result-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}

.calc-result-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.calc-cta {
  text-align: center;
}

.calc-cta .btn-whatsapp {
  width: 100%;
  max-width: 480px;
  padding: 16px 28px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .calc-card {
    padding: 24px 18px;
  }
  .calc-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc-results {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   CROP IMPACT TABS
   ========================================================================== */
.crop-tabs-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-surface) 100%);
}

.crop-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.crop-tab-btn {
  background: #ffffff;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.crop-tab-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.crop-tab-btn.active {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-dark);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.3);
}

.crop-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.crop-tab-content.active {
  display: block;
}

.crop-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.crop-benefit-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.crop-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.3);
}

.crop-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.crop-benefit-card h4 {
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.crop-benefit-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .crop-tab-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   FACILITY & PRODUCTION TIMELINE
   ========================================================================== */
.facility-section {
  padding: 90px 0;
  background-color: var(--bg-page);
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 70px;
}

.facility-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.facility-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.facility-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-card:hover .facility-card-img img {
  transform: scale(1.08);
}

.facility-card-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 40, 23, 0.6) 100%);
}

.facility-card-body {
  padding: 28px;
}

.facility-card-body h3 {
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.facility-card-body p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.facility-card-body .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-primary);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.timeline-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.timeline-header h2 {
  color: var(--green-deep);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-step {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all var(--transition-normal);
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-bright);
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.3);
}

.timeline-step h4 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* --- Video Showcase --- */
.video-showcase {
  margin-top: 60px;
}

.video-showcase .section-header {
  margin-bottom: 36px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-card video {
  width: 100%;
  display: block;
  background: #000;
}

.video-card-body {
  padding: 24px;
}

.video-card-body h3 {
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.video-card-body p {
  color: var(--text-body);
  font-size: 0.93rem;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Horizontal Featured Video Card --- */
.video-card-horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  max-width: 960px;
  margin: 0 auto;
  transition: all var(--transition-normal);
}

.video-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(8, 40, 23, 0.12);
}

.video-card-horizontal .video-media-side {
  flex: 0 0 44%;
  max-width: 44%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.video-card-horizontal .video-media-side video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.video-card-horizontal .video-content-side {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-card-horizontal .video-content-side .tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.video-card-horizontal .video-content-side h3 {
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

.video-card-horizontal .video-content-side p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.video-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.video-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-heading);
  font-weight: 600;
}

.video-feature-item .feat-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.video-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.video-actions .btn-outline {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1.5px solid rgba(21, 128, 61, 0.35);
  font-weight: 700;
}

.video-actions .btn-outline:hover {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.25);
}

@media (max-width: 860px) {
  .video-card-horizontal {
    flex-direction: column;
    max-width: 580px;
  }

  .video-card-horizontal .video-media-side {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .video-card-horizontal .video-media-side video {
    max-height: 380px;
    min-height: 260px;
  }

  .video-card-horizontal .video-content-side {
    padding: 28px 24px;
  }
}

@media (max-width: 576px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.3);
}

.testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-body);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background-color: var(--bg-page);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.open {
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: transparent;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  gap: 16px;
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   HOME FINAL CTA SECTION (CENTERED & BALANCED)
   ========================================================================== */
.home-cta-section {
  padding: 80px 0 90px;
  background-color: var(--bg-page);
}

.home-cta-card {
  background: linear-gradient(135deg, #072514 0%, #0f3d23 50%, #15803d 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.home-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-cta-card h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  margin: 12px 0 14px;
  text-align: center;
}

.home-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.home-cta-card .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-bright);
  border-color: rgba(255, 255, 255, 0.25);
  margin: 0 auto 12px;
}

.home-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .home-cta-card {
    padding: 36px 20px;
    gap: 22px;
  }
}

/* ==========================================================================
   PRODUCTS PAGE SPECIFIC STYLES
   ========================================================================== */
.products-section {
  padding: 80px 0 100px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 70px;
  align-items: flex-start;
}

.product-frame {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.product-frame-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pan-x, 50%) var(--pan-y, 50%), rgba(34, 197, 94, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.product-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: transform 0.2s ease-out;
}

.product-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-details .product-eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.product-details h3 {
  font-size: 2.2rem;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.product-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.product-spec-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-row strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-primary);
}

.product-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.secondary-link {
  font-weight: 700;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.secondary-link:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

.spec-accordion-shell {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
}

.spec-accordion {
  width: 100%;
  padding: 18px 24px;
  background: var(--bg-surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
}

.spec-accordion:hover {
  background: var(--green-soft);
}

.spec-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.spec-panel-inner {
  padding: 20px 24px;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-table th, .tech-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.tech-table th {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.tech-table tr:hover td {
  background: #fafdfa;
}

.suitability-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.suitability-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.suitability-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md);
}

.suitability-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.suitability-card h4 {
  font-size: 1rem;
  color: var(--green-deep);
}

@media (max-width: 992px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-frame {
    position: static;
  }
  .suitability-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .suitability-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BENEFITS & SCIENCE PAGE SPECIFIC STYLES
   ========================================================================== */
.benefits-science-section {
  padding: 80px 0 100px;
}

.benefits-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.benefits-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  background: var(--green-mint);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.benefits-hero h2 {
  color: var(--green-deep);
  margin-bottom: 14px;
}

.benefit-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.3);
}

.benefit-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.benefit-icon {
  font-size: 2.2rem;
}

.benefit-index {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(21, 128, 61, 0.18);
}

.benefit-card h3 {
  font-size: 1.45rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.65;
}

.benefit-note {
  margin-top: auto;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.benefit-summary-block {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.benefit-summary-header {
  text-align: center;
  margin-bottom: 36px;
}

.benefit-summary-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-bright);
  letter-spacing: 0.08em;
}

.benefit-summary-header h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-top: 8px;
}

.benefit-micro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.micro-benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.micro-benefit-check {
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .benefit-pillar-grid {
    grid-template-columns: 1fr;
  }
  .benefit-micro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .benefit-micro-grid {
    grid-template-columns: 1fr;
  }
  .benefit-summary-block {
    padding: 32px 20px;
  }
}

/* ==========================================================================
   QUALITY & INFRA PAGE SPECIFIC STYLES
   ========================================================================== */
.trust-section, .infra-section, .truth-section {
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.3);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.infra-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.infra-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.infra-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.infra-card:hover .infra-card-img img {
  transform: scale(1.08);
}

.infra-card-body {
  padding: 26px;
}

.infra-card-body h3 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.infra-card-body p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.truth-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.truth-card.bad {
  border-color: var(--danger-border);
  background: linear-gradient(180deg, #ffffff 0%, var(--danger-soft) 100%);
}

.truth-card.good {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%);
}

.truth-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.truth-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.truth-card.bad h3 { color: #991b1b; }
.truth-card.good h3 { color: var(--green-dark); }

.truth-card p {
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.truth-tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.truth-card.bad .truth-tag {
  background: #fee2e2;
  color: #991b1b;
}

.truth-card.good .truth-tag {
  background: var(--green-mint);
  color: var(--green-dark);
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .truth-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT & DEALERSHIP PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-section {
  padding: 80px 0 100px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-bottom: 70px;
}

.contact-form-panel {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.contact-kicker {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-form-panel h1 {
  font-size: 2.2rem;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.floating-field {
  position: relative;
}

.floating-field input, .floating-field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-title);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.floating-field label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  transition: all var(--transition-fast);
  background: transparent;
}

.floating-field input:focus, .floating-field select:focus {
  border-color: var(--green-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field select:focus + label,
.floating-field select.has-value + label {
  top: 0;
  left: 12px;
  transform: translateY(-50%) scale(0.85);
  background: #ffffff;
  padding: 0 6px;
  color: var(--green-primary);
  font-weight: 700;
}

.contact-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #15803d 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.contact-submit:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d5029 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}

.button-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rippleAnimation 0.65s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to { transform: scale(3.5); opacity: 0; }
}

.contact-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-details-panel {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-details-panel h2 {
  color: #ffffff;
  font-size: 1.9rem;
}

.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.info-block h3 {
  color: var(--green-bright);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-block p {
  color: #f1f5f9;
  font-size: 0.96rem;
  line-height: 1.6;
}

.call-cards {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.call-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.call-card:hover {
  background: #ffffff;
  color: var(--green-deep);
  transform: translateY(-2px);
}

.call-card span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.call-card small {
  font-size: 0.75rem;
  opacity: 0.85;
}

.contact-badge-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.contact-badge {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-bright);
}

.map-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.map-card-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.map-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 0.08em;
}

.map-card-head h2 {
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-top: 6px;
}

.map-frame {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .contact-form-panel {
    padding: 28px 20px;
  }
  .contact-details-panel {
    padding: 32px 20px;
  }
  .map-card {
    padding: 24px 16px;
  }
  .map-frame {
    height: 320px;
  }
}

/* ==========================================================================
   FOOTER (HIGH CONTRAST, CRYSTAL CLEAR & GENEROUS BOTTOM CLEARANCE)
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #092e18 0%, #05190e 100%);
  color: var(--text-footer-body);
  position: relative;
  margin-top: auto;
  width: 100%;
  clear: both;
  border-top: 4px solid var(--green-fresh);
}

/* Centralized Pre-Banner CTA */
.footer-pre-banner {
  background: linear-gradient(135deg, #0d4323 0%, #15803d 50%, #0a301a 100%);
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.25);
}

.footer-pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.footer-pre-text {
  text-align: center;
}

.footer-pre-text h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.3rem);
  margin-bottom: 12px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
}

.footer-pre-text p {
  color: #f0fdf4;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer-pre-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 70px 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-brand-title h3 {
  font-size: 1.45rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-weight: 900;
}

.footer-brand-title span {
  font-size: 0.76rem;
  color: var(--green-bright);
  text-transform: uppercase;
  font-weight: 700;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-trust-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-chip {
  background: rgba(34, 197, 94, 0.18);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-bright);
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.footer-heading {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--green-bright);
  border-radius: 2px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.45;
  transition: all var(--transition-fast);
}

.footer-nav-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-nav-text {
  flex: 1;
}

.footer-nav-list li a:hover {
  color: var(--green-bright);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: #f1f5f9;
  line-height: 1.55;
}

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--green-bright);
}

.footer-contact-content {
  flex: 1;
}

.footer-contact-item strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.footer-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.footer-contact-phones a {
  color: var(--green-bright);
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
}

.footer-contact-phones a:hover {
  text-decoration: underline;
}

/* Footer Bottom Bar with High Contrast & Generous Bottom Room */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 32px 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.92rem;
  color: #f8fafc;
  font-weight: 600;
}

.footer-creator-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f1f5f9;
  font-weight: 600;
}

.creator-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.5);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.creator-btn:hover {
  background: var(--green-fresh);
  color: var(--green-deep);
  border-color: var(--green-fresh);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.footer-bottom-badge {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green-bright);
  background: rgba(34, 197, 94, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 100px;
  }
}

/* ==========================================================================
   FLOATING ACTION DOCK (CONVENIENT, UNOBTRUSIVE WITH OFFICIAL ICONS)
   ========================================================================== */
.floating-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dock-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: all var(--transition-fast);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.dock-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
}

.dock-btn.phone {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-fresh) 100%);
  color: #ffffff;
}

.dock-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.whatsapp-svg, .phone-svg {
  display: block;
}

.whatsapp-btn-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.dock-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--green-deep);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: all var(--transition-fast);
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 576px) {
  .floating-dock {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .dock-btn {
    width: 50px;
    height: 50px;
  }
}
