/* ============================================
   MANTIS LAWN CARE — styles.css
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --deep-green: #1F4D2B;
  --fresh-green: #4CAF50;
  --light-green: #8BC34A;
  --charcoal: #222222;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #E0E0E0;
  --gray-text: #555555;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 32px rgba(0,0,0,0.14);

  --max-width: 1140px;
  --section-pad: 80px 20px;
  --section-pad-sm: 50px 20px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--fresh-green);
  color: var(--white);
}
.btn-primary:hover {
  background: #3d9140;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(76,175,80,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--deep-green);
}
.btn-dark {
  background: var(--deep-green);
  color: var(--white);
}
.btn-dark:hover {
  background: #163920;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--deep-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--light-green);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--light-green); }
.nav-cta {
  background: var(--fresh-green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: #3d9140 !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.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 {
  display: none;
  flex-direction: column;
  background: var(--deep-green);
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta {
  margin-top: 12px;
  text-align: center;
  border-radius: var(--radius);
  padding: 12px 22px;
  border-bottom: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--deep-green) 0%, #2e6b3e 100%);
  color: var(--white);
  padding: 100px 20px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: 0.10;
}
.hero-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(139,195,74,0.2);
  color: var(--light-green);
  border: 1px solid rgba(139,195,74,0.4);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--light-green); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.hero-badge-item svg { flex-shrink: 0; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-label {
  display: inline-block;
  color: var(--fresh-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-sub {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.65;
}
.section-sub-white { color: rgba(255,255,255,0.78); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
  background: var(--gray-light);
  padding: var(--section-pad);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--fresh-green);
}
.trust-card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
}
.trust-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ============================================
   SERVICES OVERVIEW (HOME)
   ============================================ */
.services-home {
  padding: var(--section-pad);
}
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--deep-green), #2e6b3e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-green);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.65;
  flex-grow: 1;
}
.service-card .service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card .service-list li {
  font-size: 13px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card .service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fresh-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SERVICES FULL PAGE
   ============================================ */
.services-full {
  padding: var(--section-pad);
}
.services-category {
  margin-bottom: 64px;
}
.services-category:last-child { margin-bottom: 0; }
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-mid);
}
.category-icon {
  width: 56px;
  height: 56px;
  background: var(--deep-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.category-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
}
.category-header p {
  font-size: 15px;
  color: var(--gray-text);
  margin-top: 4px;
}
.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 22px;
  border-left: 4px solid var(--fresh-green);
  transition: box-shadow 0.2s;
}
.service-item:hover { box-shadow: var(--shadow); }
.service-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 8px;
}
.service-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}
.service-item .outcome {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fresh-green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
  background: var(--gray-light);
  padding: var(--section-pad);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.ba-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img-wrap {
  position: relative;
}
.ba-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-label.after { background: rgba(76,175,80,0.85); }
.ba-placeholder {
  width: 100%;
  height: 180px;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
  font-style: italic;
}
.ba-caption {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-green), #2a5e37);
  color: var(--white);
  padding: 72px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--deep-green) 0%, #2e6b3e 100%);
  color: var(--white);
  padding: 64px 20px 56px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.breadcrumb a { color: var(--light-green); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: var(--section-pad);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-style: italic;
  font-size: 14px;
  border-radius: var(--radius);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-text p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-values {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-value-icon {
  width: 38px;
  height: 38px;
  background: var(--deep-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-value-text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 3px;
}
.about-value-text p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--deep-green);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--light-green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding: var(--section-pad);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--gray-mid);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  height: 240px;
  background: var(--gray-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999;
  font-size: 13px;
  font-style: italic;
}
.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-before { background: rgba(0,0,0,0.6); color: white; }
.badge-after { background: rgba(76,175,80,0.85); color: white; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--deep-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: white;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.contact-detail-text span {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}
.response-note {
  background: linear-gradient(135deg, var(--deep-green), #2a5e37);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.6;
}
.response-note strong { color: var(--light-green); display: block; margin-bottom: 4px; font-size: 15px; }

/* Form */
.quote-form {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fresh-green);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-submit-wrap { margin-top: 8px; }
.form-submit-wrap .btn { width: 100%; font-size: 16px; padding: 16px; }
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #999;
}

/* Success / error message */
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.form-feedback.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-feedback.error { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--light-green); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-col address a { color: var(--light-green); }
.footer-col address a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--light-green); }

/* ============================================
   SERVICE AREA STRIP
   ============================================ */
.service-area {
  background: var(--deep-green);
  padding: 20px;
  text-align: center;
}
.service-area p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.service-area strong { color: var(--light-green); }

/* ============================================
   REVIEWS STRIP
   ============================================ */
.reviews {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--gray-mid);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.review-stars {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-green);
}
.review-location {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 16px; }
  .hero { padding: 72px 16px 64px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .hero-badge { gap: 16px; }
  .quote-form { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ba-images { grid-template-columns: 1fr; }
  .ba-img-wrap img, .ba-placeholder { height: 160px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.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; }
.mb-0 { margin-bottom: 0; }
.green { color: var(--fresh-green); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
