/* ============================================
   HUNLEY LAWN AND LANDSCAPE — MAIN STYLESHEET
   ============================================ */

/* --- Google Fonts loaded via <link> in HTML for non-blocking render --- */

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Enhanced Hunley Brand Palette */
  --green-dark:    #1B4332;   /* warmer dark green for sections */
  --green-mid:     #2D5A3D;   /* deeper green for accents */
  --green-primary: #009348;   /* brand primary green (official logo color) */
  --green-light:   #4ADE80;   /* brighter green for hovers */
  --green-pale:    #E8F5E8;   /* very pale green for subtle backgrounds */
  --gold:          #8DC63F;   /* brand lime (official logo accent) */
  --gold-light:    #A4D45A;   /* lighter lime for hover states */
  --gold-pale:     #F0F8E0;   /* very pale lime for backgrounds */
  --neutral-dark:  #2D3748;   /* warmer dark gray instead of black */
  --neutral-mid:   #4A5568;   /* medium gray */
  --neutral-light: #F7FAFC;   /* off-white */
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --accent-soft:   #DCEBC2;

  /* Enhanced gradients */
  --gradient-hero: linear-gradient(135deg, rgba(11, 37, 24, 0.90) 0%, rgba(28, 72, 47, 0.80) 100%);
  --gradient-cta: linear-gradient(135deg, #0c3820 0%, #1a5432 55%, #0e6637 100%);
  --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--green-pale) 100%);

  /* Typography — matched to logo font style */
  --font-heading: 'Oswald', sans-serif;           /* Bold condensed — matches HUNLEY lettering */
  --font-body:    'Barlow', system-ui, sans-serif; /* Industrial clean — same design DNA */
  --font-display: 'Barlow Condensed', sans-serif; /* Extra-tight for hero/impact text */

  /* Spacing */
  --section-pad: clamp(56px, 7vw, 96px);
  --container:   1240px;
  --gap:         clamp(18px, 2.5vw, 32px);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  background: var(--neutral-light);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography Scale --- */
/* Oswald is condensed — compensate with slightly larger sizes and tight tracking */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.85rem, 5.8vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }
p  { color: var(--neutral-mid); line-height: 1.78; font-weight: 400; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(141, 198, 63, 0.24);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 58, 42, 0.22);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  /* Always a visible green — never transparent, never white */
  background: linear-gradient(180deg, rgba(0, 80, 40, 0.95) 0%, rgba(0, 80, 40, 0.82) 100%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.45s ease,
    height 0.35s ease;
}

.nav.scrolled {
  /* Solid brand green on scroll - locked to ensure no white state */
  background: rgba(0, 108, 54, 0.99) !important;
  box-shadow: 0 6px 32px rgba(0, 60, 30, 0.32);
  border-bottom: 1px solid rgba(141, 198, 63, 0.28);
  height: 76px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  height: 100%;
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 3vw, 48px);
  transition: height 0.35s ease;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base logo styles */
.nav-logo-horizontal {
  height: clamp(52px, 5vw, 72px);
  max-width: 230px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: opacity 0.35s ease, height 0.35s ease, filter 0.35s ease;
}

.nav.scrolled .nav-logo-horizontal {
  height: clamp(48px, 4.5vw, 62px);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) brightness(1.05);
}

.nav-logo-dark {
  opacity: 1;
  position: relative;
}

/* Secondary logo slot retained for shared markup, hidden in current theme */
.nav-logo-light {
  display: none;
  opacity: 0;
}

.nav.scrolled .nav-logo-dark  { display: block; opacity: 1; }
.nav.scrolled .nav-logo-light { display: none; opacity: 0; }

/* Fallback icon-only SVG (still used in some contexts) */
.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 38px);
  margin: 0 clamp(8px, 1.5vw, 24px);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a {
  color: rgba(255,255,255,0.88);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.75);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav.scrolled .nav-links a::after {
  background: var(--gold-light);
}

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

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

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

/* Phone button - secondary action with refined premium styling */
.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  min-height: 44px;
  background: rgba(141, 198, 63, 0.12);
  border: 1.5px solid rgba(141, 198, 63, 0.3);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.nav-phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(141, 198, 63, 0.15) 0%, rgba(141, 198, 63, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-phone svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-phone:hover {
  background: rgba(141, 198, 63, 0.18);
  border-color: rgba(141, 198, 63, 0.5);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(141, 198, 63, 0.25);
}

.nav-phone:hover::before {
  opacity: 1;
}

.nav-phone:hover svg {
  transform: scale(1.1) rotate(15deg);
}

.nav-phone:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(141, 198, 63, 0.15);
}

.nav.scrolled .nav-phone {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.nav.scrolled .nav-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* "Get Free Estimate" nav CTA button - primary action */
.nav-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  min-height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b534 100%);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 16px rgba(141, 198, 63, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-estimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-estimate:hover {
  background: linear-gradient(135deg, #d4b534 0%, #c4a524 100%);
  border-color: #c4a524;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(141, 198, 63, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-estimate:hover::before {
  left: 100%;
}

.nav-estimate:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(141, 198, 63, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav.scrolled .nav-estimate {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b534 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav.scrolled .nav-estimate:hover {
  background: linear-gradient(135deg, #d4b534 0%, #c4a524 100%);
  border-color: #c4a524;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition), var(--transition);
  border-radius: 2px;
}

.nav.scrolled .nav-toggle {
  background: rgba(255,255,255,0.15);
}

.nav.scrolled .nav-toggle span {
  background: var(--white);
}

/* On scrolled green bg, keep link color bright white */
.nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  min-height: calc(100vh - var(--nav-h));
  background: var(--green-dark);
  padding: 22px 24px 28px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a:focus {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}
.nav-mobile .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 22px;
  width: 100%;
  padding: 16px 24px;
  border-bottom: none;
  box-sizing: border-box;
}

.nav-mobile .btn:hover,
.nav-mobile .btn:focus {
  background: var(--gold-light);
  color: var(--green-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 12px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Overlay: enhanced gradient with texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.92;
}

/* Add subtle texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(220, 235, 194, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 78% 70%, rgba(220, 235, 194, 0.06) 0%, transparent 36%);
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 235, 194, 0.12);
  border: 1px solid rgba(220, 235, 194, 0.28);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}

.hero-badge span { font-size: 0.6rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 12ch;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
  max-width: 600px;
  line-height: 1.72;
}

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

/* Bigger primary CTA in hero */
.hero-cta-main {
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 6px 24px rgba(141, 198, 63, 0.4);
}

.hero-cta-call {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* Trust signals below hero CTAs */
.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72) !important;
  letter-spacing: 0.04em;
  margin-bottom: clamp(60px, 10vw, 100px);
}

.hero-trust-line svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(19, 44, 32, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(220, 235, 194, 0.18);
}

.hero-stats-inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-light { background: var(--neutral-light); }
.section-dark  { background: linear-gradient(135deg, #0c3018 0%, #173d26 100%); }
.section-green { background: var(--green-pale); }

.section:not(.section-light):not(.ba-section):not(.cta-banner)::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-pale) 50%, transparent 100%);
  transform: translateX(-50%);
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: 760px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  max-width: 600px;
  margin-top: 14px;
  font-size: 1.02rem;
}

.page-shell-soft {
  position: relative;
}

.page-shell-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(220, 235, 194, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(141, 198, 63, 0.05), transparent 22%);
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}

.services-grid > .service-card {
  flex: 1 1 calc(33.333% - var(--gap));
  min-width: 280px;
  max-width: calc(33.333% - var(--gap) * 2 / 3);
}

/* When there are exactly 5 cards: 3 on top row, 2 centered below */
.services-grid > .service-card:nth-child(n+4):nth-last-child(-n+2) {
  flex: 1 1 calc(40% - var(--gap));
  max-width: calc(40% - var(--gap) / 2);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(27, 67, 50, 0.12);
}

.service-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: var(--green-pale);
}

/* Placeholder for service images */
.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), #d4e8d8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

.service-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.service-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  color: var(--neutral-dark);
}

.service-card p {
  font-size: 0.94rem;
  flex: 1;
  margin-bottom: 22px;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 10px; }

/* ============================================
   BEFORE & AFTER SLIDER
   ============================================ */
.ba-section {
  background: var(--green-dark);
  padding: var(--section-pad) 0;
}

.ba-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.ba-slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(220, 235, 194, 0.35);
}

.ba-slider-wrap:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  background-image: url('../images/photo-03.jpg');
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  background-image: url('../images/mulch-02.jpg');
  z-index: 0;
}

/* Labels */
.ba-label {
  position: absolute;
  top: 20px;
  z-index: 3;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

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

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

/* Divider handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 4;
  transform: translateX(-50%);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.ba-handle::after {
  content: '⟨ ⟩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--green-dark);
  font-weight: 700;
  z-index: 5;
  pointer-events: none;
}

.ba-content {
  color: var(--white);
  padding: clamp(12px, 3vw, 40px);
}

.ba-content .section-label { color: var(--gold-light); }
.ba-content h2 { color: var(--white); margin-bottom: 16px; }
.ba-content p  { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-right: 12px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-item h4 { margin-bottom: 6px; color: var(--neutral-dark); }
.feature-item p  { font-size: 0.94rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--gap);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--neutral-mid);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), #c5deca);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name  { font-weight: 600; font-size: 0.9rem; }
.author-loc   { font-size: 0.8rem; color: var(--neutral-mid); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-cta);
  padding: clamp(56px, 7vw, 88px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.cta-banner .section-label { color: var(--gold-light); }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  min-height: 44px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-mid);
  transition: var(--transition);
  background: var(--white);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green-pale);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,45,30,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.1); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
}

.about-hero h1 { color: var(--white); }
.about-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--green-pale);
  display: block;
}

/* Placeholder for about image */
.about-img-placeholder {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-pale), #c5deca);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-accent-box .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-accent-box .lbl {
  font-size: 0.75rem;
  opacity: 0.85;
}

.values-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-check {
  width: 24px;
  height: 24px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================
   CONTACT / FORMS
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-info h3 {
  color: var(--neutral-dark);
  margin-bottom: 8px;
}

.contact-info p { font-size: 0.95rem; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.contact-detail-label { font-weight: 600; font-size: 0.85rem; color: var(--neutral-dark); }
.contact-detail-value { font-size: 0.9rem; color: var(--neutral-mid); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-link:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: var(--neutral-light);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
}

.form-tab {
  flex: 1;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--neutral-mid);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.form-tab.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.form-panel { display: none; }
.form-panel.active { display: block; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--neutral-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74, 140, 92, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 58, 42, 0.25);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(135deg, #0b2518 0%, #124028 45%, #1c5535 100%);
  position: relative;
  overflow: hidden;
}

/* Top green accent stripe */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary) 0%, var(--gold) 50%, var(--green-primary) 100%);
  opacity: 0.7;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.07) 0%, transparent 65%);
}

.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 560px; margin-top: 12px; font-size: 1.1rem; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 620px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #0e2a1c 0%, #091510 100%);
  color: rgba(255,255,255,0.9);
  padding: 64px 0 0;
  position: relative;
}

/* Larger logo in footer context */
.footer .nav-logo-horizontal {
  height: clamp(40px, 3.5vw, 50px);
  max-width: 180px;
}

/* Footer top accent border - aligned to the very top edge */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--green-primary) 70%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name  { font-size: 1.15rem; }

.footer-tagline {
  font-size: 0.85rem;
  margin: 12px 0 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.74);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(18, 42, 31, 0.96);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 24px rgba(0,0,0,0.16);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure elements are always visible if JS hasn't fired after 2s */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll { animation: none; }
}

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

/* ============================================
   RESPONSIVE GRID UTILITIES
   Replaces inline grid styles so media queries
   can actually override them
   ============================================ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet optimizations - buttons visible but compact */
@media (max-width: 1024px) {
  :root { --section-pad: clamp(44px, 6vw, 80px); }

  .nav-cta {
    gap: 10px;
  }

  .nav-phone {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .nav-estimate {
    padding: 10px 24px;
    font-size: 0.7rem;
  }

  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ba-container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-grid { grid-template-columns: 1fr; }
  .ba-content { padding: clamp(20px, 4vw, 40px) 0; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(40px, 8vw, 72px); }

  .nav.scrolled {
    height: 72px;
  }

  .nav-links,
  .nav-cta .btn,
  .nav-phone,
  .nav-estimate { display: none; }

  .nav-toggle { display: flex; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); align-items: center; justify-content: center; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: clamp(24px, 5vw, 40px);
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 16px;
  }

  .hero-trust-line {
    margin-bottom: clamp(100px, 18vw, 140px);
    font-size: 0.72rem;
    gap: 4px;
  }

  .hero-stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 14px; }

  .form-row { grid-template-columns: 1fr; }

  .form-tabs {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .cta-banner-actions { flex-direction: column; align-items: stretch; }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-mobile-cta { display: flex; }

  body { padding-bottom: 84px; }

  .about-accent-box { display: none; }

  .team-grid { grid-template-columns: 1fr; text-align: center; }
  .team-grid > div:last-child { padding-top: 0; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-cta-main, .hero-cta-call { padding: 15px 24px; font-size: 1rem; }
  .service-card-img { height: 200px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-filters {
    gap: 10px;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
  }

  .container { padding-left: 18px; padding-right: 18px; }
  .nav-inner { padding-left: 14px; padding-right: 14px; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-dark); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--green-pale), #d4e8d8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px dashed var(--border);
  margin-top: 32px;
  flex-direction: column;
  gap: 8px;
}

/* Booking embed placeholder */
.booking-placeholder {
  background: var(--neutral-light);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  color: var(--neutral-mid);
  font-size: 0.9rem;
}

.booking-placeholder strong { display: block; font-size: 1rem; margin-bottom: 8px; color: var(--neutral-dark); }

/* ============================================
   VISUAL ELEVATION — Distinctive details that
   separate this from generic lawn sites
   ============================================ */

/* --- Section label with lime accent underline --- */
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  margin-top: 8px;
  border-radius: 2px;
  opacity: 0.5;
}

.section-header.centered .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero: lime accent word + entrance animations --- */
.hero-accent {
  color: var(--gold);    /* lime, not italic */
  font-style: normal;    /* override any inherited italic */
}

/* Staggered reveal animation for hero text */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-badge    { animation: heroFadeUp 0.7s ease both; animation-delay: 0.15s; }
.hero h1       { animation: heroFadeUp 0.7s ease both; animation-delay: 0.3s;  }
.hero > .container > .hero-content > p
               { animation: heroFadeUp 0.7s ease both; animation-delay: 0.45s; }
.hero-actions  { animation: heroFadeUp 0.7s ease both; animation-delay: 0.6s;  }

/* Lime vertical accent stripe on right of hero */
.hero::after { display: none; }

/* Lime dividers between stats */
.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* --- Service cards: lime left-border reveal on hover --- */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(27, 67, 50, 0.7);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card:hover::before { transform: scaleY(1); }

/* Image zoom on service card hover */
.service-card-img {
  transition: transform 0.55s ease !important;
  will-change: transform;
}

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

/* Service icon highlight on hover */
.service-card:hover .service-icon {
  background: var(--accent-soft);
  color: var(--green-dark);
  transition: background 0.3s ease, color 0.3s ease;
}

/* --- Features: large decorative step numbers --- */
.features-grid {
  position: relative;
  counter-reset: feature-counter;
}

.feature-item {
  counter-increment: feature-counter;
  position: relative;
}

.feature-item::after {
  content: "0" counter(feature-counter);
  position: absolute;
  top: -2px;
  right: 0;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(27, 67, 50, 0.08);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
  overflow: hidden;
}

.feature-item > * { position: relative; z-index: 1; }

/* --- Gallery: brighter overlay with lime accent --- */
.gallery-item-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 92, 46, 0.88) 0%,
    rgba(0, 92, 46, 0.2)  60%,
    transparent 100%
  ) !important;
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* Lime corner accent on gallery items */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 3;
}

.gallery-item:hover::after { width: 100%; }

/* --- Testimonial cards: larger dramatic quote mark --- */
.testimonial-card::before {
  font-size: 5.5rem !important;
  top: 14px !important;
  right: 20px !important;
  color: rgba(27, 67, 50, 0.08) !important;
  font-family: Georgia, serif !important;
  line-height: 1 !important;
}

.testimonial-card {
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.testimonial-card:hover {
  border-top-color: rgba(27, 67, 50, 0.35) !important;
  transform: translateY(-4px);
}

/* --- CTA Banner: diagonal clip for visual break --- */
.cta-banner {
  clip-path: none;
  padding-top: clamp(60px, 8vw, 92px) !important;
  padding-bottom: clamp(60px, 8vw, 92px) !important;
  margin: 0;
}

/* Add a lime glow in the top-right of CTA banner */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(220, 235, 194, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Nav: gold accent border when scrolled --- */
.nav.scrolled {
  border-bottom: 1px solid rgba(141, 198, 63, 0.25) !important;
}

/* Nav links: clean Barlow weight */
.nav-links a {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* On scrolled green bg, underline accent is gold */
.nav.scrolled .nav-links a::after {
  background: var(--gold) !important;
}

/* --- Before/After handle: bigger, brand-styled --- */
.ba-handle::before {
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18), var(--shadow-md) !important;
}

.ba-handle::after {
  color: var(--green-dark) !important;
  font-weight: 800 !important;
  font-size: 0.65rem !important;
}

/* --- Footer social links: proper icon boxes --- */
.footer-social a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  width: 40px;
  height: 40px;
}

/* --- Section dividers: subtle lime gradient bottom border --- */
.section:not(.section-dark):not(.ba-section):not(.cta-banner) {
  border-bottom: 1px solid var(--border);
}

/* Remove double border on last section before footer */
footer + .section, .cta-banner + footer { border: none; }

/* --- Filter buttons: Oswald font --- */
.filter-btn {
  font-family: var(--font-body) !important;
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.8rem !important;
}

/* --- Service card link: bolder treatment --- */
.service-card-link {
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--green-mid) !important;
}

.service-card:hover .service-card-link { color: var(--green-dark) !important; gap: 12px !important; }

/* --- About page accent box: bolder --- */
.about-accent-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%) !important;
}

/* --- Page hero: add decorative right glow --- */
.page-hero::after {
  background: radial-gradient(circle, rgba(220,235,194,0.1) 0%, transparent 70%) !important;
}

/* --- Form focus: lime glow --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.18) !important;
}

/* --- Active form tab: lime indicator --- */
.form-tab.active {
  border-bottom: 2px solid rgba(27, 67, 50, 0.28);
}

/* ============================================
   MOBILE RESPONSIVE FIXES FOR ELEVATION
   ============================================ */
@media (max-width: 768px) {
  .hero::after { display: none; }
  .cta-banner  { clip-path: none; padding-top: clamp(52px, 8vw, 80px) !important; padding-bottom: clamp(52px, 8vw, 80px) !important; }
  .feature-item::after { font-size: 2.2rem; right: 0; top: 2px; }
}

/* ============================================
   ACCESSIBILITY & FINAL TOUCHES
   ============================================ */

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.nav-links a:focus-visible,
.service-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary { background: var(--green-dark); color: var(--white); }
  .section { background: var(--white); }
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--neutral-dark);
  min-height: 64px;
  transition: background var(--transition);
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

details[open] > .faq-q { background: var(--green-pale); }
details[open] > .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 4px 24px 20px;
  border-top: 1px solid var(--border);
}

.faq-a p { font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
  .faq-q { padding: 16px 20px; font-size: 0.9rem; }
  .faq-a { padding: 4px 20px 16px; }
}
