/* =========================================
   Cypress Creek Junk Removal – Main Styles
   Color Palette:
     Forest Green (primary):  #1e4d2b
     Warm Orange (accent):    #e07020
     Off-White (bg):          #f8f5f0
     White:                   #ffffff
     Dark Text:               #1a2020
     Mid Gray:                #5a6a6a
     Light Border:            #dde5e0
   ========================================= */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a2020;
  background: #ffffff;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2020;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: #3a4a4a; }

/* --- Layout Helpers --------------------------------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 780px; margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: #f4f8f5; }
.mt-lg { margin-top: 1.5rem; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: #e07020;
  color: #fff;
  border-color: #e07020;
}
.btn-primary:hover { background: #c45e10; border-color: #c45e10; }

.btn-secondary {
  background: #1e4d2b;
  color: #fff;
  border-color: #1e4d2b;
}
.btn-secondary:hover { background: #163821; border-color: #163821; }

.btn-outline {
  background: transparent;
  color: #1e4d2b;
  border-color: #1e4d2b;
}
.btn-outline:hover { background: #1e4d2b; color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-sm  { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-lg  { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn-xl  { padding: 1rem 2.4rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 1.8rem; line-height: 1; }
.logo-icon-img { height: 6.5rem; width: auto; display: block; }
.footer-logo-img { height: 5rem; width: auto; display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #1e4d2b;
}
.logo-text small {
  font-size: .72rem;
  color: #e07020;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .5rem .8rem;
  font-size: .9rem;
  font-weight: 600;
  color: #1a2020;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: #1e4d2b; background: #edf4ef; }
.dropdown-arrow { font-size: .7rem; margin-left: .2rem; }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  background: #fff;
  border: 1px solid #dde5e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 240px;
  z-index: 100;
  padding: .5rem 0;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .9rem;
  color: #1a2020;
  transition: background .15s;
}
.dropdown-menu li a:hover { background: #edf4ef; color: #1e4d2b; }
.dropdown-menu li:last-child a { color: #e07020; font-weight: 600; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: #1e4d2b;
}
.header-phone:hover { color: #e07020; }
.phone-icon { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e4d2b;
  border-radius: 2px;
  transition: all .25s;
}

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(10, 35, 18, .5) 0%, rgba(10, 35, 18, .6) 35%, rgba(10, 35, 18, .9) 55%, rgba(10, 35, 18, 1) 65%),
    var(--hero-url, none) -200px center / auto 100% no-repeat;
  background-color: #1a3d22;
  background-color: #1e4d2b; /* fallback while no image */
  padding: 5rem 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-ghost-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 525px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.hero-ghost-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(224, 112, 32, .9);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.hero-headline {
  color: #ffffff;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-subheadline {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* --- Stats Bar -------------------------------------------- */
.stats-bar {
  background: #1e4d2b;
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: .3rem; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #e07020;
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* --- Section Headers -------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #e07020;
  margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: #5a6a6a; font-size: 1.05rem; }

/* --- Services Grid ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dde5e0;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,77,43,.12);
  border-color: #1e4d2b;
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { color: #5a6a6a; font-size: .92rem; flex: 1; }
.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #e07020;
  font-weight: 700;
  font-size: .88rem;
}
.services-cta { text-align: center; margin-top: 3rem; }

/* --- How It Works ----------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.step-number {
  width: 52px;
  height: 52px;
  background: #e07020;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-card h3 { margin-bottom: .6rem; }
.step-card p { color: #5a6a6a; font-size: .92rem; }
.step-connector {
  font-size: 2rem;
  color: #c0d4c8;
  font-weight: 300;
  padding-top: 2.5rem;
  align-self: start;
}
.steps-cta { text-align: center; margin-top: 3rem; }

/* --- Why Us ----------------------------------------------- */
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-lead {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
  color: #3a4a4a;
}
.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.why-us-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.why-us-list strong { display: block; margin-bottom: .25rem; }
.why-us-list p { color: #5a6a6a; font-size: .92rem; margin: 0; }

.image-placeholder {
  background: #edf4ef;
  border: 2px dashed #a8c8b0;
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: #6a8a72;
}
.image-placeholder span { font-size: 3rem; }
.image-placeholder p { font-weight: 600; margin: 0; }
.image-placeholder small { font-size: .8rem; }
.crew-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }

/* --- Service Areas ---------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.area-card {
  background: #fff;
  border: 1px solid #dde5e0;
  border-radius: 8px;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.area-card:hover { border-color: #1e4d2b; background: #edf4ef; }
.area-icon { font-size: 1rem; }
.areas-note {
  text-align: center;
  color: #5a6a6a;
  font-size: .95rem;
}
.areas-note a { color: #1e4d2b; font-weight: 600; text-decoration: underline; }

/* --- Testimonials ----------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #dde5e0;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { color: #f0a500; font-size: 1.1rem; letter-spacing: .1em; }
blockquote {
  color: #3a4a4a;
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  gap: .2rem;
}
cite strong { font-size: .95rem; color: #1a2020; }
cite span { font-size: .8rem; color: #8a9a9a; }
.review-cta { text-align: center; }
.review-cta p { margin-bottom: 1rem; color: #5a6a6a; }

/* --- FAQ -------------------------------------------------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid #dde5e0;
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #e07020;
  flex-shrink: 0;
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: #1e4d2b; }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: #5a6a6a;
  font-size: .95rem;
}

/* --- Footer ----------------------------------------------- */
.footer-cta-band {
  background: #e07020;
  padding: 4rem 0;
  text-align: center;
}
.footer-cta-band h2 { color: #fff; margin-bottom: .75rem; }
.footer-cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }
.footer-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.footer-cta-band .btn-primary { background: #fff; color: #e07020; border-color: #fff; }
.footer-cta-band .btn-primary:hover { background: #fff3ea; }
.footer-cta-band .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.footer-cta-band .btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.footer-main { background: #111d14; padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text strong,
.logo-light .logo-text strong { color: #a8d8b0; }
.logo-light .logo-text small   { color: #e07020; }
.footer-brand > p {
  margin: 1rem 0 1.25rem;
  color: #8a9a8a;
  font-size: .9rem;
  line-height: 1.7;
}
.footer-contact p { margin: .35rem 0; font-size: .88rem; color: #8a9a8a; }
.footer-contact a { color: #a8d8b0; }
.footer-contact a:hover { color: #e07020; }

.footer-col h4 {
  color: #ffffff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col li {
  font-size: .88rem;
  color: #8a9a8a;
}
.footer-col li a { color: #8a9a8a; transition: color .2s; }
.footer-col li a:hover { color: #a8d8b0; }

.footer-bottom {
  background: #0c1510;
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .82rem; color: #5a6a5a; margin: 0; }

/* --- Page Hero (interior pages) --------------------------- */
.page-hero {
  background: linear-gradient(135deg, #1e4d2b 0%, #163821 100%);
  padding: 4rem 0 3.5rem;
}
.page-hero h1 { color: #fff; }
.page-subtitle { color: rgba(255,255,255,.8); margin-top: .6rem; font-size: 1.1rem; }

/* --- Gallery -------------------------------------------- */
.gallery-job {
  margin-bottom: 3.5rem;
}
.gallery-job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e4d2b;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #e07020;
  display: inline-block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #edf4ef;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.gallery-item img.rotate-cw {
  transform: rotate(90deg) scale(.75);
}
.gallery-item img.rotate-cw:hover {
  transform: rotate(90deg) scale(.78);
}
.photo-label {
  position: absolute;
  top: .6rem;
  left: .6rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .65rem;
  border-radius: 4px;
  z-index: 2;
}
.photo-label.before  { background: #c0392b; color: #fff; }
.photo-label.after   { background: #1e4d2b; color: #fff; }
.photo-label.action  { background: #e07020; color: #fff; }
.gallery-cta {
  text-align: center;
  padding: 2.5rem 0 1rem;
}
.gallery-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e4d2b;
  margin-bottom: 1rem;
}
.gallery-empty {
  text-align: center;
  padding: 4rem 0;
  color: #666;
  font-size: 1.1rem;
}
.gallery-empty p { margin-bottom: 1.5rem; }
@media (max-width: 600px) {
  .gallery-grid-2 { grid-template-columns: 1fr; }
}

/* --- About Page ------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 6rem;
}
.about-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  display: block;
}
.about-photo-caption {
  margin-top: .75rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: #5a6a6a;
}

/* Services List Heading (H2 for SEO hierarchy) */
.services-list-heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #1e4d2b;
  font-size: 1.6rem;
}

/* --- Page Content (interior) ------------------------------ */
.page-content h2 { margin: 2rem 0 .75rem; }
.page-content h3 { margin: 1.5rem 0 .5rem; }
.page-content p  { margin-bottom: 1rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: .5rem; }

/* --- Contact Page ----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap h2, .contact-info h2 { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-group label { font-weight: 600; font-size: .88rem; color: #1a2020; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #dde5e0;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: #1a2020;
  background: #fff;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e4d2b;
  box-shadow: 0 0 0 3px rgba(30,77,43,.1);
}
.form-group textarea { resize: vertical; }
.label-optional { font-weight: 400; color: #666; font-size: .82rem; }
.file-input { padding: .5rem; background: #f4f8f5; cursor: pointer; }
.photo-hint { font-size: .85rem; color: #555; margin-top: .4rem; }
.photo-hint a { color: #1e4d2b; font-weight: 600; text-decoration: none; }
.photo-hint a:hover { text-decoration: underline; }

.contact-info-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #dde5e0;
}
.contact-info-block:last-of-type { border-bottom: none; }
.contact-info-block h4 { margin-bottom: .5rem; font-size: 1rem; }
.contact-info-block p { margin: .2rem 0; }
.contact-info-block a { color: #1e4d2b; font-weight: 600; }
.contact-promise {
  background: #edf4ef;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: #1e4d2b;
  font-weight: 600;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .areas-grid    { grid-template-columns: repeat(3, 1fr); }
  .steps-grid    { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .why-us-inner  { grid-template-columns: 1fr; }
  .why-us-image  { display: none; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.open .nav-link { font-size: 1.2rem; padding: .85rem .5rem; border-bottom: 1px solid #eee; }
  .main-nav.open .dropdown-menu { display: flex; flex-direction: column; position: static; box-shadow: none; border: none; padding-left: 1rem; }

  .hero-ghost-logo { display: none; }
  .hero {
    min-height: 500px;
    padding: 4rem 0;
    background: #1e4d2b;
  }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .about-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap  { position: static; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: .5rem; }
}
