/* ============================================================
   GreenFix Garden Services — Premium Redesign
   ============================================================ */

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

:root {
  --dark: #063b25;
  --deep: #0b5a35;
  --fresh: #73c82c;
  --fresh2: #5fb020;
  --light: #e9f7df;
  --white: #ffffff;
  --charcoal: #1f2a24;
  --grey: #6b7c6e;
  --r: 18px;
  --r2: 28px;
  --sh: 0 8px 40px rgba(6,59,37,0.13);
  --sh2: 0 20px 60px rgba(6,59,37,0.22);
  --tr: .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 76px;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--fresh); border-radius: 99px; }

/* ─── SCROLL PROGRESS ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--fresh), #a8e65a);
  transition: width .1s linear; width: 0%;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,200,44,.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0; transform: translate(-50%,-50%);
  transition: left .4s ease, top .4s ease;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 15px 32px; border-radius: 99px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .97rem;
  cursor: pointer; border: none; transition: all var(--tr);
  text-decoration: none; white-space: nowrap; position: relative;
  overflow: hidden; letter-spacing: .2px;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0);
  transition: background var(--tr);
}
.btn:hover::after { background: rgba(255,255,255,.12); }
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--fresh), var(--fresh2));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(115,200,44,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(115,200,44,.45);
}
.btn-wa {
  background: linear-gradient(135deg, #25d366, #1aab54);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}
.btn-outline {
  background: transparent; color: var(--deep);
  border: 2px solid var(--deep);
}
.btn-outline:hover { background: var(--light); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.15rem; width: 100%; max-width: 500px; }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(115,200,44,.15);
  transition: box-shadow var(--tr), background var(--tr);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 30px rgba(6,59,37,.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 12px rgba(115,200,44,.3); }
.logo-text {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--dark); display: flex; flex-direction: column; line-height: 1.05;
  letter-spacing: -.3px;
}
.logo-fix { color: var(--fresh); }
.logo-sub { font-size: .6rem; font-weight: 400; color: var(--grey); letter-spacing: .5px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 15px; border-radius: 10px; font-size: .88rem; font-weight: 500;
  color: var(--charcoal); transition: all .2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 15px; right: 15px;
  height: 2px; background: var(--fresh); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
.nav-link:hover { color: var(--dark); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; padding: 10px 22px; font-size: .9rem; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 10px;
  transition: background .2s;
}
.burger:hover { background: var(--light); }
.burger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; display: block; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; width: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: right center;
  transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(6,59,37,.96) 0%,
    rgba(6,59,37,.88) 40%,
    rgba(11,90,53,.70) 70%,
    rgba(6,59,37,.55) 100%);
}
/* animated mesh gradient on top */
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(115,200,44,.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 80% 30%, rgba(11,90,53,.12) 0%, transparent 60%);
  animation: meshMove 10s ease-in-out infinite alternate;
}
@keyframes meshMove {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.1) rotate(3deg); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2; padding: 100px 24px 120px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(115,200,44,.15);
  border: 1px solid rgba(115,200,44,.4);
  color: #b8f060; padding: 7px 18px; border-radius: 99px;
  font-size: .82rem; font-weight: 600; margin-bottom: 28px;
  backdrop-filter: blur(8px); letter-spacing: .3px;
  animation: fadeSlideDown .8s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--fresh); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white); font-weight: 900; margin-bottom: 24px;
  line-height: 1.08; letter-spacing: -.5px;
  animation: fadeSlideUp .9s .1s ease both;
}
.hero-title .green { color: var(--fresh); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem); color: rgba(255,255,255,.82);
  margin-bottom: 44px; max-width: 640px; line-height: 1.75;
  animation: fadeSlideUp .9s .2s ease both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
  animation: fadeSlideUp .9s .3s ease both;
}
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  animation: fadeSlideUp .9s .4s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .88rem;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--fresh); flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: 1px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(115,200,44,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid rgba(115,200,44,.2);
  padding: 0;
  overflow: hidden;
}
.trust-ticker {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.trust-ticker:hover { animation-play-state: paused; }
.trust-ticker-inner { display: flex; gap: 0; }
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  padding: 18px 40px; border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.trust-dot { width: 6px; height: 6px; background: var(--fresh); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); color: var(--deep);
  padding: 6px 18px; border-radius: 99px; font-size: .78rem;
  font-weight: 700; margin-bottom: 16px; letter-spacing: .8px; text-transform: uppercase;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--fresh); border-radius: 50%; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--dark);
  margin-bottom: 16px; letter-spacing: -.4px; font-weight: 800;
}
.section-title .line { display: block; }
.section-sub { font-size: 1.05rem; color: var(--grey); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ─── SERVICES ─── */
.services-section { background: linear-gradient(180deg, #f4fbee 0%, #fff 100%); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--r2);
  padding: 36px 32px; box-shadow: 0 2px 24px rgba(6,59,37,.07);
  transition: all var(--tr); display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(115,200,44,.08); position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--fresh), var(--deep));
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh2);
  border-color: rgba(115,200,44,.2);
}
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--light), #d0f0b0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
  transition: transform var(--tr);
}
.service-card:hover .service-icon-wrap { transform: rotate(-8deg) scale(1.1); }
.service-card h3 { font-size: 1.12rem; color: var(--dark); font-weight: 700; }
.service-card p { font-size: .93rem; color: var(--grey); line-height: 1.7; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--deep); font-weight: 600; font-size: .88rem;
  transition: gap var(--tr), color var(--tr);
}
.service-link:hover { gap: 10px; color: var(--fresh2); }
.service-link-arrow { transition: transform var(--tr); }
.service-link:hover .service-link-arrow { transform: translateX(4px); }

/* ─── GALLERY ─── */
.gallery-section { background: var(--white); }
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 99px;
  border: 2px solid #d8eec8; background: transparent;
  cursor: pointer; font-family: 'Poppins',sans-serif;
  font-weight: 600; font-size: .85rem; color: var(--deep);
  transition: all .25s; letter-spacing: .2px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark); color: white; border-color: var(--dark);
  box-shadow: 0 4px 16px rgba(6,59,37,.25);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--r2); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 20px rgba(6,59,37,.1);
  transition: all var(--tr);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--sh2); z-index: 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(6,59,37,.9) 100%);
  color: white; padding: 36px 20px 18px;
  font-size: .88rem; font-weight: 600; letter-spacing: .2px;
  transform: translateY(4px); transition: transform var(--tr);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(6,59,37,.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr);
  backdrop-filter: blur(0px); transition: all var(--tr);
}
.gallery-item:hover .gallery-overlay { opacity: 1; backdrop-filter: blur(1px); }
.gallery-overlay-inner {
  background: rgba(255,255,255,.95); color: var(--dark);
  padding: 10px 24px; border-radius: 99px; font-weight: 700; font-size: .9rem;
  transform: scale(.85); transition: transform var(--tr);
  display: flex; align-items: center; gap: 8px;
}
.gallery-item:hover .gallery-overlay-inner { transform: scale(1); }
.gallery-item.hidden { display: none; }

/* ─── HERO SOCIAL ─── */
.hero-social {
  display: flex; gap: 12px; margin-top: 28px;
  animation: fadeSlideUp .9s .5s ease both;
}
.hero-social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: white; display: flex; align-items: center; justify-content: center;
  transition: all var(--tr); backdrop-filter: blur(8px);
  text-decoration: none;
}
.hero-social-btn:hover {
  background: var(--fresh); border-color: var(--fresh);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 24px rgba(115,200,44,.4);
}

/* ─── PREMIUM ANIMATIONS ─── */
/* Floating orbs */
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(115,200,44,.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,90,53,.2) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

/* Shimmer on service cards */
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(115,200,44,.06) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position .8s ease;
  pointer-events: none;
}
.service-card:hover::before { background-position: -200% 0; }

/* Animated gradient border on review cards */
.review-card {
  position: relative;
}
.review-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(115,200,44,.15), transparent, rgba(11,90,53,.1));
  opacity: 0; transition: opacity var(--tr);
}
.review-card:hover::before { opacity: 1; }

/* Pulse rings on CTA buttons */
.btn-primary {
  position: relative; overflow: visible;
}
.btn-primary::after {
  content: ''; position: absolute;
  inset: -4px; border-radius: 999px;
  border: 2px solid rgba(115,200,44,.4);
  animation: ringPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Scroll reveal enhanced */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Animated gradient on stats band */
.stats-band {
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Float animation for why-cards icons */
.why-icon {
  animation: iconFloat 3s ease-in-out infinite;
  display: inline-block;
}
.why-card:nth-child(even) .why-icon { animation-delay: -1.5s; }
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* REVIEWS ─── */
.reviews-section { background: var(--light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: white;
  border-radius: var(--r2);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(6,59,37,.08);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.review-stars { color: #f9a825; font-size: 1.1rem; letter-spacing: 2px; }
.review-text {
  font-size: .97rem; line-height: 1.65; color: var(--charcoal);
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--deep); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--dark); font-size: .95rem; }
.review-location { font-size: .82rem; color: var(--grey); }
.reviews-summary {
  text-align: center;
  margin-top: 36px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 600; color: var(--dark); font-size: 1rem;
}
.reviews-summary .stars-big { color: #f9a825; font-size: 1.3rem; }

/* ─── QUICK QUOTE FORM ─── */
.quote-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
  color: white;
}
.quote-section .section-tag { background: rgba(255,255,255,.15); color: white; }
.quote-section .section-title { color: white; }
.quote-section .section-sub { color: rgba(255,255,255,.75); }
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.quote-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--fresh); }
.quote-info p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; }
.quote-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.quote-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.quote-bullets li::before {
  content: '✓';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--fresh); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; flex-shrink: 0;
}
.quote-form {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r2);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-family: inherit; font-size: .95rem;
  transition: border-color var(--tr), background var(--tr);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fresh);
  background: rgba(255,255,255,.15);
}
.form-group select option { background: var(--dark); color: white; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
}
.btn-wa {
  background: #25D366; color: white;
  border: none; border-radius: var(--r1); padding: 14px 20px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--tr); text-decoration: none;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-email {
  background: var(--fresh); color: var(--dark);
  border: none; border-radius: var(--r1); padding: 14px 20px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: all var(--tr);
}
.btn-email:hover { background: var(--fresh2); transform: translateY(-2px); }

/* ─── STATS BAND ─── */
.stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2373c82c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: var(--fresh); line-height: 1;
  margin-bottom: 8px; letter-spacing: -1px;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ─── WHY ─── */
.why-section { background: linear-gradient(180deg, #fff 0%, #f4fbee 100%); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--r2); padding: 32px;
  border: 1px solid rgba(115,200,44,.12);
  transition: all var(--tr); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(115,200,44,.1), transparent 70%);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); border-color: rgba(115,200,44,.25); }
.why-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--light), #c8f0a0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
  transition: transform var(--tr);
}
.why-card:hover .why-icon-wrap { transform: scale(1.12) rotate(-5deg); }
.why-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; font-weight: 700; }
.why-card p { font-size: .9rem; color: var(--grey); line-height: 1.7; }

/* ─── AREAS ─── */
.areas-section {
  background: linear-gradient(145deg, var(--dark) 0%, #0a4a2e 50%, var(--deep) 100%);
  position: relative; overflow: hidden;
}
.areas-section::before {
  content: '🌿'; font-size: 200px; position: absolute;
  right: -40px; top: -40px; opacity: .04; transform: rotate(20deg);
}
.areas-section .section-tag { background: rgba(115,200,44,.15); color: #b8f060; }
.areas-section .section-title { color: var(--white); }
.areas-section .section-sub { color: rgba(255,255,255,.7); }
.areas-wrapper { text-align: center; }
.areas-main { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.areas-nearby { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.area-badge {
  padding: 9px 20px; border-radius: 99px; font-weight: 500; font-size: .88rem;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15); transition: all .25s;
  cursor: default;
}
.area-badge:hover { background: rgba(255,255,255,.15); }
.area-badge.main {
  background: linear-gradient(135deg, var(--fresh), var(--fresh2));
  color: var(--dark); font-weight: 800; font-size: 1rem;
  padding: 12px 28px; box-shadow: 0 4px 20px rgba(115,200,44,.35);
}
.areas-note { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 28px; }

/* ─── HOW QUOTES ─── */
.how-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-bottom: 48px; }
.steps-grid::after {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fresh), var(--fresh), transparent);
  z-index: 0;
}
.step-card {
  background: var(--white); padding: 32px 24px;
  text-align: center; position: relative; z-index: 1;
  transition: transform var(--tr);
}
.step-card:hover { transform: translateY(-6px); }
.step-num-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(6,59,37,.3);
  position: relative; transition: transform var(--tr), box-shadow var(--tr);
}
.step-card:hover .step-num-wrap { transform: scale(1.1); box-shadow: 0 12px 32px rgba(6,59,37,.4); }
.step-num { color: var(--fresh); font-family: 'Poppins',sans-serif; font-weight: 900; font-size: 1.6rem; line-height: 1; }
.step-icon-sm { font-size: .9rem; margin-top: 2px; }
.step-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; font-weight: 700; }
.step-card p { font-size: .88rem; color: var(--grey); line-height: 1.7; }
.steps-note {
  background: linear-gradient(135deg, var(--light), #ddf5c0);
  border-left: 4px solid var(--fresh); padding: 16px 24px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .9rem; color: var(--charcoal); margin-bottom: 44px;
  box-shadow: 0 2px 16px rgba(115,200,44,.12);
}
.steps-cta { text-align: center; }

/* ─── FAQ ─── */
.faq-section { background: linear-gradient(180deg, #f4fbee, #fff); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 2px 16px rgba(6,59,37,.06);
  transition: box-shadow var(--tr);
}
.faq-item:hover { box-shadow: 0 4px 24px rgba(6,59,37,.12); }
.faq-q {
  width: 100%; text-align: left; background: var(--white);
  border: none; cursor: pointer; padding: 20px 24px;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .97rem;
  color: var(--dark); display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: all .25s;
}
.faq-q:hover { background: #fafff7; }
.faq-q.open { background: var(--dark); color: white; }
.faq-arrow-wrap {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(115,200,44,.15); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: transform .35s, background .25s;
}
.faq-q.open .faq-arrow-wrap { transform: rotate(45deg); background: rgba(255,255,255,.15); }
.faq-arrow-wrap svg { width: 14px; height: 14px; stroke: currentColor; }
.faq-a {
  display: none; padding: 20px 24px;
  font-size: .93rem; color: var(--grey); line-height: 1.8;
  background: white; border-top: 1px solid var(--light);
}
.faq-a.open { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); }
.contact-card {
  background: linear-gradient(145deg, var(--dark) 0%, var(--deep) 100%);
  border-radius: 32px; padding: 64px 56px;
  box-shadow: 0 24px 80px rgba(6,59,37,.3);
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,200,44,.15), transparent 70%);
}
.contact-card::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,200,44,.1), transparent 70%);
}
.contact-inner { position: relative; z-index: 1; }
.contact-eyebrow { color: var(--fresh); font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.contact-title { font-family: 'Poppins',sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.contact-sub { color: rgba(255,255,255,.65); margin-bottom: 40px; font-size: 1rem; }
.contact-main { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.contact-or { font-size: .88rem; color: rgba(255,255,255,.4); }
.contact-alts { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact-info {
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  text-align: left;
}
.contact-row { font-size: .9rem; color: rgba(255,255,255,.65); }
.contact-row a { color: var(--fresh); font-weight: 600; }
.contact-row strong { color: rgba(255,255,255,.9); }

/* ─── FOOTER ─── */
.footer {
  background: #021a10; color: rgba(255,255,255,.7); padding: 64px 0 36px;
  border-top: 1px solid rgba(115,200,44,.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 2px 12px rgba(115,200,44,.3); }
.footer-name { color: var(--fresh); font-size: 1.15rem; font-weight: 800; display: block; margin-bottom: 10px; font-family: 'Poppins',sans-serif; }
.footer-brand p { font-size: .88rem; line-height: 1.75; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-contact strong { color: rgba(255,255,255,.9); margin-bottom: 6px; display: block; font-family: 'Poppins',sans-serif; font-size: .95rem; }
.footer-links a, .footer-contact a { font-size: .88rem; opacity: .7; transition: opacity .2s, color .2s; }
.footer-links a:hover, .footer-contact a:hover { opacity: 1; color: var(--fresh); }
.footer-areas { font-size: .82rem; opacity: .5; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  text-align: center; font-size: .82rem; opacity: .5;
  display: flex; flex-direction: column; gap: 6px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.95); display: none;
  align-items: center; justify-content: center; flex-direction: column;
  padding: 24px; backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox img { max-height: 80vh; max-width: 90vw; border-radius: 16px; object-fit: contain; box-shadow: 0 0 80px rgba(0,0,0,.8); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; transition: all .2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); transform: scale(1.1); }
#lightboxCaption { color: rgba(255,255,255,.6); margin-top: 16px; font-size: .9rem; letter-spacing: .3px; }

/* ─── MOBILE STICKY BAR ─── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(115,200,44,.2);
  padding: 10px 16px; gap: 10px;
  box-shadow: 0 -4px 24px rgba(6,59,37,.12);
}
.mobile-bar-btn {
  flex: 1; padding: 14px 10px; border-radius: 14px; font-weight: 700;
  font-size: .97rem; text-align: center; display: flex;
  align-items: center; justify-content: center; gap: 7px;
  transition: all .2s; letter-spacing: .2px;
}
.mobile-bar-btn:active { transform: scale(.97); }
.mobile-bar-btn.call {
  background: linear-gradient(135deg, var(--dark), var(--deep));
  color: white; box-shadow: 0 4px 16px rgba(6,59,37,.25);
}
.mobile-bar-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #1aab54);
  color: white; box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

/* ─── FLOATING QUOTE BTN (desktop) ─── */
.floating-cta {
  position: fixed; bottom: 36px; right: 36px; z-index: 150;
  display: none; flex-direction: column; gap: 10px; align-items: flex-end;
}
.floating-cta.visible { display: flex; }
.floating-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 99px; font-weight: 700; font-size: .9rem;
  box-shadow: var(--sh2); transition: all .25s; cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
}
.floating-btn.wa { background: #25d366; color: white; }
.floating-btn.call { background: var(--dark); color: white; }
.floating-btn:hover { transform: translateX(-4px) scale(1.03); }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

[data-reveal] {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none; position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98); flex-direction: column;
    align-items: flex-start; padding: 28px 20px; gap: 4px;
    z-index: 99; overflow-y: auto; backdrop-filter: blur(20px);
  }
  .nav.open { display: flex; }
  .nav-link { font-size: 1.15rem; padding: 14px 16px; width: 100%; border-radius: 12px; }
  .nav-cta { width: 100%; margin-left: 0; margin-top: 14px; text-align: center; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .gallery-item { aspect-ratio: 1 / 1; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .floating-cta { display: none !important; }
  .hero-content { padding: 80px 24px 100px; }
  .contact-card { padding: 40px 24px; border-radius: 24px; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-alts { flex-direction: column; width: 100%; }
  .contact-alts .btn { width: 100%; }
  .btn-xl { max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
  .trust-strip { padding: 0; }
  .section { padding: 72px 0; }
  .quote-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 95vh; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .areas-main { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }
  .gallery-grid { gap: 12px; }
}
