/* =============================================================
   BW LAWN SERVICES — REFINED ORGANIC STYLESHEET
   Palette: #1B4D2E (dark forest green), #2E7D32 (medium green),
            #4CAF50 (accent green), #F5F1EB (cream), #2D2D2D (dark text),
            #5C4033 (earth brown accent)
   Fonts: DM Serif Display (headings) + DM Sans (body)
============================================================= */

/* ── CSS Variables ── */
:root {
  --green-deep:   #1B4D2E;
  --green-mid:    #2E7D32;
  --green-accent: #4CAF50;
  --green-light:  #A8D5A2;
  --cream:        #F5F1EB;
  --cream-dark:   #EDE8DF;
  --brown:        #5C4033;
  --brown-light:  #8B6B5E;
  --text-dark:    #2D2D2D;
  --text-mid:     #4A4A4A;
  --text-light:   #6B6B6B;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(27,77,46,0.10);
  --shadow-md:    0 8px 32px rgba(27,77,46,0.14);
  --shadow-lg:    0 20px 60px rgba(27,77,46,0.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ── Section Padding ── */
.section-pad { padding: 96px 0; }

/* ── Typography Helpers ── */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section-label.light { color: var(--green-light); }

.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-heading.light { color: var(--cream); }
.section-heading em { color: var(--green-mid); font-style: italic; }
.section-heading.light em { color: var(--green-light); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.section-sub.light { color: rgba(245,241,235,0.75); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(27,77,46,0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,77,46,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-light {
  background: var(--cream);
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary.btn-light:hover {
  background: var(--white);
  color: var(--green-mid);
  transform: translateY(-2px);
}

/* ── Noise / Grain Overlay ── */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
}

/* =========================================================
   NAVIGATION
========================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(27,77,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.site-nav.at-top {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream);
  padding: 3px;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta-btn {
  background: var(--cream);
  color: var(--green-deep);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--white);
  color: var(--green-mid);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--green-deep);
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 999;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  width: 100%;
  text-align: center;
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-cta {
  background: var(--cream);
  color: var(--green-deep);
  font-weight: 600;
  border-radius: 50px;
  margin-top: 12px;
  width: auto;
  padding: 12px 32px;
}
.mobile-cta:hover { background: var(--white); }

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,35,15,0.80) 0%,
    rgba(27,77,46,0.70) 50%,
    rgba(10,30,12,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-slogan {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--green-light);
  font-style: normal;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-slogan em { color: var(--white); font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-br { display: none; }
@media (min-width: 600px) { .hero-br { display: inline; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 5px; opacity: 1; }
  70%       { top: 18px; opacity: 0.4; }
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text .section-label { margin-bottom: 12px; }

.about-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid rgba(27,77,46,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,77,46,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-deep);
}
.pillar-icon svg { width: 22px; height: 22px; }

.pillar-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.services-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(46,125,50,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(76,175,80,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(76,175,80,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(76,175,80,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon {
  width: 26px;
  height: 26px;
  color: var(--green-accent);
}

.service-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.02em;
}
.service-price strong {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}
.service-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

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

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-section { background: var(--cream-dark); }

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: rgba(27,77,46,0.07);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 22px;
  font-weight: 400;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(27,77,46,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green-deep);
}
.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   SERVICE AREA
========================================================= */
.area-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.area-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(46,125,50,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(76,175,80,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.area-body { color: rgba(245,241,235,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.area-quote-btn { margin-top: 0; }

.town-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.town-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.town-item:nth-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.08); }

.town-dot {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.town-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(76,175,80,0.2);
  color: var(--green-light);
  border: 1px solid rgba(76,175,80,0.3);
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: auto;
}

/* =========================================================
   WEATHER POLICY
========================================================= */
.weather-section { background: var(--cream); }

.weather-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--white);
  border: 1px solid rgba(27,77,46,0.10);
  border-left: 5px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}

.weather-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(27,77,46,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
}
.weather-icon svg { width: 28px; height: 28px; }

.weather-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.weather-text p {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.weather-text strong { color: var(--green-deep); }

/* =========================================================
   QUOTE FORM
========================================================= */
.quote-section { background: var(--cream-dark); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.quote-intro .section-heading { margin-top: 12px; }
.quote-intro > p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 30px;
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}
.quote-perks li svg {
  width: 18px;
  height: 18px;
  color: var(--green-mid);
  flex-shrink: 0;
}

/* Form */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.quote-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.req { color: var(--green-mid); }

.form-group input,
.form-group textarea,
.select-wrap select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(27,77,46,0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.select-wrap select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group textarea.error,
.select-wrap.error select {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(45,45,45,0.38); }

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

/* Select */
.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-light);
  pointer-events: none;
}
.select-wrap select { padding-right: 40px; }

/* Radio */
.radio-group {
  display: flex;
  gap: 20px;
  padding: 12px 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-mid) !important;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--green-mid);
  cursor: pointer;
}

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

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-mid) !important;
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid rgba(27,77,46,0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}
.checkbox-label:hover { border-color: var(--green-mid); background: var(--cream-dark); }
.checkbox-label input[type="checkbox"] { display: none; }
.check-box {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(27,77,46,0.3);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.checkbox-label input:checked ~ .check-box {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.checkbox-label input:checked ~ .check-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 6px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Field Errors */
.field-error {
  font-size: 0.78rem;
  color: #c62828;
  margin-top: 5px;
  min-height: 16px;
  display: block;
}

/* Submit Button */
.btn-submit {
  margin-top: 8px;
  justify-content: center;
  font-size: 1rem;
  padding: 17px 36px;
  box-shadow: 0 6px 24px rgba(27,77,46,0.3);
}
.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

/* Success Message */
.form-success {
  text-align: center;
  padding: 60px 24px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(27,77,46,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-mid);
}
.success-icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.form-success p { font-size: 1rem; color: var(--text-mid); }

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.contact-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(76,175,80,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(46,125,50,0.20) 0%, transparent 55%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(76,175,80,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-accent);
}
.contact-icon svg { width: 24px; height: 24px; }

.contact-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.contact-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.contact-link:hover { color: var(--green-light); }

.hours-text {
  color: var(--white);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Social Row */
.social-row {
  text-align: center;
  position: relative;
}
.social-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #0E2918;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream);
  padding: 4px;
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
}
.footer-tagline em { color: var(--green-light); font-style: italic; }

.footer-links-col h5,
.footer-contact-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--green-light); }

.footer-addr {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}

.footer-badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(76,175,80,0.55) !important;
  text-transform: uppercase;
}

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,77,46,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-mid); }
.back-to-top svg { width: 20px; height: 20px; }

/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

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

/* Stagger for grid children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.why-grid .why-card:nth-child(1) { transition-delay: 0.05s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.12s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.19s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.26s; }

.contact-grid .contact-card:nth-child(1) { transition-delay: 0.05s; }
.contact-grid .contact-card:nth-child(2) { transition-delay: 0.12s; }
.contact-grid .contact-card:nth-child(3) { transition-delay: 0.19s; }
.contact-grid .contact-card:nth-child(4) { transition-delay: 0.26s; }

/* Hero items */
.hero-badge     { transition-delay: 0.15s; }
.hero-title     { transition-delay: 0.28s; }
.hero-slogan    { transition-delay: 0.40s; }
.hero-sub       { transition-delay: 0.50s; }
.hero-content .btn-primary { transition-delay: 0.60s; }

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { gap: 48px; }
  .area-grid      { gap: 48px; }
  .quote-grid     { gap: 48px; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .area-grid    { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid   { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links    { display: none; }
  .hamburger    { display: flex; }

  .section-pad  { padding: 68px 0; }

  .hero-title   { font-size: clamp(2.4rem, 11vw, 4rem); }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .about-pillars  { grid-template-columns: 1fr; }
  .checkbox-grid  { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .town-list      { grid-template-columns: 1fr; }

  .quote-form-wrap { padding: 32px 24px; }
  .weather-card   { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .checkbox-grid  { grid-template-columns: 1fr; }
  .radio-group    { flex-wrap: wrap; gap: 10px; }
}
