/* ============================================================
   SWIFTSOIL GARDENING — Main Stylesheet
   Design: Warm, organic, nature-forward (floralgardeninginc inspired)
   Fonts: Playfair Display (display) + Lato (body)
   Colors: Forest green, warm cream, earth brown, soft sage
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&family=Dancing+Script:wght@500;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --green:        #2d6a4f;
  --green-dark:   #1b4332;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --cream:        #fefae0;
  --cream-dark:   #f5f0e8;
  --earth:        #7c5c3a;
  --earth-light:  #b08968;
  --sage:         #a8c5a0;
  --sage-dark:    #6b9e72;
  --white:        #ffffff;
  --off-white:    #faf9f6;
  --dark:         #1a1a1a;
  --text:         #3d3d3d;
  --text-light:   #6b6b6b;
  --border:       rgba(45,106,79,0.15);
  --shadow:       0 4px 30px rgba(27,67,50,0.1);
  --shadow-lg:    0 16px 60px rgba(27,67,50,0.15);

  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-script:    'Dancing Script', cursive;
  --ff-body:      'Lato', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --dur:          0.6s;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Utilities ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.tag {
  display: inline-block;
  font-family: var(--ff-script);
  font-size: 1.3rem;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 14px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  margin: 18px 0;
  border-radius: 2px;
}

.divider.center { margin: 18px auto; }

/* ─── Scroll Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,106,79,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ─── Leaf Decoration ───────────────────────────────────── */
.leaf-deco {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  font-size: 12rem;
  line-height: 1;
  color: var(--green);
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(27,67,50,0.1);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-script {
  font-family: var(--ff-script);
  font-size: 1.75rem;
  color: var(--white);
  transition: color 0.3s;
}

.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  margin-top: -2px;
}

.navbar.scrolled .nav-logo-script { color: var(--green-dark); }
.navbar.scrolled .nav-logo-sub { color: var(--text-light); }

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

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }

.nav-cta-btn {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.3s !important;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--green-dark) !important; transform: translateY(-2px) !important; }

.navbar.scrolled .nav-cta-btn { color: var(--white) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .nav-burger span { background: var(--green-dark); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.mobile-nav a:hover { opacity: 1; color: var(--green-light); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-nav-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.lawnlove.com/assets/blocks/farmer-hands.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s linear;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,67,50,0.82) 0%,
    rgba(27,67,50,0.55) 50%,
    rgba(27,67,50,0.3) 100%
  );
}

/* Animated leaf particles */
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  animation: leafFall linear infinite;
}

@keyframes leafFall {
  0%   { opacity: 0; transform: translateY(-60px) rotate(0deg); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(105vh) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 100px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-script {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--green-light);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 750px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s var(--ease-out) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--green-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.9s var(--ease-out) forwards;
}

.hero-badge {
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: rotateBadge 20s linear infinite;
  z-index: 2;
}
.hero-badge-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.hero-badge-text { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); margin-top: 4px; }

@keyframes rotateBadge { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot { 0%,100%{top:6px;opacity:1} 80%{top:16px;opacity:0} }

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

/* ─── Hero Stats Bar ─────────────────────────────────────── */
.hero-stats {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--green-pale); }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   INTRO / ABOUT STRIP
═══════════════════════════════════════════════════════════ */
.intro-strip {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-images {
  position: relative;
  height: 480px;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.intro-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.intro-stamp {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(45,106,79,0.4);
  animation: pulse 3s ease infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 8px 30px rgba(45,106,79,0.4)} 50%{box-shadow:0 8px 50px rgba(45,106,79,0.6)} }

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27,67,50,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,67,50,0.14);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 26px 24px 28px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.service-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND (Green)
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '🌿';
  position: absolute;
  font-size: 22rem;
  opacity: 0.04;
  left: -5%;
  top: -40%;
  pointer-events: none;
}
.cta-band::after {
  content: '🌿';
  position: absolute;
  font-size: 22rem;
  opacity: 0.04;
  right: -5%;
  bottom: -40%;
  pointer-events: none;
  transform: rotate(180deg);
}
.cta-band-script {
  font-family: var(--ff-script);
  font-size: 1.4rem;
  color: var(--green-light);
  margin-bottom: 12px;
}
.cta-band-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.25;
}
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--cream);
}
.pricing-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.08);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27,67,50,0.14);
}
.price-card.featured {
  background: var(--green-dark);
  transform: translateY(-12px);
  box-shadow: 0 24px 70px rgba(27,67,50,0.25);
  border: none;
}
.price-card.featured:hover { transform: translateY(-18px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
}
.price-tier {
  font-family: var(--ff-script);
  font-size: 1.2rem;
  color: var(--green-mid);
  margin-bottom: 10px;
}
.price-card.featured .price-tier { color: var(--green-light); }

.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.price-dollar { font-family: var(--ff-body); font-size: 1.3rem; font-weight: 700; color: var(--green); margin-top: 10px; }
.price-num { font-family: var(--ff-display); font-size: 3.8rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.price-per { font-size: 0.85rem; color: var(--text-light); align-self: flex-end; margin-bottom: 12px; }
.price-card.featured .price-dollar { color: var(--green-light); }
.price-card.featured .price-num { color: var(--white); }
.price-card.featured .price-per { color: rgba(255,255,255,0.5); }

.price-desc { font-size: 0.87rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }

.price-divider { height: 1px; background: rgba(45,106,79,0.1); margin-bottom: 24px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }

.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.price-card.featured .price-feature { color: rgba(255,255,255,0.85); }
.price-check {
  width: 20px;
  height: 20px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--green);
}
.price-card.featured .price-check { background: rgba(116,198,157,0.2); color: var(--green-light); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}
.testi-top { text-align: center; max-width: 600px; margin: 0 auto 60px; }

.testi-carousel { position: relative; }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--ease);
}
.testi-card {
  min-width: calc(33.333% - 19px);
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.07);
  flex-shrink: 0;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--green-pale);
  position: absolute;
  top: 28px;
  left: 28px;
}
.testi-stars { color: #f4b942; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-size: 0.95rem; line-height: 1.75; color: var(--text); font-style: italic; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.testi-name { font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem; color: var(--green-dark); }
.testi-loc { font-size: 0.78rem; color: var(--text-light); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,67,50,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  font-size: 1rem;
  color: var(--green);
}
.testi-btn:hover { background: var(--green); color: var(--white); transform: scale(1.1); }

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active { background: var(--green); transform: scale(1.3); }

/* ═══════════════════════════════════════════════════════════
   FULL CTA WITH IMAGE
═══════════════════════════════════════════════════════════ */
.cta-split {
  padding: 100px 0;
  background: var(--cream);
}
.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cta-split-img {
  height: 460px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.cta-split-content .tag { display: block; }
.cta-split-content .section-heading { margin-bottom: 16px; }
.cta-split-btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   BLOG PREVIEW
═══════════════════════════════════════════════════════════ */
.blog-preview { padding: 100px 0; background: var(--off-white); }
.blog-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27,67,50,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(27,67,50,0.12); }
.blog-card-img-wrap { overflow: hidden; height: 220px; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img { transform: scale(1.07); }
.blog-card-body { padding: 26px 24px 28px; }
.blog-card-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-mid); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.blog-card-date::before { content:''; width: 20px; height: 2px; background: var(--green-light); }
.blog-card-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.blog-card-link { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-card:hover .blog-card-link { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-script { font-family: var(--ff-script); font-size: 2rem; color: var(--white); display: block; margin-bottom: 14px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--green-light); }
.footer-col-title { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--green-light); }

/* ═══════════════════════════════════════════════════════════
   MODAL POPUP
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,67,50,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  background: var(--green-dark);
  padding: 36px 40px 28px;
  position: relative;
  overflow: hidden;
}
.modal-header::after {
  content: '🌿';
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 8rem;
  opacity: 0.08;
  pointer-events: none;
}
.modal-tag { font-family: var(--ff-script); font-size: 1.1rem; color: var(--green-light); margin-bottom: 6px; }
.modal-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s;
  border: none;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body { padding: 32px 40px 40px; }

/* ─── Forms ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-mid); background: var(--white); }
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 100px; }

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.5;
}
.form-check input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.form-check a { color: var(--green-mid); text-decoration: underline; }

.val-msg { display: none; font-size: 0.75rem; color: #e53e3e; margin-top: 4px; }
.form-success-msg {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success-msg .success-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.form-success-msg h3 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--green-dark); margin-bottom: 8px; }
.form-success-msg p { font-size: 0.9rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-dark);
  color: var(--white);
  z-index: 8888;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  border-top: 3px solid var(--green-light);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.87rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 260px; line-height: 1.6; }
.cookie-text a { color: var(--green-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-reject {
  padding: 10px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  transition: all 0.3s;
}
.cookie-reject:hover { border-color: var(--white); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--green-dark);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb-sep { opacity: 0.4; }
.page-hero-tag { font-family: var(--ff-script); font-size: 1.3rem; color: var(--green-light); margin-bottom: 12px; }
.page-hero-title { font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin-top: 14px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-section { padding: 100px 0; }
.about-section:nth-child(even) { background: var(--cream); }
.about-section:nth-child(odd) { background: var(--off-white); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.mv-card { padding: 60px 50px; background: var(--white); }
.mv-card:first-child { background: var(--green-dark); }
.mv-card:first-child .mv-icon { color: var(--green-light); }
.mv-card:first-child .mv-title { color: var(--white); }
.mv-card:first-child .mv-text { color: rgba(255,255,255,0.65); }
.mv-icon { font-size: 2.5rem; margin-bottom: 20px; }
.mv-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.mv-text { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.why-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(27,67,50,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(27,67,50,0.12); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.why-text { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   BLOG & BLOG POST
═══════════════════════════════════════════════════════════ */
.blog-section { padding: 80px 0 100px; background: var(--off-white); }
.blog-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }

.blog-post-section { padding: 80px 0 100px; background: var(--off-white); }
.blog-post-inner { max-width: 800px; margin: 0 auto; }
.blog-post-cover { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; margin-bottom: 44px; box-shadow: var(--shadow-lg); }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-post-date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-mid); font-weight: 700; }
.blog-post-title { font-family: var(--ff-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--green-dark); line-height: 1.2; margin-bottom: 36px; }
.blog-post-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.blog-post-content h2 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin: 36px 0 14px; }
.blog-post-content h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin: 26px 0 10px; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.blog-post-content ul li { margin-bottom: 7px; }
.blog-post-content strong { color: var(--green-dark); }
.blog-not-found { text-align: center; padding: 80px 0; }
.blog-not-found h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--green-dark); margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0 100px; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; }
.contact-info-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.contact-info-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 46px; height: 46px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-mid); font-weight: 700; margin-bottom: 3px; }
.contact-detail-value { font-size: 0.9rem; color: var(--text); }
.contact-form-box { background: var(--white); border-radius: 16px; padding: 50px; box-shadow: var(--shadow); }
.contact-form-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════ */
.legal-section { padding: 80px 0 120px; background: var(--off-white); }
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-updated { font-size: 0.82rem; color: var(--text-light); font-style: italic; margin-bottom: 40px; }
.legal-content { font-size: 0.95rem; line-height: 1.85; color: var(--text); }
.legal-content h2 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin: 44px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green-pale); }
.legal-content h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin: 26px 0 10px; }
.legal-content p { margin-bottom: 18px; }
.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.legal-content ul li { margin-bottom: 7px; }
.legal-content a { color: var(--green-mid); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .intro-inner { grid-template-columns: 1fr; gap: 50px; }
  .intro-images { height: 340px; }
  .cta-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-split-img { height: 340px; width: 100%; }
  .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-card { min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-badge { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 100%; }
  .contact-form-box { padding: 32px 24px; }
  .mv-card { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-header { padding: 28px 24px 20px; }
  .modal-body { padding: 24px 24px 32px; }
  .blog-post-cover { height: 260px; }
  .intro-images { height: 280px; }
  .hero-stats .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .cta-band-btns { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .cookie-banner { flex-direction: column; }
}
