/* =========================================================
   GLOBAL
========================================================= */

:root {
  --green-dark: #123b2a;
  --green: #1f6b45;
  --green-light: #3e8a5e;
  --cream: #f7f6f0;
  --white: #ffffff;
  --black: #17201b;
  --gray: #68736d;
  --border: #e5e9e5;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 720px;
  position: relative;
  background: url('/images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(8, 28, 20, .82) 0%, rgba(8, 28, 20, .55) 45%, rgba(8, 28, 20, .15) 100% );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: auto;
  color: white;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #83c99b;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .95;
  margin: 0 0 28px;
  font-weight: 800;
  letter-spacing: -3px;
}

  .hero h1 span {
    color: #9bd3a8;
  }

.hero p {
  max-width: 600px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 35px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons,
.quote-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: .25s ease;
}

.btn-primary {
  background: #8fc99e;
  color: #103b28;
}

  .btn-primary:hover {
    background: #a8dcb4;
    transform: translateY(-2px);
  }

.btn-outline {
  border: 1px solid rgba(255,255,255,.7);
  color: white;
}

  .btn-outline:hover {
    background: white;
    color: var(--green-dark);
  }

.btn-light {
  background: white;
  color: var(--green-dark);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
  background: var(--green-dark);
  color: white;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}

  .trust-item > span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #315e47;
    color: #9bd3a8;
  }

  .trust-item strong {
    display: block;
    font-size: 14px;
  }

  .trust-item small {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.6);
  }


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 30px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

  .section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-heading h2,
  .why-content h2,
  .area-section h2,
  .quote-section h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 20px;
  }

  .section-heading h2 {
    color: var(--green-dark);
  }

  .section-heading p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
  }


/* =========================================================
   SERVICES
========================================================= */

.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  transition: .3s ease;
}

  .service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(20,50,35,.10);
  }

.service-image {
  height: 235px;
  background-position: center;
  background-size: cover;
}

.mowing-image {
  background-image: url('/images/mowing.jpg');
}

.sod-image {
  background-image: url('/images/sod.jpg');
}

.mulch-image {
  background-image: url('/images/mulch.jpg');
}

.flowers-image {
  background-image: url('/images/flowers.jpg');
}

.bushes-image {
  background-image: url('/images/bushes.jpg');
}

.sprinkler-image {
  background-image: url('/images/sprinkler.jpg');
}

.service-content {
  padding: 28px;
}

.service-number {
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.service-content h3 {
  margin: 12px 0;
  font-size: 25px;
  color: var(--green-dark);
}

.service-content p {
  color: var(--gray);
  line-height: 1.7;
  min-height: 78px;
}

.service-content a {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
  padding: 120px 0;
  background: var(--green-dark);
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.why-image {
  min-height: 650px;
  background: linear-gradient( rgba(15,60,40,.15), rgba(15,60,40,.15) ), url('/images/why-us.jpg') center / cover;
}

.why-image-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 45px;
  background: linear-gradient( transparent 40%, rgba(0,0,0,.65) );
  color: white;
}

  .why-image-overlay span {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .why-image-overlay strong {
    font-size: 36px;
    margin-top: 8px;
  }

.why-content .section-eyebrow {
  color: #8fc99e;
}

.why-content h2 {
  color: white;
}

  .why-content h2 span {
    color: #8fc99e;
  }

.why-content > p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-list-item {
  display: flex;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

  .why-list-item > span {
    color: #8fc99e;
    font-size: 13px;
    font-weight: 800;
  }

  .why-list-item h4 {
    margin: 0 0 7px;
    font-size: 18px;
  }

  .why-list-item p {
    margin: 0;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
  }


/* =========================================================
   SERVICE AREA
========================================================= */

.area-section {
  padding: 30px 0;
  background: #f4f5f0;
}

  .area-section h2 {
    color: var(--green-dark);
  }

    .area-section h2 span {
      color: var(--green);
    }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.area-card {
  min-height: 120px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 1px;
  transition: .25s ease;
}

  .area-card:hover {
    background: var(--green);
    color: white;
  }

  .area-card.primary-area {
    background: var(--green-dark);
    color: white;
    flex-direction: column;
  }

    .area-card.primary-area strong {
      margin-top: 5px;
      color: #8fc99e;
      font-size: 12px;
    }


/* =========================================================
   QUOTE CTA
========================================================= */

.quote-section {
  padding: 30px 0;
  text-align: center;
  background: linear-gradient( rgba(13,53,36,.9), rgba(13,53,36,.9) ), url('/images/quote.jpg') center / cover;
  color: white;
}

.quote-content {
  max-width: 850px;
}

.quote-section .section-eyebrow {
  color: #8fc99e;
}

.quote-section h2 {
  color: white;
}

  .quote-section h2 span {
    color: #8fc99e;
  }

.quote-section p {
  max-width: 600px;
  margin: 0 auto 35px;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.7;
}

.quote-buttons {
  justify-content: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-image {
    min-height: 500px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {

  .hero {
    min-height: 650px;
  }

    .hero h1 {
      font-size: 52px;
    }

    .hero p {
      font-size: 17px;
    }

  .hero-buttons,
  .quote-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .section {
    padding: 75px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    padding: 75px 0;
  }

  .why-image {
    min-height: 400px;
  }

  .why-image-overlay strong {
    font-size: 28px;
  }

  .quote-section {
    padding: 80px 0;
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header-container {
  width: min(1280px, 94%);
  min-height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}


/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8fc99e;
  color: #8fc99e;
  font-size: 27px;
  font-weight: 900;
  font-family: Georgia, serif;
  transform: skew(-8deg);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

  .brand-name strong {
    font-size: 10px;
    letter-spacing: 3px;
    color: #8fc99e;
    margin-bottom: 5px;
  }

  .brand-name span {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
  }


/* NAV */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

  .desktop-nav a {
    position: relative;
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    transition: .2s ease;
  }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: #8fc99e;
      transition: .2s ease;
    }

    .desktop-nav a:hover {
      color: white;
    }

      .desktop-nav a:hover::after {
        width: 100%;
      }


/* HEADER ACTIONS */

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: white;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-quote {
  background: #8fc99e;
  color: #103b28;
  padding: 15px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: .2s ease;
}

  .header-quote:hover {
    background: white;
  }


/* MOBILE BUTTON */

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

  .mobile-menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: white;
    transition: .25s ease;
  }


/* MOBILE MENU */

.mobile-menu {
  display: none;
  background: #123b2a;
  padding: 25px 6% 30px;
}

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

    .mobile-menu nav a {
      padding: 17px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      color: white;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.mobile-menu.open {
  display: block;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  background: #0b261b;
  color: white;
  padding: 55px 0 20px;
}

.footer-container {
  width: min(1180px, 92%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

  .footer-brand strong {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .footer-brand p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.5);
    font-size: 13px;
  }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

  .footer-contact a {
    color: #8fc99e;
    font-size: 18px;
    font-weight: 800;
  }

  .footer-contact span {
    color: rgba(255,255,255,.5);
    font-size: 13px;
  }

.footer-bottom {
  width: min(1180px, 92%);
  margin: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.35);
  font-size: 11px;
}


/* =========================================================
   HEADER RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .desktop-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }
}


@media (max-width: 850px) {

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .header-container {
    min-height: 78px;
  }
}


@media (max-width: 600px) {

  .brand-logo {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }

  .brand-name span {
    font-size: 13px;
  }

  .brand-name strong {
    font-size: 8px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   OUR WORK
========================================================= */

.work-section {
  padding: 30px 0;
  background: white;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 50px;
}

  .work-header h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
  }

  .work-header p {
    max-width: 440px;
    margin: 0;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
  }


/* GRID */

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 15px;
}


/* ITEMS */

.work-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd;
}

  .work-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
  }

  .work-item:hover img {
    transform: scale(1.06);
  }


/* LARGE ITEMS */

.work-large {
  grid-row: span 2;
}


/* OVERLAY */

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: white;
  background: linear-gradient( transparent 35%, rgba(5, 25, 16, .85) );
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient( transparent 25%, rgba(5, 45, 27, .9) );
}

.work-overlay span {
  margin-bottom: 7px;
  color: #9bd3a8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.work-overlay strong {
  font-size: 25px;
  line-height: 1.1;
}


/* BOTTOM CTA */

.work-bottom {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

  .work-bottom p {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
  }

  .work-bottom a {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }


/* =========================================================
   OUR WORK RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .work-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }

  .work-large {
    grid-row: span 1;
  }
}


@media (max-width: 600px) {

  .work-section {
    padding: 80px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 300px 300px 300px 300px;
  }

  .work-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
  padding: 120px 0;
  background: var(--cream);
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

  .testimonials-header h2 {
    margin: 0;
    max-width: 650px;
    color: var(--green-dark);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
  }

    .testimonials-header h2 span {
      display: block;
      color: var(--green);
    }

  .testimonials-header p {
    max-width: 400px;
    margin: 0;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
  }


/* TESTIMONIAL CARDS */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  padding: 38px;
  border: 1px solid var(--border);
  transition: .25s ease;
}

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(20,50,35,.08);
  }


/* STARS */

.testimonial-stars {
  color: #e3a82f;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 25px;
}


/* TEXT */

.testimonial-text {
  min-height: 145px;
  margin: 0;
  color: #39433e;
  font-size: 17px;
  line-height: 1.75;
}


/* AUTHOR */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #9bd3a8;
  font-weight: 800;
}

.testimonial-author strong {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
}

.testimonial-author span {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 12px;
}


/* TEMPORARY NOTE */

.testimonial-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

  .testimonial-note > span {
    color: #e3a82f;
    font-size: 20px;
  }

  .testimonial-note p {
    margin: 0;
    color: #89928d;
    font-size: 12px;
  }


/* RESPONSIVE */

@media (max-width: 850px) {

  .testimonials-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-text {
    min-height: auto;
  }
}


@media (max-width: 600px) {

  .testimonials-section {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 28px;
  }
}
/* =========================================================
   QUOTE FORM
========================================================= */

.quote-section {
  padding: 30px 0;
  background: linear-gradient( rgba(13, 53, 36, .94), rgba(13, 53, 36, .94) ), url('/images/quote.jpg') center / cover;
  color: white;
}

.quote-container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}


/* INTRO */

.quote-intro {
  padding-top: 15px;
}

  .quote-intro h2 {
    margin: 0 0 25px;
    color: white;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
  }

    .quote-intro h2 span {
      display: block;
      color: #8fc99e;
    }

  .quote-intro > p {
    max-width: 450px;
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.7;
  }


/* PHONE */

.quote-contact {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.15);
}

  .quote-contact span {
    display: block;
    margin-bottom: 8px;
    color: #8fc99e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
  }

  .quote-contact a {
    color: white;
    font-size: 25px;
    font-weight: 800;
  }


/* FORM */

.quote-form {
  padding: 40px;
  background: white;
  color: var(--black);
  box-shadow: 0 25px 70px rgba(0,0,0,.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 22px;
}

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #dfe4e0;
    background: #fafbf9;
    color: var(--black);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: .2s ease;
  }

  .form-group input {
    height: 52px;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      background: white;
      box-shadow: 0 0 0 3px rgba(31,107,69,.08);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #a3aaa6;
    }


/* SERVICE OPTIONS */

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #dfe4e0;
  background: #fafbf9;
  cursor: pointer;
  transition: .2s ease;
}

  .service-option:hover {
    border-color: var(--green);
  }

  .service-option input {
    position: absolute;
    opacity: 0;
  }

  .service-option span {
    position: relative;
    padding-left: 28px;
    color: #45514a;
    font-size: 13px;
    line-height: 1.3;
  }

    .service-option span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 17px;
      height: 17px;
      transform: translateY(-50%);
      border: 1px solid #cbd2cd;
      background: white;
    }

  .service-option input:checked + span::before {
    background: var(--green);
    border-color: var(--green);
  }

  .service-option input:checked + span::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    font-weight: 900;
  }


/* SUBMIT */

.quote-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: var(--green-dark);
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: .25s ease;
}

  .quote-submit span {
    margin-left: 10px;
    font-size: 18px;
  }

  .quote-submit:hover {
    background: var(--green);
    transform: translateY(-2px);
  }

.form-note {
  margin: 15px 0 0;
  text-align: center;
  color: #929a95;
  font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .quote-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .quote-intro {
    padding-top: 0;
  }
}


@media (max-width: 600px) {

  .quote-section {
    padding: 80px 0;
  }

  .quote-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .quote-contact {
    margin-top: 30px;
  }
}
/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  background: url('/images/about.jpg') center / cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(8, 32, 22, .88), rgba(8, 32, 22, .35) );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: auto;
  color: white;
}

  .about-hero-content h1 {
    max-width: 800px;
    margin: 0 0 25px;
    font-size: clamp(50px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
  }

    .about-hero-content h1 span {
      display: block;
      color: #9bd3a8;
    }

  .about-hero-content p {
    max-width: 600px;
    color: rgba(255,255,255,.8);
    font-size: 19px;
    line-height: 1.7;
  }


/* =========================================================
   MISSION
========================================================= */

.about-mission {
  padding: 120px 0;
  background: white;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.about-mission-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -2px;
}

  .about-mission-heading h2 span {
    display: block;
    color: var(--green);
  }

.about-mission-text {
  max-width: 650px;
}

  .about-mission-text p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
  }

  .about-mission-text .about-lead {
    margin-top: 0;
    color: var(--green-dark);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
  }


/* =========================================================
   VALUES
========================================================= */

.about-values {
  padding: 120px 0;
  background: var(--cream);
}

  .about-values .section-heading h2 {
    color: var(--green-dark);
  }

    .about-values .section-heading h2 span {
      color: var(--green);
    }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  transition: .25s ease;
}

  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20,50,35,.08);
  }

.value-number {
  margin-bottom: 25px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.value-card h3 {
  margin: 0 0 15px;
  color: var(--green-dark);
  font-size: 25px;
}

.value-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   LOCAL
========================================================= */

.about-local {
  padding: 120px 0;
  background: var(--green-dark);
  color: white;
}

.about-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-local-image {
  min-height: 580px;
  position: relative;
  background: linear-gradient( rgba(10,45,29,.15), rgba(10,45,29,.15) ), url('/images/about-local.jpg') center / cover;
}

.about-local-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 20px 25px;
  background: rgba(10,38,25,.9);
  border-left: 3px solid #8fc99e;
}

  .about-local-badge strong {
    display: block;
    color: #8fc99e;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .about-local-badge span {
    display: block;
    margin-top: 5px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
  }

.about-local-content h2 {
  margin: 0 0 25px;
  color: white;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -2px;
}

  .about-local-content h2 span {
    display: block;
    color: #8fc99e;
  }

.about-local-content p {
  max-width: 600px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.8;
}

.about-local-content .btn {
  margin-top: 15px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
  padding: 110px 0;
  text-align: center;
  background: #f3f5f0;
}

  .about-cta h2 {
    margin: 0 0 30px;
    color: var(--green-dark);
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
  }

    .about-cta h2 span {
      display: block;
      color: var(--green);
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .about-mission-grid,
  .about-local-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-local-image {
    min-height: 450px;
  }
}


@media (max-width: 600px) {

  .about-hero {
    min-height: 560px;
  }

  .about-mission,
  .about-values,
  .about-local {
    padding: 80px 0;
  }

  .about-local-image {
    min-height: 380px;
  }

  .value-card {
    padding: 28px;
  }
}

/* =========================================================
   SERVICE PAGES
========================================================= */

.service-hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: url('/images/mowing.jpg') center / cover no-repeat;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(7, 31, 21, .9), rgba(7, 31, 21, .35) );
}

.service-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

  .service-hero-content h1 {
    max-width: 850px;
    margin: 0 0 25px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -3px;
  }

    .service-hero-content h1 span {
      display: block;
      color: #9bd3a8;
    }

  .service-hero-content p {
    max-width: 620px;
    margin-bottom: 35px;
    color: rgba(255,255,255,.8);
    font-size: 19px;
    line-height: 1.7;
  }


/* =========================================================
   SERVICE INTRO
========================================================= */

.service-intro {
  padding: 120px 0;
  background: white;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.service-intro-image {
  height: 600px;
  overflow: hidden;
}

  .service-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.service-intro-content h2 {
  margin: 0 0 25px;
  color: var(--green-dark);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -2px;
}

  .service-intro-content h2 span {
    display: block;
    color: var(--green);
  }

.service-intro-content p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.service-check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

  .service-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
  }

    .service-check-list li span {
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #e3f1e7;
      color: var(--green);
      font-size: 12px;
    }


/* =========================================================
   INCLUDED
========================================================= */

.service-included {
  padding: 120px 0;
  background: var(--cream);
}

  .service-included .section-heading h2 span {
    color: var(--green);
  }

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.included-card {
  padding: 35px;
  background: white;
  border: 1px solid var(--border);
  transition: .25s ease;
}

  .included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20,50,35,.08);
  }

.included-number {
  margin-bottom: 25px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.included-card h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 24px;
}

.included-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
  font-size: 14px;
}


/* =========================================================
   SERVICE WHY
========================================================= */

.service-why {
  padding: 120px 0;
  background: var(--green-dark);
  color: white;
}

.service-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.service-why-content h2 {
  margin: 0 0 25px;
  color: white;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -2px;
}

  .service-why-content h2 span {
    display: block;
    color: #8fc99e;
  }

.service-why-content p {
  max-width: 580px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.8;
}

.service-why-content .btn {
  margin-top: 20px;
}

.service-why-image {
  position: relative;
  height: 580px;
  overflow: hidden;
}

  .service-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.service-image-label {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  padding: 20px;
  background: rgba(9,35,24,.88);
  border-left: 3px solid #8fc99e;
}

  .service-image-label span {
    display: block;
    color: #8fc99e;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
  }

  .service-image-label strong {
    display: block;
    margin-top: 5px;
    color: white;
    font-size: 16px;
  }


/* =========================================================
   SERVICE AREAS
========================================================= */

.service-areas-small {
  padding: 110px 0;
  background: #f4f5f0;
}

  .service-areas-small .section-heading h2 span {
    color: var(--green);
  }

.small-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

  .small-areas-grid div {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: .2s ease;
  }

    .small-areas-grid div:hover {
      background: var(--green);
      color: white;
    }


/* =========================================================
   FINAL CTA
========================================================= */

.service-final-cta {
  padding: 110px 0;
  text-align: center;
  background: white;
}

  .service-final-cta h2 {
    margin: 0 0 20px;
    color: var(--green-dark);
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
  }

    .service-final-cta h2 span {
      display: block;
      color: var(--green);
    }

  .service-final-cta p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 17px;
  }


/* =========================================================
   SERVICE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .service-intro-grid,
  .service-why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-intro-image,
  .service-why-image {
    height: 500px;
  }
}


@media (max-width: 600px) {

  .service-hero {
    min-height: 600px;
  }

  .service-intro,
  .service-included,
  .service-why,
  .service-areas-small {
    padding: 80px 0;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .small-areas-grid {
    grid-template-columns: 1fr;
  }

  .service-intro-image,
  .service-why-image {
    height: 400px;
  }
}

/* =========================================================
   LAWN INSTALLATION
========================================================= */

.lawn-installation-hero {
  background: url('/images/sod.jpg') center / cover no-repeat;
}

/* =========================================================
   MULCH INSTALLATION
========================================================= */

.mulch-installation-hero {
  background: url('/images/mulch.jpg') center / cover no-repeat;
}
/* =========================================================
   FLOWER PLANTING
========================================================= */

.flower-planting-hero {
  background: url('/images/flowers.jpg') center / cover no-repeat;
}
/* =========================================================
   BUSH & SHRUB SERVICES
========================================================= */

.bush-services-hero {
  background: url('/images/bushes.jpg') center / cover no-repeat;
}
/* =========================================================
   SPRINKLER REPAIR
========================================================= */

.sprinkler-repair-hero {
  background: url('/images/sprinkler.jpg') center / cover no-repeat;
}

.mobile-menu-button {
  background: rgba(0, 0, 0, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 10px;
}

  .mobile-menu-button span {
    background: #fff;
  }

.quote-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

  .quote-success h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .quote-success p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
  }
.quote-success-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.quote-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}