/* ======================================================
   RESET
====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======================================================
   ROOT VARIABLES
====================================================== */

:root {
  --forestGreen: #2F5D3A;
  --forestGreenDark: #24482D;
  --forestGreenLight: #3E734A;

  --buttonGreen: #0B5E36;
  --buttonGreenDark: #08492A;

  --navy: #10202F;
  --dark: #1C1C1C;

  --lightGray: #F5F7F4;
  --mediumGray: #6B7280;
  --borderGray: #E5E7EB;

  --textDark: #1F2937;
  --textLight: #FFFFFF;

  --gold: #F5B942;

  --white: #FFFFFF;

  --maxWidth: 1200px;

  --shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* ======================================================
   BASE
====================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--textDark);
  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;
}

/* ======================================================
   GLOBAL CONTAINER
====================================================== */

.container {
  width: 92%;
  max-width: var(--maxWidth);
  margin: 0 auto;
}

/* ======================================================
   HIGH CONTRAST BUTTONS
====================================================== */

.btn,
.btn-primary,
.btn-secondary,
.estimate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary,
.estimate-btn {
  background: var(--buttonGreen);
  color: #FFFFFF;
  border-color: var(--buttonGreen);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn-primary:hover,
.estimate-btn:hover {
  background: var(--buttonGreenDark);
  border-color: var(--buttonGreenDark);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--buttonGreen);
  border: 2px solid var(--buttonGreen);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.btn-secondary:hover {
  background: var(--buttonGreen);
  color: #FFFFFF;
  border-color: var(--buttonGreen);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.estimate-btn:focus {
  outline: 3px solid rgba(245,185,66,.45);
  outline-offset: 3px;
}

/* ======================================================
   HEADER
====================================================== */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--borderGray);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--forestGreen);
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 700;
  color: var(--navy);
  transition: .25s ease;
}

.main-nav a:hover {
  color: var(--forestGreen);
}

.header-buttons {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

/* ======================================================
   MOBILE NAV
====================================================== */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--forestGreen);
  cursor: pointer;
}

/* ======================================================
   HERO
====================================================== */

.hero {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(16,32,47,.82),
    rgba(16,32,47,.82)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 34px;
}

/* ======================================================
   SECTIONS
====================================================== */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--mediumGray);
  font-size: 18px;
}

/* ======================================================
   CARDS
====================================================== */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 24px;
}

.card p {
  color: var(--mediumGray);
  margin-bottom: 18px;
}

.card a {
  color: var(--forestGreen);
  font-weight: 800;
}

/* ======================================================
   TRUST BAR
====================================================== */

.trust-bar {
  background: var(--forestGreen);
  color: var(--white);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 700;
}

/* ======================================================
   FOOTER
====================================================== */

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h3 {
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,.7);
}

/* ======================================================
   BREADCRUMBS
====================================================== */

.breadcrumbs {
  background: var(--lightGray);
  border-bottom: 1px solid var(--borderGray);
  padding: 14px 0;
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumbs li {
  color: var(--mediumGray);
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 8px;
  color: var(--mediumGray);
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  color: var(--forestGreen);
  font-weight: 700;
}

.breadcrumbs span {
  color: var(--textDark);
  font-weight: 700;
}

/* ======================================================
   HOMEPAGE / GENERAL EXTRA SECTIONS
====================================================== */

.why-section {
  background: var(--lightGray);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.two-col h2 {
  color: var(--navy);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.two-col p {
  margin-bottom: 18px;
  font-size: 18px;
  color: var(--mediumGray);
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forestGreen);
  font-weight: 900;
}

/* ======================================================
   AREA SECTIONS
====================================================== */

.areas-section {
  background: var(--forestGreen);
}

.areas-section .section-title h2,
.areas-section .section-title p {
  color: var(--white);
}

.area-card {
  display: block;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 22px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.22);
  transition: .25s ease;
}

.area-card:hover {
  background: var(--white);
  color: var(--forestGreen);
}

/* ======================================================
   GREEN AREA CARDS ON LIGHT BACKGROUNDS
====================================================== */

.green-card {
  background: var(--forestGreen);
  color: var(--white);
  border: 1px solid var(--forestGreen);
}

.green-card:hover {
  background: var(--forestGreenDark);
  color: var(--white);
}

/* ======================================================
   CTA SECTION
====================================================== */

.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 14px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 26px;
  font-size: 20px;
}

.cta-section .btn-secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ======================================================
   CONTACT PAGE
====================================================== */

.contact-box {
  margin-top: 28px;
  padding: 28px;
  background: var(--lightGray);
  border-radius: 12px;
  border: 1px solid var(--borderGray);
}

.contact-box h3 {
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-box p {
  margin-bottom: 18px;
}

.contact-box a {
  color: var(--forestGreen);
  font-weight: 700;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 992px) {
  .grid-4,
  .footer-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .main-nav.nav-open {
    display: block;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--borderGray);
    padding: 20px;
  }

  .main-nav.nav-open ul {
    flex-direction: column;
    gap: 18px;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 90px 0;
  }

  .hero p {
    font-size: 18px;
  }

  .grid-4,
  .footer-grid,
  .trust-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .estimate-btn {
    width: 100%;
    text-align: center;
  }
}
.logo img {
  height: 68px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 54px;
  }
}
/* ======================================================
   DESKTOP DROPDOWN MENU
====================================================== */

.main-nav li {
  position: relative;
}

.has-dropdown > a::after {
  content: " \25BE";
  font-size: 11px;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  padding: 10px 0;
  z-index: 9999;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--lightGray);
  color: var(--forestGreen);
}

.has-dropdown:hover .dropdown-menu {
  display: block !important;
}

/* ======================================================
   MOBILE DROPDOWN MENU
====================================================== */

@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    display: block !important;
    min-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 8px 0 0 14px;
    background: transparent;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }

}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-text {
  color: var(--textDark);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  color: var(--forestGreen);
  font-weight: 800;
}

.video-placeholder {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.video-placeholder p {
  max-width: 640px;
  margin: 0 auto 24px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   PROJECT CASE STUDIES
====================================================== */

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-body {
  padding: 26px;
}

.project-kicker {
  color: var(--forestGreen);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--mediumGray);
  margin-bottom: 18px;
}

.project-card a {
  color: var(--forestGreen);
  font-weight: 800;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-photo {
  position: relative;
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-photo img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: contain;
  background: var(--lightGray);
}

.project-photo figcaption {
  padding: 16px 18px;
  color: var(--mediumGray);
  font-weight: 700;
}

.project-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-label-after {
  background: var(--forestGreen);
}

@media (max-width: 992px) {
  .project-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .project-photo img {
    height: clamp(240px, 78vw, 360px);
  }
}
