/* ── Reset & Variables ──────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --green: #4a7c3f;
  --green-dark: #3a6331;
  --green-light: #6ea55e;
  --lime: #8cbc3d;
  --brown: #3d3529;
  --brown-light: #5a4f40;
  --cream: #f9f7f2;
  --cream-dark: #f0ece3;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
html {
  scroll-behavior: smooth
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25
}
a {
  text-decoration: none;
  color: inherit
}
img {
  max-width: 100%;
  display: block
}
/* ── Service Hero ───────────────────────────────── */
.svc-hero {
  position: relative;
  padding: 160px 40px 100px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden
}
.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none
}
.svc-hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px
}
.svc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px
}
.svc-hero h1 span {
  color: var(--lime)
}
.svc-hero p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  opacity: .9;
  line-height: 1.8
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}
/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: var(--transition);
  border: none
}
.btn-white {
  background: var(--white);
  color: var(--green-dark)
}
.btn-white:hover {
  background: var(--lime);
  color: var(--white)
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .5)
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1)
}
.btn-green {
  background: var(--green);
  color: var(--white)
}
.btn-green:hover {
  background: var(--green-dark)
}
/* ── Section Shared ─────────────────────────────── */
.section {
  padding: 80px 24px
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--brown)
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: .95rem
}
/* ── Overview ────────────────────────────────────── */
.overview {
  background: var(--cream)
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto
}
.overview-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px
}
.overview-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8
}
.overview-text .section-label {
  text-align: left
}
.overview-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}
.overview-img img {
  width: 100%;
  height: 360px;
  object-fit: cover
}
/* ── Features Grid ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition)
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--green-light)
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px
}
.feature-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.7
}
/* ── Process Steps ──────────────────────────────── */
.process-bg {
  background: var(--cream)
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto
}
.process-step {
  text-align: center
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}
.process-step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px
}
.process-step p {
  color: var(--gray);
  font-size: .85rem;
  line-height: 1.7
}
/* ── Pricing Snapshot ────────────────────────────── */
.pricing-snapshot {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  border-radius: var(--radius);
  max-width: 900px;
  margin: 0 auto
}
.pricing-snapshot h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #fff;
}
.pricing-snapshot .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--lime);
  margin: 16px 0 8px
}
.pricing-snapshot .price-note {
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 28px
}
/* ── Gallery ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition)
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg)
}
/* ── FAQ ──────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto
}
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0
}
.faq-q {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  transition: var(--transition);
  color: var(--green)
}
.faq-item.open .faq-q::after {
  content: '−'
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.8
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 12px
}
/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 80px 24px
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: #fff;
}
.cta-banner p {
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: .95rem
}
/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, .7);
  padding: 60px 40px 30px;
  font-size: .82rem
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px
}
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 1px
}
.footer-brand small {
  display: block;
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .7
}
footer h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px
}
footer a {
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
  display: block;
  margin-bottom: 8px
}
footer a:hover {
  color: var(--lime)
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  text-align: center;
  font-size: .75rem;
  opacity: .6
}
/* ── Back to Top ─────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow)
}
#btt.visible {
  opacity: 1;
  visibility: visible
}

/* ====== Expanded gallery grid — 4 columns on desktop ====== */
.gallery-grid-expanded {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-grid-expanded img {
  height: 220px;
}

/* ====== Before/After gallery — side-by-side pairs ====== */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-pair h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-align: center;
}
.ba-pair .pm-ba-container {
  height: 280px;
}

/* ====== Video embed — responsive 16:9 ====== */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  overflow: hidden;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.video-play-btn:hover { background: rgba(74,124,63,0.9); }

/* Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.video-lightbox.active { display: flex; }
.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.video-lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}
.video-lightbox-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.video-lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

/* ====== Responsive adjustments ====== */
@media (max-width: 768px) {
  .ba-pair .pm-ba-container {
    height: 220px;
  }
  .gallery-grid-expanded img {
    height: 180px;
  }
}

/* Gallery Lightbox Cursor */
.gallery-grid img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

/* Lightbox Content */
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Caption & Counter */
.lightbox-caption {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 16px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lightbox-counter {
  color: #888;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  color: #4a7c3f; /* matches site's green accent */
  transform: scale(1.1);
}

/* Prev/Next Buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 16px 14px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(74, 124, 63, 0.6); /* green accent hover */
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.4rem;
    padding: 12px 10px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }
}

/* === Gallery Lightbox Overlay === */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay .lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  padding: 18px;
}

.lightbox-overlay .lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  min-height: 18px;
  margin: 0;
}

.lightbox-overlay .lightbox-counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.lightbox-overlay .lightbox-prev,
.lightbox-overlay .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay .lightbox-prev { left: 16px; }
.lightbox-overlay .lightbox-next { right: 16px; }

.lightbox-overlay .lightbox-close:hover,
.lightbox-overlay .lightbox-prev:hover,
.lightbox-overlay .lightbox-next:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Responsive ──────────────────────────────────── */
@media(max-width:768px) {
  header {
    padding: 10px 20px
  }
  header nav ul {
    display: none
  }
  .menu-toggle {
    display: block
  }
  .svc-hero {
    padding: 130px 20px 70px
  }
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
 .section {
	padding: 56px 20px;  
	}
}