@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Brand Colors from Logo */
  --primary-color: #006837;      /* Dark Forest Green */
  --accent-color: #70b043;       /* Natural Leaf Green */
  --soil-gold: #cca245;          /* Soil Arc Gold */
  --soil-gold-dark: #b1852c;
  --dark-charcoal: #1e2521;      /* Deep Forest Charcoal */
  --light-sand: #fdfcf9;         /* Very light organic cream */
  --warm-sand-bg: #f5f2e9;       /* Light organic warm background */
  --text-primary: #2d3831;       /* Very dark green-tinted gray */
  --text-secondary: #5a6b60;     /* Muted organic green-gray */
  --white: #ffffff;
  
  /* Shadow Systems */
  --shadow-light: 0 4px 20px rgba(0, 104, 55, 0.04);
  --shadow-medium: 0 10px 30px rgba(0, 104, 55, 0.08);
  --shadow-premium: 0 20px 50px rgba(0, 104, 55, 0.12);
  --shadow-glow: 0 0 25px rgba(112, 176, 67, 0.15);
  
  /* Transitions & Radii */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 28px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.625;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

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

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

.section-padding {
  padding: 120px 0;
}

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

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* Subtle Interactive Animations Keyframes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes float-reverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes gold-glow-pulse {
  0% { box-shadow: 0 10px 30px rgba(0, 104, 55, 0.06); }
  50% { box-shadow: 0 15px 35px rgba(204, 162, 69, 0.25); }
  100% { box-shadow: 0 10px 30px rgba(0, 104, 55, 0.06); }
}

@keyframes pulse-light {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* Staggered Scroll Reveal Classes */
.reveal-fade, .reveal-slide-up, .reveal-slide-left, .reveal-slide-right, .reveal-scale {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-slide-up { transform: translateY(50px); }
.reveal-slide-left { transform: translateX(-50px); }
.reveal-slide-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

.reveal-fade.active, .reveal-slide-up.active, .reveal-slide-left.active, .reveal-slide-right.active, .reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

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

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(112, 176, 67, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid rgba(0, 104, 55, 0.2);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0, 104, 55, 0.06);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 104, 55, 0.08);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 104, 55, 0.04);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 24px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 44px;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 24px;
  height: 24px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 4px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

@media (max-width: 992px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    z-index: 1050;
  }
  .nav-links.active { right: 0; }
  .nav-cta { display: none; }
}

/* Modern Animated Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(112, 176, 67, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(204, 162, 69, 0.05) 0%, transparent 40%),
              linear-gradient(180deg, var(--light-sand) 0%, var(--white) 100%);
  padding: 140px 0 80px 0;
  overflow: hidden;
}

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

.hero-content {
  z-index: 10;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 span.accent-highlight {
  color: var(--accent-color);
  background: linear-gradient(120deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 44px;
  color: var(--text-secondary);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(0, 104, 55, 0.08);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 800;
}

.stat-item p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* Webflow-style Layered Parallax Hero Image */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img-box {
  width: 85%;
  height: 85%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  animation: float 8s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Layer 2 (Circular Glass card) */
.hero-float-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float-reverse 9s ease-in-out infinite;
  z-index: 20;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-float-text h4 {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.hero-float-text p {
  font-size: 12px;
  font-weight: 500;
}

/* Floating Layer 3 (Circular Image card) */
.hero-float-circle {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--white);
  animation: float 7s ease-in-out infinite;
  z-index: 20;
}

.hero-float-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-content {
    text-align: center;
  }
  .hero h1 { font-size: 44px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual-wrapper {
    height: 420px;
  }
  .hero-float-badge {
    left: 20px;
  }
  .hero-float-circle {
    right: 20px;
    width: 110px;
    height: 110px;
  }
}

/* Section Styling Helpers */
.section-title-wrapper {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px auto;
}

.section-title-wrapper h2 {
  font-size: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-title-wrapper p {
  font-size: 17px;
  color: var(--text-secondary);
}

/* The Problem Section */
.problem-card {
  background: var(--light-sand);
  padding: 44px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 104, 55, 0.03);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--soil-gold);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(112, 176, 67, 0.1);
}

.problem-card:hover::before {
  background-color: var(--accent-color);
  width: 6px;
}

.problem-icon {
  font-size: 34px;
  margin-bottom: 24px;
  color: var(--soil-gold);
}

.problem-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--dark-charcoal);
}

/* Why Soil Health Matters */
.story-layout {
  display: flex;
  align-items: center;
  gap: 70px;
}

.story-content { flex: 1.1; }
.story-image {
  flex: 0.9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0,104,55,0.02);
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 28px;
  position: relative;
  padding-left: 28px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .story-layout {
    flex-direction: column;
    gap: 48px;
  }
}

/* Our Solution Section */
.bg-warm {
  background-color: var(--light-sand);
}

.solution-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 104, 55, 0.02);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(112, 176, 67, 0.08);
}

.solution-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: rgba(112, 176, 67, 0.12);
  margin-bottom: 18px;
  line-height: 1;
  transition: var(--transition-smooth);
}

.solution-card:hover .solution-number {
  color: rgba(112, 176, 67, 0.3);
  transform: scale(1.05);
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* Interactive Before/After Soil */
.before-after-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255,255,255,0.2);
}

.before-after-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-overlay-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--white);
}

.before-after-overlay-after img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: var(--primary-color);
  border: 3px solid var(--white);
  border-radius: 50%;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 104, 55, 0.2);
  z-index: 100;
  pointer-events: none;
  animation: pulse-light 2.5s infinite;
}

.slider-handle::before, .slider-handle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.slider-handle::before {
  left: 10px;
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--white) transparent transparent;
}

.slider-handle::after {
  right: 10px;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--white);
}

.before-label, .after-label {
  position: absolute;
  bottom: 24px;
  padding: 8px 18px;
  background-color: rgba(30, 37, 33, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  z-index: 10;
  pointer-events: none;
}

.before-label { right: 24px; }
.after-label { left: 24px; }

/* Comparison Grid Layout */
.comparison-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 44px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 104, 55, 0.04);
  transition: var(--transition-smooth);
}

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

.comparison-card.highlight {
  border: 2px solid var(--primary-color);
  background: linear-gradient(180deg, var(--white) 0%, rgba(112, 176, 67, 0.03) 100%);
  position: relative;
  animation: gold-glow-pulse 6s infinite;
}

.comparison-card.highlight::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 104, 55, 0.2);
}

.comparison-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.comparison-sub {
  font-size: 14px;
  color: var(--soil-gold-dark);
  font-weight: 600;
  margin-bottom: 28px;
  display: block;
}

.comparison-features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 104, 55, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.comparison-features li:last-child {
  border-bottom: none;
}

.comparison-features li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  font-size: 16px;
}

.comparison-card:not(.highlight) .comparison-features li::before {
  color: var(--text-secondary);
}

/* Scientific Approach */
.sci-card {
  background: var(--light-sand);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0,104,55,0.03);
}

.sci-text { flex: 1.4; }
.sci-image {
  flex: 0.9;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  animation: float 7.5s ease-in-out infinite;
}

.sci-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.sci-text p {
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .sci-card {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
  }
}

/* Crop Card Layout */
.crop-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 104, 55, 0.03);
  transition: var(--transition-smooth);
}

.crop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.crop-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.crop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.crop-card:hover .crop-img img {
  transform: scale(1.06);
}

.crop-info {
  padding: 28px;
}

.crop-info h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

/* Timelines / Applications */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(112,176,67,0.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -41px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(112, 176, 67, 0.25);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.timeline-item h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 104, 55, 0.03);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(112,176,67,0.08);
}

.testimonial-rating {
  color: var(--soil-gold);
  margin-bottom: 18px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 28px;
  position: relative;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-avatar {
  transform: rotate(5deg) scale(1.05);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name h4 {
  font-size: 16px;
  color: var(--dark-charcoal);
  margin-bottom: 2px;
}

.testimonial-name p {
  font-size: 13px;
}

/* Collapse Accordion (FAQs) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 104, 55, 0.05);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.faq-header:hover {
  background-color: var(--light-sand);
}

.faq-icon {
  font-size: 18px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}

.faq-body p {
  padding-bottom: 24px;
  font-size: 15px;
}

.faq-item.active {
  border-color: rgba(112, 176, 67, 0.25);
  box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-body {
  max-height: 250px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-color);
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 104, 55, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(112, 176, 67, 0.08);
}

.blog-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background-color: var(--warm-sand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-info {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.blog-meta span.lang-badge {
  background-color: rgba(0, 104, 55, 0.06);
  color: var(--primary-color);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.blog-info h3 {
  font-size: 19px;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--dark-charcoal);
  flex-grow: 1;
}

.blog-info h3 a:hover {
  color: var(--primary-color);
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 18px;
}

.blog-readmore:hover {
  color: var(--primary-color);
}

/* Exit Intent / Newsletter Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 33, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.exit-popup.show {
  display: flex;
  opacity: 1;
}

.exit-popup-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-premium);
  position: relative;
  text-align: center;
}

.exit-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.exit-close:hover {
  color: var(--primary-color);
}

.exit-popup h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.exit-popup p {
  margin-bottom: 32px;
}

/* Floating & Sticky WhatsApp Conversion */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
}

.whatsapp-circle {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

.whatsapp-circle:hover {
  transform: scale(1.08);
  background-color: #128c7e;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-whatsapp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.sticky-whatsapp-bar p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 84px;
    right: 20px;
  }
  .sticky-whatsapp-bar {
    display: flex;
  }
}

/* Footer Section */
footer {
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 90px 0 40px 0;
  border-top: 4px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.footer-col h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col p {
  color: #a4b3a9;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a4b3a9;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #a4b3a9;
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7d8c82;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Contact Page Specific styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contact-info-card {
  background-color: var(--light-sand);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 104, 55, 0.04);
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method:last-child { margin-bottom: 0; }

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 104, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-method:hover .contact-method-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.contact-method-text h4 {
  font-size: 16px;
  color: var(--dark-charcoal);
  margin-bottom: 4px;
}

.contact-method-text p { font-size: 14px; }

/* Google Map Wrapper */
.map-wrapper {
  height: 260px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0,104,55,0.05);
}

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

/* Modern Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0, 104, 55, 0.04);
}

.form-group {
  margin-bottom: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  border: 1px solid rgba(0, 104, 55, 0.12);
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(112, 176, 67, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Honeypot anti-spam styling */
.wpforms-field-honeypot {
  position: absolute !important;
  overflow: hidden !important;
  display: inline !important;
  height: 1px !important;
  width: 1px !important;
  z-index: -1000 !important;
  padding: 0 !important;
  opacity: 0 !important;
}

/* Page Header */
.page-header-sec {
  background: linear-gradient(135deg, rgba(0, 104, 55, 0.03) 0%, rgba(112, 176, 67, 0.03) 100%), var(--light-sand);
  padding: 150px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 104, 55, 0.04);
}

.page-header-sec h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-list span {
  color: var(--text-secondary);
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
}

/* Product Detail CSS */
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

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

.product-gallery {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--light-sand);
  border: 1px solid rgba(0,104,55,0.02);
  animation: float 8s ease-in-out infinite;
}

.product-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 104, 55, 0.15);
}

.product-detail-info h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.product-rating {
  color: var(--soil-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.product-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 28px;
}

.product-highlights {
  margin-bottom: 36px;
}

.product-highlights li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.product-highlights li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Category Filters for Blogs */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--light-sand);
  border: 1px solid rgba(0, 104, 55, 0.06);
  padding: 12px 28px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

/* Single Blog Post Readability Style */
.post-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta-top {
  display: flex;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
  font-weight: 500;
}

.post-featured-img {
  width: 100%;
  height: 420px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 44px;
}

.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content h2 {
  font-size: 28px;
  margin: 44px 0 20px 0;
  color: var(--dark-charcoal);
}

.post-content h3 {
  font-size: 22px;
  margin: 32px 0 16px 0;
  color: var(--dark-charcoal);
}

.post-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.post-content ul, .post-content ol {
  margin-bottom: 28px;
  padding-left: 28px;
}

.post-content li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: disc;
}

.post-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 18px 28px;
  background-color: var(--light-sand);
  font-style: italic;
  font-size: 19px;
  color: var(--primary-color);
  margin: 36px 0;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Map Icon Placeholders */
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉"; }
.icon-location::before { content: "📍"; }
