:root {
  --green: #2f5d3a;
  --green-dark: #1f3f28;
  --green-light: #eef6ef;
  --tan: #f5efe3;
  --text: #1f2933;
  --muted: #5f6b76;
  --white: #ffffff;
  --border: #d9e2dc;
  --shadow: 0 16px 40px rgba(31, 63, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.logo-image {
  max-width: 150px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 63, 40, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-image {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-button {
  margin-left: 4px;
  background: #ffffff !important;
  color: var(--green-dark) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-button:hover {
  background: var(--tan) !important;
}

.hero {
  min-height: 78vh;
  padding: 110px 24px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(31, 63, 40, 0.72), rgba(31, 63, 40, 0.72)),
    url("new-images/lawn/webp/img-067.webp") center/cover no-repeat;
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border-left: 5px solid var(--green);
}

.hero-badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
}

.veteran-badge {
  background: linear-gradient(135deg, #ffffff 0%, #f8f1df 100%);
  border-left-color: #b08a2e;
  transform: scale(1.04);
}

.veteran-badge .badge-icon {
  background: #b08a2e;
}

@media (max-width: 650px) {
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    width: 100%;
    max-width: 310px;
  }

  .veteran-badge {
    transform: none;
  }
}

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

.reviews-section {
  background: #ffffff;
}

.review-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 760px) auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.review-card {
  padding: 36px;
  border-radius: 24px;
  background: var(--green-light);
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.review-text {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
}

.review-author {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.review-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.review-arrow:hover {
  background: var(--green);
  color: #ffffff;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
}

.review-dot.active {
  background: var(--green);
}

@media (max-width: 650px) {
  .review-slider {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }

  .review-card {
    padding: 28px 22px;
  }

  .review-text {
    font-size: 1.05rem;
  }
}

.hero-content {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
}

.hero .eyebrow {
  color: #c9f2d3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--green-dark);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.hero-text {
  margin-bottom: 30px;
  font-size: 1.15rem;
  color: #f4fff6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--border);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

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

.service-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--green-light);
}

.service-card p {
  color: var(--muted);
}

.gallery-preview {
  max-width: none;
  background: var(--tan);
}

.gallery-preview>.section-heading,
.gallery-preview>.gallery-grid,
.gallery-preview>.center {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  background: var(--green-light);
  box-shadow: var(--shadow);
}

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

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

.center {
  margin-top: 32px;
  text-align: center;
}

.quote-section {
  max-width: none;
  background: var(--green-light);
}

.quote-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.quote-layout>div p {
  color: var(--muted);
}

.quote-form {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
  color: var(--green-dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 93, 58, 0.18);
  border-color: var(--green);
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.footer {
  padding: 28px 24px;
  text-align: center;
  background: var(--green-dark);
  color: var(--white);
}

.footer p {
  margin: 0;
}

.page-hero {
  padding: 90px 24px 50px;
  text-align: center;
  background: var(--green-light);
}

.page-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.page-hero p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

@media (max-width: 900px) {

  .service-grid,
  .gallery-grid,
  .gallery-grid.large,
  .quote-layout {
    grid-template-columns: 1fr 1fr;
  }

  .quote-layout {
    gap: 28px;
  }
}

@media (max-width: 650px) {
  .site-header {
    position: relative;

  }


  .nav {
    padding: 12px 18px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .logo-image {
    width: 135px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links a {
    flex: 1;
    min-width: 120px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .nav-button {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 24px;
    background-position-x: -238px;

  }

  .service-grid,
  .gallery-grid,
  .gallery-grid.large,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }

  .quote-form {
    padding: 22px;
  }
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.service-tab {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-tab.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  background: var(--green-light);
  box-shadow: var(--shadow);
}

.service-detail-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.service-detail-copy p {
  color: var(--muted);
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-image-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(31, 63, 40, 0.16);
}

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .service-tabs {
    flex-direction: column;
  }

  .service-tab {
    width: 100%;
    text-align: left;
    border-radius: 14px;
  }

  .service-detail {
    padding: 22px;
  }

  .service-image-grid {
    grid-template-columns: 1fr;
  }

  .service-image-grid img {
    height: 230px;
  }
}

.before-after-section {
  background: #ffffff;
}

.before-after-grid {
  display: grid;
  gap: 28px;
}

.before-after-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  background: var(--green-light);
  box-shadow: var(--shadow);
}

.before-after-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
}

.before-after-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 63, 40, 0.9);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.before-after-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31, 63, 40, 0.25);
}

@media (max-width: 800px) {
  .before-after-card {
    grid-template-columns: 1fr;
  }

  .before-after-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .before-after-image img {
    height: 260px;
  }
}

.about-section {
  background: #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-light);
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  z-index: 1;
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-content {
  max-width: 640px;
}

.about-content p {
  color: var(--muted);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-content {
    max-width: none;
  }

  .about-image {
    height: 460px;
  }
}

@media (max-width: 650px) {
  .about-layout {
    gap: 28px;
  }

  .about-image {
    height: 360px;
  }

  .about-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
}

.featured-work-section {
  background: var(--green-light);
  max-width: none;
}

.featured-work-section > .section-heading,
.featured-work-section > .featured-work-slider,
.featured-work-section > .featured-work-dots {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.featured-work-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.featured-work-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.featured-work-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.featured-work-frame:hover img {
  transform: scale(1.02);
}

.featured-work-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(31, 63, 40, 0.86);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.featured-work-caption p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.featured-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.featured-arrow:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
}

.featured-work-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.featured-work-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
}

.featured-work-dot.active {
  background: var(--green);
}

@media (max-width: 800px) {
  .featured-work-slider {
    grid-template-columns: 1fr;
  }

  .featured-arrow {
    display: none;
  }

  .featured-work-frame img {
    height: 430px;
  }
}

@media (max-width: 650px) {
  .featured-work-frame {
    border-radius: 22px;
  }

  .featured-work-frame img {
    height: 340px;
  }

  .featured-work-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 15px;
  }

  .featured-work-caption p {
    font-size: 0.95rem;
  }
}

.quote-success {
  padding: 18px;
  text-align: center;
}

.quote-success h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--green-dark);
}

.quote-success p {
  margin-bottom: 12px;
  color: var(--muted);
}

.quote-success a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

.error-message {
  color: #9f1d1d;
  font-weight: 800;
}