/* ============================================================
   HOME PAGE — v4  Clean rewrite
   ============================================================ */

/* ── Shared ── */
.section-header { margin-bottom: 3rem; }
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   HERO
   Dark overlay on photo, logo centred small,
   headline + service line + subtitle + buttons
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark enough to read white text, matches screenshot */
  background: rgba(0,0,0,0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* Logo — doubled from 240px to 480px */
.hero-logo-img {
  width: clamp(280px, 40vw, 480px);
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 32px rgba(106,184,32,0.5));
  animation: fadeUp 0.7s ease both;
}

.hero-headline {
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  animation: fadeUp 0.7s 0.12s ease both;
}

/* Green caps service types line */
.hero-services-line {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.7s 0.22s ease both;
}

.hero-region {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.32s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.42s ease both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-condensed);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(106,184,32,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ══════════════════════════════════════
   SERVICES
   Light background. 2×2 grid of cards.
   Each card: photo top (relevant SVG icon overlay),
   then icon-pill + title + body on white.
══════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: #f7f8f5;
}
.services .section-label { color: #3a6e3a; }
.services .section-title { color: #1a2e1a; }

.services-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-tile {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e8e2;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}

/* ── Service photo area: real photos ── */
.service-tile-img {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  background: #2d5a2d;
}
.service-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.service-tile:hover .service-tile-img img { transform: scale(1.05); }

/* Content below the illustration */
.tile-content {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tile-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.tile-icon-pill {
  width: 42px;
  height: 42px;
  background: rgba(106,184,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3a6e3a;
}
.tile-icon-pill svg { width: 22px; height: 22px; }

.tile-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e1a;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-body);
}
.tile-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.tile-cta { display: none; }
.tile-overlay { display: none; }


/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.gallery-loading {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem;
  color: var(--grey);
  font-size: 0.9rem;
  font-family: var(--font-condensed);
  letter-spacing: 0.1em;
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--grey-line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.ba-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-line);
  background: var(--black-mid);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.ba-card:hover {
  border-color: rgba(106,184,32,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Before/After: images fill the full card, fixed height */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 260px;
  position: relative;
  flex: 1;
}
.ba-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-card:hover .ba-img-wrap img { transform: scale(1.03); transition: transform 0.4s ease; }

/* Single image card — same fixed height */
.ba-card--single .ba-single-wrap {
  height: 260px;
  overflow: hidden;
  flex: 1;
}
.ba-card--single .ba-single-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.ba-card--single:hover .ba-single-wrap img { transform: scale(1.03); }
.ba-badge {
  position: absolute;
  top: 0.5rem; left: 0.5rem;
  background: var(--black);
  color: var(--green);
  font-family: var(--font-condensed);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(106,184,32,0.4);
}
.ba-badge.after { color: var(--white); border-color: rgba(255,255,255,0.2); }
.ba-divider {
  width: 2px; background: var(--green);
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%); z-index: 2;
}
.ba-caption {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--grey-line);
  flex-shrink: 0;
}
.ba-caption h4 {
  font-family: var(--font-condensed);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.2rem;
}
.ba-caption p { font-size: 0.78rem; color: var(--grey); font-weight: 300; }
.gallery-empty {
  grid-column: 1/-1;
  text-align: center; padding: 4rem;
  color: var(--grey);
  font-family: var(--font-condensed);
  font-size: 0.9rem; letter-spacing: 0.1em;
}


/* ══════════════════════════════════════
   COST ESTIMATOR
══════════════════════════════════════ */
.estimator-section {
  padding: var(--section-pad) 0;
  background: var(--black-mid);
  position: relative;
}
.estimator-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.estimator-inner { max-width: 960px; }
.estimator-tool {
  display: grid;
  grid-template-columns: 1fr 260px;
  background: var(--black-soft);
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  overflow: hidden;
}
.estimator-controls { padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.est-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.85rem;
}
/* Acres number input */
.acres-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}
.acres-number-input {
  flex: 1;
  background: var(--black);
  border: 1.5px solid var(--grey-dark);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  outline: none;
  transition: border-color var(--ease);
  text-align: center;
  -moz-appearance: textfield;
}
.acres-number-input::-webkit-outer-spin-button,
.acres-number-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.acres-number-input:focus { border-color: var(--green); }
.acres-unit {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.acres-hint {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}
.est-manual-quote {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(106,184,32,0.08);
  border: 1px solid rgba(106,184,32,0.3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  animation: fadeUp 0.25s ease both;
}
.est-manual-quote svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.est-manual-quote strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.est-manual-quote p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 300;
}
.est-select {
  width: 100%;
  background: var(--black);
  border: 1.5px solid var(--grey-dark);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--ease);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23888' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.est-select:focus { border-color: var(--green); }
.est-select option { background: #1e1e1e; }

.est-row { margin-bottom: 1.75rem; }
.est-row:last-child { margin-bottom: 0; }

/* Acres options - 5 columns */
.size-options--acres {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

/* Estimator placeholder */
.est-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
}
.est-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--grey-dark);
}
.est-placeholder p {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--grey);
}
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--grey-dark);
  border-radius: 100px;
  font-family: var(--font-condensed);
  font-size: 0.88rem; font-weight: 600;
  color: var(--grey); background: transparent; cursor: pointer;
  transition: all var(--ease);
}
.service-pill:hover { border-color: var(--green); color: var(--green); }
.service-pill.active { background: var(--green); border-color: var(--green); color: var(--black); }
.pill-loading { color: var(--grey); font-size: 0.85rem; }

.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.size-opt { cursor: pointer; }
.size-opt input { display: none; }
.size-opt span {
  display: block;
  padding: 0.7rem 0.4rem;
  background: var(--black);
  border: 1.5px solid var(--grey-dark);
  border-radius: 6px; text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.88rem; font-weight: 600;
  color: var(--grey); transition: all var(--ease); line-height: 1.4;
}
.size-opt span em { display: block; font-style: normal; font-size: 0.7rem; font-weight: 400; opacity: 0.65; }
.size-opt input:checked + span { background: var(--green); border-color: var(--green); color: var(--black); }

.freq-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.freq-opt { cursor: pointer; }
.freq-opt input { display: none; }
.freq-opt span {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--black);
  border: 1.5px solid var(--grey-dark); border-radius: 100px;
  font-family: var(--font-condensed);
  font-size: 0.88rem; font-weight: 600;
  color: var(--grey); transition: all var(--ease);
}
.freq-opt input:checked + span { border-color: var(--green); color: var(--green); background: rgba(106,184,32,0.08); }
.discount-tag {
  font-style: normal; font-size: 0.68rem;
  background: var(--green); color: var(--black);
  padding: 0.1rem 0.4rem; border-radius: 3px; font-weight: 700;
}

.estimator-result {
  background: var(--black);
  border-left: 1px solid var(--grey-line);
  padding: 2.5rem 1.75rem;
  display: flex; align-items: center;
}
.result-inner { width: 100%; }
.result-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.6rem;
}
.result-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.6rem; }
.result-from { font-family: var(--font-condensed); font-size: 0.95rem; color: var(--grey); }
.result-num {
  font-family: var(--font-display);
  font-size: 3.2rem; color: var(--green); line-height: 1;
  transition: all 0.3s ease;
}
.result-note { font-size: 0.76rem; color: var(--grey); line-height: 1.6; font-weight: 300; }


/* ══════════════════════════════════════
   WHY CHOOSE US
   Light bg. Left col: heading + body + 2×2 feature list.
   Right col: photo only. No random Unsplash images.
══════════════════════════════════════ */
.about-section {
  padding: var(--section-pad) 0;
  background: #f7f8f5;
}

.why-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left */
.why-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1a2e1a;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.why-body-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.85rem;
}

/* 2×2 icon feature list */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-top: 1.75rem;
}
.why-feature { display: flex; gap: 0.85rem; align-items: flex-start; }
.why-feature-icon {
  width: 38px; height: 38px;
  background: rgba(106,184,32,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #3a6e3a;
}
.why-feature-icon svg { width: 19px; height: 19px; }
.why-feature-text h4 {
  font-size: 0.94rem; font-weight: 700;
  color: #1a2e1a; margin-bottom: 0.2rem;
  font-family: var(--font-body);
}
.why-feature-text p { font-size: 0.84rem; color: #666; line-height: 1.5; }

/* Right — real photo */
.why-right { }
.why-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  height: 480px;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Service areas strip */
.service-areas-row {
  background: var(--black-mid);
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-top: 3.5rem;
}
.service-areas-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 1.25rem;
}
.area-list-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.area-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  flex-shrink: 0; margin-top: 0.3rem;
}
.area-item strong {
  font-family: var(--font-condensed);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--white); display: block;
}
.area-item p { font-size: 0.82rem; color: var(--grey); font-weight: 300; margin-top: 0.1rem; }


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--black-mid);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--ease);
}
.review-card.featured {
  background: var(--black);
  border-color: rgba(106,184,32,0.35);
}
.review-stars { color: var(--green); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.review-card p {
  font-size: 0.93rem; font-weight: 300; font-style: italic;
  line-height: 1.75; color: var(--white-dim); margin-bottom: 1.25rem;
}
.review-name {
  font-family: var(--font-condensed);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--green); text-transform: uppercase;
}


/* ══════════════════════════════════════
   BOOKING FORM
══════════════════════════════════════ */
.book-section {
  padding: var(--section-pad) 0;
  background: var(--black-mid);
  position: relative;
}
.book-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.booking-form {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.btn-submit { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite; display: inline-block;
}


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-tile-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-photo { height: 300px; }
  .estimator-tool { grid-template-columns: 1fr; }
  .estimator-result { border-left: none; border-top: 1px solid var(--grey-line); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero-logo-img { width: clamp(200px, 60vw, 320px); }
  .hero-headline { font-size: 1.4rem; }
  .services-tile-grid { grid-template-columns: 1fr; }
  .service-tile-img { height: 220px; }
  .why-features { grid-template-columns: 1fr; }
  .why-photo { height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; }
  .area-list-row { grid-template-columns: 1fr; gap: 1rem; }
  .size-options--acres { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .size-options { grid-template-columns: 1fr; }
  .freq-options { flex-direction: column; }
}
