/* ============================================================
   Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:   #1E3D1F;
  --green-mid:    #2C5F2E;
  --green-light:  #4A8C3F;
  --green-pale:   #EAF4E8;
  --brown:        #6B4226;
  --brown-light:  #A0714F;
  --orange:       #D45F00;
  --orange-hover: #B85200;
  --cream:        #F5F4EF;
  --white:        #FFFFFF;
  --gray-light:   #F0EFEA;
  --gray-mid:     #9CA3AF;
  --text-dark:    #1A1A1A;
  --text-mid:     #444444;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.20);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   all 0.2s ease;
  --nav-height:   70px;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.text-white h1,
.text-white h2,
.text-white h3,
.text-white p { color: var(--white); }

/* --- Layout Helpers --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--text-mid); max-width: 600px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}
.btn-cta:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-call {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 1.15rem;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.btn-call:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,95,0,0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(20, 42, 20, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--green-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--green-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--green-dark);
  border: 1px solid rgba(74,140,63,0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding-left: 1.4rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 1rem;
}
.nav-phone svg { width: 18px; height: 18px; }
.nav-phone:hover { color: #FF7A20; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,25,10,0.62) 0%, rgba(20,50,20,0.45) 50%, rgba(10,25,10,0.60) 100%);
  z-index: 1;
  pointer-events: none;
}

/* SVG tree pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(74,140,63,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(74,140,63,0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,140,63,0.25);
  border: 1px solid rgba(74,140,63,0.5);
  color: #9FD895;
  font-size: 0.82rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: #9FD895; }

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  color: #9FD895;
  flex-shrink: 0;
}

/* ============================================================
   QUOTE FORM CARD
   ============================================================ */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.quote-card-header {
  background: var(--green-mid);
  padding: 1.25rem 1.75rem;
  text-align: center;
}
.quote-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
.quote-card-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  margin: 0.25rem 0 0;
}
.quote-card-body { padding: 1.5rem 1.75rem; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(44,95,46,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 0.6rem;
}
.form-note svg { width: 12px; height: 12px; vertical-align: middle; }
.field-error { border-color: #c0392b !important; box-shadow: 0 0 0 2px rgba(192,57,43,0.2) !important; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: #15803d;
  font-weight: 600;
}
.form-success svg { color: #15803d; margin: 0 auto .75rem; }

/* Standalone quote section (used on other pages) */
.quote-section {
  background: var(--green-dark);
  padding: 5rem 0;
}
.quote-section-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: center;
}
.quote-section-text h2 { color: var(--white); margin-bottom: 1rem; }
.quote-section-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.quote-section .quote-card { max-width: 100%; }

/* CTA banner */
.cta-banner {
  background: var(--green-dark);
  padding: 3rem 0;
  border-top: 3px solid var(--green-light);
  border-bottom: 3px solid var(--green-light);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  line-height: 1.2;
}
.cta-banner-text p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 1rem;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-banner-actions { justify-content: center; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-top: 3px solid var(--green-mid);
  border-bottom: 3px solid var(--green-mid);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--green-mid);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--white); }

.service-card {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-icon svg {
  width: 28px; height: 28px;
  color: var(--green-mid);
}
.service-card:hover .service-icon {
  background: var(--green-mid);
}
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-link { color: var(--green-dark); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--green-pale); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,95,46,0.1);
  transition: var(--transition);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--green-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; color: var(--white); }
.why-text h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.why-text p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   NEIGHBORHOODS PREVIEW
   ============================================================ */
.neighborhoods-section { background: var(--cream); }
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.neighborhood-card {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.neighborhood-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.neighborhood-card svg {
  width: 36px; height: 36px;
  color: var(--green-mid);
  margin: 0 auto 0.75rem;
}
.neighborhood-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.neighborhood-card p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-section { background: var(--green-mid); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(44,95,46,0.1);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-pale);
  pointer-events: none;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.stars svg { width: 16px; height: 16px; color: #F59E0B; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.8rem; color: var(--gray-mid); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(20,42,20,0.95) 0%, rgba(44,95,46,0.88) 100%),
    url('/assets/images/page-hero-bg.jpg') center / cover no-repeat;
  background-color: var(--green-dark);
  padding: 5rem 0 3.5rem;
  margin-top: var(--nav-height);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 550px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem; }
.content-main h2 { margin-top: 2rem; margin-bottom: 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-list {
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.content-list li:last-child { border-bottom: none; }
.content-list li svg {
  width: 18px; height: 18px;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(44,95,46,0.12);
}
.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-mid);
  color: var(--green-dark);
}
.sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid #E5E7EB;
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--green-mid); padding-left: 0.4rem; }
.sidebar-links li a svg { width: 14px; height: 14px; color: var(--green-mid); }
.sidebar-call {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 1.75rem;
}
.sidebar-call h4 {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  margin-bottom: 0.75rem;
}
.sidebar-call p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 1.25rem; }
.sidebar-call .btn-call { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-placeholder svg { width: 64px; height: 64px; color: rgba(255,255,255,0.5); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--green-mid); font-weight: 600; margin-bottom: 0.5rem; }
.team-card p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: #9FD895; }
.contact-info-item h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,0.85); }
.contact-info-item a:hover { color: var(--white); }

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(44,95,46,0.1);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  background: var(--white);
}

/* ============================================================
   NEIGHBORHOOD PAGE
   ============================================================ */
.neighborhood-hero-area {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--green-mid);
}
.area-map-placeholder {
  background: linear-gradient(135deg, #D4EDDA 0%, #A8D5B5 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  border: 1.5px solid rgba(44,95,46,0.2);
  margin-bottom: 1.5rem;
}
.area-map-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,0.9); }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green-mid);
  color: var(--white);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 0.4rem;
}
.footer-col ul li a svg { width: 12px; height: 12px; color: var(--green-light); flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--green-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.nav-overlay.open { display: block; }

/* ============================================================
   PAGE HEADER (service / neighborhood detail templates)
   ============================================================ */
.page-header {
  background:
    linear-gradient(135deg, rgba(20,42,20,0.95) 0%, rgba(44,95,46,0.88) 100%),
    url('/assets/images/page-hero-bg.jpg') center / cover no-repeat;
  background-color: var(--green-dark);
  padding: 5rem 0 3.5rem;
  margin-top: var(--nav-height);
}
.page-header h1 {
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb svg { width: 12px; height: 12px; }

/* Eyebrow label above content title */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: var(--green-pale);
  border-radius: 50px;
}

/* When .section-title is used directly on an h2 (not as wrapper) */
h2.section-title {
  text-align: left;
  margin: 0 0 1.5rem;
  color: var(--green-dark);
}

/* Sidebar "All Services" list */
.sidebar-services { display: flex; flex-direction: column; }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #E5E7EB;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--green-mid); padding-left: 0.4rem; }
.sidebar-services a.active { color: var(--green-dark); font-weight: 700; }
.sidebar-services a.active svg { color: var(--orange); }
.sidebar-services a svg {
  width: 12px; height: 12px;
  color: var(--green-mid);
  flex-shrink: 0;
}

/* Outline button on light backgrounds (counterpart to .btn-outline) */
.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-mid);
}
.btn-outline-dark:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Title block above the standalone quote-section form */
.quote-section-title { text-align: center; margin-bottom: 2.5rem; }
.quote-section-title h2 { color: var(--white); margin-bottom: 0.75rem; }
.quote-section-title h2 span { color: #9FD895; }
.quote-section-title p {
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 460px; margin: 0 auto; }
  .hero-content p { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .quote-section-inner { grid-template-columns: 1fr; }
  .quote-section-text { text-align: center; }
  .quote-section .quote-card { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 1.5rem;
    gap: 0;
    z-index: 100;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav-phone { margin-left: 0; margin-top: 1rem; justify-content: center; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.2);
    border-radius: 0;
    display: none;
  }
  .dropdown.open { display: block; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 2.5rem 0 2rem; }
}

@media (max-width: 480px) {
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .trust-bar .container { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--green-mid); }
.bg-cream { background: var(--cream); }
.bg-green-pale { background: var(--green-pale); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── Bootstrap-compatible accordion for service content ── */
.accordion {
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.accordion:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left-color: var(--accent);
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { margin: 0; }
.accordion-button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.1rem 1.5rem; border: none; background: var(--white);
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer; text-transform: uppercase; letter-spacing: .03em;
  color: var(--text); transition: var(--transition);
}
.accordion-button:hover { background: var(--bg-light); color: var(--primary); }
.accordion-button:not(.collapsed) {
  background: var(--bg-light);
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}
.accordion-button::after {
  content: '+';
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  font-size: 1.3rem; font-weight: 700; line-height: 1;
  color: var(--white); background: var(--accent);
  border-radius: 50%;
  margin-left: 1rem; flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.accordion-button:not(.collapsed)::after {
  content: '−';
  background: var(--primary);
  transform: rotate(180deg);
}
.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }
.accordion-body {
  padding: 1.1rem 1.5rem;
  font-size: .95rem; color: var(--text-mid); line-height: 1.75;
  background: var(--white);
}
