/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  background: #000;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

/* overflow-x: clip (not hidden) on body only — hidden pairs with an implicit overflow-y:auto
   per the CSS overflow spec, turning body into its own scroll container and breaking
   position:sticky (it loses its reference to the real page scroll). clip avoids that pairing
   while still trimming the few px of horizontal bleed from the carousel's 3D transforms. */
body {
  overflow-x: clip;
}

a {
  text-decoration: none;
}

/* ---------- Hero Section (hidden — video replaces it) ---------- */
.hero {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../Website Photos/hero.jpg");
  background-size: cover;
  background-position: center;
  clip-path: circle(0% at 50% 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* ---------- Logo ---------- */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  transform: translate(-50%, -50%) perspective(600px) rotateY(0deg);
  z-index: 10;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
  border-radius: 50%;
  background: transparent;
}

@media (min-width: 768px) {
  .logo {
    width: 320px;
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-divider {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.pill {
  background: rgba(20, 20, 20, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.pill:hover {
  background: rgba(20, 20, 20, 0.95);
}

.pill-call {
  background: #2D6A2D;
}

.pill-call:hover {
  background: #245424;
}

@media (min-width: 768px) {
  .nav {
    top: 28px;
    right: 32px;
    gap: 16px;
  }
  .pill {
    font-size: 1.05rem;
    padding: 0.75em 1.7em;
  }
  .nav-divider {
    font-size: 0.9rem;
  }
}

/* ---------- Hero Image ---------- */
.hero-image-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrap picture {
  display: contents;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Phone screens are much taller/narrower than the photo itself, so a full 100vh box forces a very
   tight crop to "cover" it. Matching the box's aspect ratio to the source photo (1000x563) on
   mobile only shows the whole photo with zero cropping — no bars needed since the shapes match
   exactly. Desktop keeps the full 100vh. */
@media (max-width: 899px) {
  .hero-image-wrap {
    height: auto;
    aspect-ratio: 1000 / 914;
  }
}

.hero-image-wrap.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

html.skip-intro .hero-bg {
  clip-path: circle(150% at 50% 50%);
}

@keyframes lio-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Stage 2: Dark Panel ---------- */
.dark-panel {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  background: #0a0a0a;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding: 120px 24px 80px;
}

.dark-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dark-panel-left {
  color: #fff;
}

.dp-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.dp-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #e6e6e6;
  margin-bottom: 20px;
  max-width: 480px;
}

.dp-intro {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 24px;
  max-width: 480px;
}

.dp-cta {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.dp-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2D6A2D;
  letter-spacing: 0.02em;
}

.dp-phone:hover {
  text-decoration: underline;
}

.dark-panel-left .card-detail-link {
  display: block;
  margin-top: 12px;
}

.dark-panel-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 22px;
}

.review-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.review-stars {
  color: #2D6A2D;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .dark-panel {
    padding: 160px 60px 100px;
  }
  .dark-panel-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }
  .dark-panel-left {
    flex: 0 0 42%;
  }
  .dp-title {
    font-size: 3rem;
  }
  .dark-panel-right {
    flex: 0 0 50%;
  }
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* House Washing & Water Blasting carousel card only — the source photos are a wide, fisheye-ish
   shot with the house small in the middle and a lot of foreground lawn/sky around it. Scaling in
   crops that dead space away so the house itself reads clearly, without changing the card's own
   size. transform-origin (not object-position — with this photo's aspect ratio, object-fit:cover
   already matches the box height exactly, leaving no vertical slack for object-position to shift)
   is what actually moves the zoom's focal point up near the roofline instead of dead-centre, so
   the roof peak survives the crop instead of being cut off level with the sides. */
.ba-img-zoom-house {
  transform: scale(1.6);
  transform-origin: 50% 8%;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

/* Placeholder before-photo: darkened/desaturated copy of the after photo, used until a real -before.jpg exists */
.ba-before.ba-placeholder {
  filter: grayscale(80%) brightness(0.55) contrast(1.05);
}

.ba-label {
  position: absolute;
  top: 10px;
  z-index: 3;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
}

.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ---------- Stage 3: Ferris-wheel card carousel (phone: same 3D spin, scaled down, text-only
   cards — no before/after photos, since a phone-width card is too small to show one usefully).
   Desktop below re-scales everything up and brings the photos back. ---------- */
.carousel-section {
  position: relative;
  background: #0a0a0a;
  overflow: visible;
  height: 198vh;
  height: 198dvh;
  padding-bottom: 80px;
}

/* Extra safety net so the wide 3D card transforms can never create real horizontal scroll on
   phone — clip (not hidden) so it doesn't trigger the overflow-pairing that breaks position:sticky
   (see the body rule below for the full explanation). Visual layout is unaffected either way. */
@media (max-width: 899px) {
  .carousel-section {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100vw;
  }
}

.carousel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: visible;
  padding: 0;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel-stage {
  perspective: 700px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Mark — the wrapper carries position/size/spacing (unchanged from the old single-image rules);
   the two images inside are absolutely positioned on top of each other (height:100% resolves
   cleanly against the wrapper's own explicit height this way — a CSS grid stack was tried first
   but left percentage-heights unresolved against the implicit auto-sized track, rendering each
   photo at its raw natural pixel size instead of scaled to fit) and crossfade opacity as
   script.js swaps which one is visible, so Mark changes tool/photo as different cards front. */
.carousel-mark-wrap {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 73vh;
  margin: 0;
  z-index: 5;
}

.carousel-mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-mark.is-visible {
  opacity: 1;
}

.carousel-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  display: block;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  will-change: transform, opacity;
}

/* Phone cards show a static photo (no drag-to-reveal — the interactive before/after slider stays desktop-only, too fiddly at this size). */
.carousel-card .ba-slider,
.carousel-card .ba-slider-placeholder {
  display: block;
  position: relative;
  width: 100%;
  height: 55px;
  overflow: hidden;
}

.carousel-card .ba-slider-placeholder {
  display: flex;
}

@media (max-width: 899px) {
  .carousel-card .ba-before,
  .carousel-card .ba-divider,
  .carousel-card .ba-label {
    display: none;
  }
}

.carousel-card-body {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  background: transparent;
}

.carousel-card-body h3 {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}

.carousel-btn {
  display: inline-block;
  background: #2D6A2D;
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-btn:hover {
  background: #245424;
}

.carousel-card.active {
  box-shadow: 0 0 40px 8px rgba(255, 255, 255, 0.24);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

/* Progress indicator ("4 / 7" + a thin fill bar) — the ring scroll-spins at every width now, so
   this shows everywhere; desktop below just repositions it slightly lower. */
.carousel-progress {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

@media (max-width: 899px) {
  .carousel-progress {
    top: auto;
    bottom: 44px;
    z-index: 9999;
  }
}

.carousel-progress-count {
  color: #cfcfcf;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.carousel-progress-bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.carousel-progress-fill {
  height: 100%;
  width: 0%;
  background: #2D6A2D;
}

/* ---------- Stage 3: Ferris-wheel card carousel (desktop: vertical 3D circle, scroll-pinned) ---------- */
@media (min-width: 900px) {
  .carousel-section {
    height: 400vh;
    padding-bottom: 150px;
    overflow: visible;
  }

  .carousel-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    padding: 0;
  }

  .carousel-stage {
    perspective: 1800px;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
  }

  /* Mark: fixed z-index 5, sandwiched between cards passing in front (zIndex 999) and behind (zIndex 1).
     Mark now lives inside .carousel-track (a true sibling of .carousel-card), not in .carousel-stage —
     .carousel-track has transform-style:preserve-3d, which forces it to establish its own stacking
     context, so any element OUTSIDE .carousel-track (as Mark used to be) can never be interleaved
     with cards' individual z-index values no matter how those numbers are tuned. */
  .carousel-mark-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-150px);
    height: 70vh;
    margin: 0;
    z-index: 5;
  }

  .carousel-track {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    display: block;
    gap: 0;
  }

  .carousel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 345px;
    height: 320px;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.3s ease;
    will-change: transform, opacity;
  }

  /* Photos are back at desktop size — phone-only text cards hide these (see base rules above). */
  .carousel-card .ba-slider {
    display: block;
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    touch-action: pan-y;
    cursor: ew-resize;
    -webkit-user-select: none;
    user-select: none;
  }

  .carousel-card .ba-slider-placeholder {
    display: flex;
    width: 100%;
    height: 70%;
  }

  .carousel-card-body {
    height: 30%;
    gap: 14px;
    padding: 20px 24px;
    background: #111;
  }

  .carousel-card-body h3 {
    font-size: 1rem;
  }

  .carousel-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .carousel-card.active {
    box-shadow: 0 0 70px 12px rgba(255, 255, 255, 0.28);
    border: none;
  }

  .carousel-progress {
    bottom: 24px;
  }

  /* Performance: only the active (front-and-centre) card keeps its interactive before/after
     slider. The other 8 cards drop straight to a single static "after" photo — no before-image
     layer, no clip-path, no divider — cutting the number of large image layers the browser has to
     keep composited during the orbit animation roughly in half. display:none (not opacity/
     visibility) so these elements are fully removed from paint, not just hidden. */
  .carousel-card:not(.active) .ba-before,
  .carousel-card:not(.active) .ba-divider,
  .carousel-card:not(.active) .ba-label {
    display: none;
  }
}

/* ---------- Card detail modal (opens on click, independent of the 3D ring's own transforms) ---------- */
.card-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.card-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.card-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.card-modal-panel {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 32px 32px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.card-modal.open .card-modal-panel {
  transform: translateY(0);
}

.card-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.card-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

body.modal-open {
  overflow: hidden;
}

.card-detail-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.card-detail-intro {
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-detail-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 0;
  margin: 0 0 20px;
}

.card-detail-includes li {
  color: #e6e6e6;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.4em 1em;
}

.card-detail-area {
  color: #9a9a9a;
  font-size: 0.85rem;
  margin: 4px 0 20px;
}

.card-detail-sub {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.card-detail-sub:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 4px;
}

.card-detail-sub h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-detail-sub p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.card-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.card-detail-link {
  color: #4CAF50;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.card-detail-link:hover {
  color: #6fcf6f;
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: #0a0a0a;
  padding: 72px 24px;
}

.why-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  padding: 0;
  margin: 0;
}

.why-list li {
  color: #e6e6e6;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.7em 1.4em;
}

.why-list li::before {
  content: "✓ ";
  color: #2D6A2D;
  font-weight: 800;
}

/* ---------- Service area map ---------- */
.service-area-section {
  background: #111;
  padding: 64px 24px;
}

.service-area-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.service-area-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-area-sub {
  color: #cfcfcf;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.service-area-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 0;
}

.service-area-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.6) 100%);
}

.service-area-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.service-area-outline path {
  fill: rgba(45, 106, 45, 0.12);
  stroke: #3ea63e;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
}

/* ---------- Contact / Quote form ---------- */
.contact-section {
  background: #111;
  padding: 72px 24px 88px;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-lead {
  color: #cfcfcf;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9em 1.6em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-call {
  background: #2D6A2D;
  color: #fff;
}

.btn-call:hover {
  background: #245424;
}

.btn-text {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-text:hover {
  border-color: #fff;
}

.quote-form {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  color: #cfcfcf;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.75em 0.9em;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #2D6A2D;
}

.field textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: #2D6A2D;
  color: #fff;
  font-size: 1.05rem;
  padding: 0.9em 1.6em;
}

.btn-submit:hover {
  background: #245424;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  max-width: 900px;
  margin: 0 auto;
  color: #9a9a9a;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.7;
}

.site-footer a {
  color: #cfcfcf;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  margin-top: 8px !important;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #cfcfcf;
  transition: background 0.15s ease, color 0.15s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background: #2D6A2D;
  color: #fff;
}

/* ==========================================================================
   Service pages (lawn-mowing.html, water-blasting.html, etc.) — shared look
   ========================================================================== */

.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-header-brand:hover {
  color: #cfcfcf;
}

.service-hero {
  background: #0a0a0a;
  padding: 48px 20px 40px;
  text-align: center;
}

.service-hero-eyebrow {
  color: #4CAF50;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 14px;
}

.service-hero-sub {
  color: #cfcfcf;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

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

.service-photo {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-photo .ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: ew-resize;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

/* Honest stand-in for services with no real before/after photos yet — a plain "coming soon" box
   rather than quietly reusing an unrelated photo as a fake comparison. Sized to match .ba-slider
   in whichever context it's used (service-page hero photo, or a carousel card). */
.ba-slider-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #9a9a9a;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-photo .ba-slider-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.service-main {
  background: #111;
  padding: 56px 20px 16px;
}

.service-main-inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-main-inner h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 16px;
}

.service-main-inner h2:first-child {
  margin-top: 0;
}

.service-main-inner p {
  color: #cfcfcf;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-main-inner p a {
  color: #4CAF50;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-main-inner p a:hover {
  color: #6fcf6f;
}

.included-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 0;
  margin: 0 0 18px;
}

.included-list li {
  color: #e6e6e6;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5em 1.1em;
}

.price-line {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  background: rgba(45, 106, 45, 0.15);
  border: 1px solid rgba(45, 106, 45, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 18px;
}

.service-reviews {
  background: #111;
  padding: 16px 20px 56px;
}

.service-reviews-inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-reviews-inner h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-section {
  background: #0a0a0a;
  padding: 56px 20px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-inner h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-item h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  color: #cfcfcf;
  font-size: 0.98rem;
  line-height: 1.6;
}

.related-section {
  background: #111;
  padding: 48px 20px 64px;
  text-align: center;
}

.related-inner {
  max-width: 760px;
  margin: 0 auto;
}

.related-inner h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.related-links a {
  color: #4CAF50;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-links a:hover {
  color: #6fcf6f;
}

.related-home-link {
  color: #cfcfcf;
  font-size: 0.9rem;
}

.related-home-link:hover {
  color: #fff;
}

@media (min-width: 900px) {
  .service-hero {
    padding: 64px 24px 56px;
  }
  .service-hero h1 {
    font-size: 2.8rem;
  }
  .service-main-inner h2,
  .service-reviews-inner h2,
  .faq-inner h2 {
    font-size: 1.8rem;
  }
}

/* ---------- Second reviews block (home page, under the orbital cards) ---------- */
.reviews-section {
  background: #0a0a0a;
  padding: 64px 20px;
}

.reviews-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-section-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
}

.reviews-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-date {
  color: #8a8a8a;
  font-size: 0.85rem;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .reviews-section-title {
    font-size: 2.2rem;
  }
  .reviews-section-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Service page enquiry form (near the bottom, above the footer) ---------- */
.service-form-section {
  background: #111;
  padding: 56px 20px 64px;
}

.service-form-inner {
  max-width: 560px;
  margin: 0 auto;
}

.service-form-inner h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}

.service-form-intro {
  color: #cfcfcf;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* ---------- Before and After section (service pages) ---------- */
.before-after-section {
  background: #0a0a0a;
  padding: 56px 20px;
}

.before-after-inner {
  max-width: 900px;
  margin: 0 auto;
}

.before-after-inner > h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.before-after-inner h3 {
  color: #cfcfcf;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 28px 0 14px;
}

.before-after-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.before-after-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.before-after-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.before-after-photo figcaption {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 16px;
}

@media (min-width: 640px) {
  .before-after-pair {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ---------- About page photo ---------- */
.about-photo-section {
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  padding: 24px 20px 4px;
}

.about-photo {
  height: 340px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .about-photo {
    height: 480px;
  }
}
