/* =========================================================
   SERVICES ARCHIVE PAGE ONLY
========================================================= */

/* ===== PAGE HERO ===== */

.page-hero {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__content {
  max-width: 700px;
}

.page-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero__breadcrumb-sep {
  opacity: 0.7;
}

/* ===== INTRO ===== */

.svc-arc-intro {
  padding: 90px 0 90px;
}

.svc-arc-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.svc-arc-intro__heading {
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
}

.svc-arc-intro__heading-highlight {
  color: #e87c1e;
}

.section-paragraph {
  margin-top: 20px;
}

.svc-arc-intro__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.svc-arc-intro__btn-outline {
  background: transparent;
  border: 1px solid #650202;
  color: #650202;
}

.svc-arc-intro__btn-outline:hover {
  background: #650202;
  color: #fff;
}

.svc-arc-intro__img {
  width: 100%;
  height: 900px;
  object-fit: cover;
  margin-top: -250px;
  z-index: 99;
  position: relative;
}

/* ===== SERVICES GRID ===== */

.svc-arc-grid-section {
  padding-bottom: 90px;
}

.svc-arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-arc-card {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.svc-arc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.svc-arc-card__img-wrap {
  overflow: hidden;
}

.svc-arc-card__img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

.svc-arc-card:hover img {
  transform: scale(1.05);
}

.svc-arc-card__body {
  padding: 28px;
}

.svc-arc-card__title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.svc-arc-card__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.svc-arc-card__link {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.svc-arc-card__link:hover {
  color: #650202;
}

/* ===== WHY CHOOSE ===== */

.svc-arc-why {
  background: #faf3e9;
  padding: 100px 0;
}

.svc-arc-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-arc-why__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 35px 0 45px;
}

.svc-arc-why__check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.5;
}

.svc-arc-why__check-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #650202;
  margin-top: 5px;
  position: relative;
}

.svc-arc-why__check-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  left: 6px;
  top: 2px;
}

.svc-arc-why__stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.svc-arc-why__stat {
  background: #ffecd0;
  padding: 30px 40px;
  min-width: 160px;
  border-radius: 10px;
}

.svc-arc-why__stat-num {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #650202;
  line-height: 1;
  margin-bottom: 6px;
  text-align: center;
}

.svc-arc-why__stat-lbl {
  font-size: 14px;
  color: #3d3d3d;
}

.svc-arc-why__img-wrap img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

/* ===== FAQ ===== */

.svc-faq-section {
  padding: 100px 0;
}

.svc-faq-section__header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.svc-faq-section__list {
  max-width: 1050px;
  margin: auto;
}

.contact-section {
  margin-top: 80px;
}

/* ===== RESPONSIVE — ARCHIVE ===== */

@media (max-width: 1200px) {
  .svc-arc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-arc-intro__heading {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .svc-arc-grid,
  .svc-arc-intro__grid,
  .svc-arc-why__grid {
    grid-template-columns: 1fr;
  }

  .svc-arc-intro__img,
  .svc-arc-why__img-wrap img {
    height: auto;
  }

  .svc-arc-intro__heading {
    font-size: 42px;
  }

  .page-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .svc-arc-grid {
    grid-template-columns: 1fr;
  }

  .svc-arc-intro__heading {
    font-size: 34px;
  }

  .page-hero {
    padding: 80px 0;
  }

  .page-hero__title {
    font-size: 34px;
  }

  .svc-arc-card__img-wrap img {
    height: 260px;
  }

  .svc-arc-why__stats {
    flex-direction: column;
  }
}

/* =========================================================
   SINGLE SERVICE PAGE
========================================================= */

/* ===== INTRO ===== */

.svc-single-intro {
  padding: 80px 0;
}

.svc-single-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.svc-single-intro__heading {
  font-family: "Outfit", sans-serif;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
}

.svc-single-intro__heading-orange {
  color: #f0a020;
}

.svc-single-intro .section-paragraph {
  max-width: 760px;
  margin-bottom: 30px;
}

.svc-single-intro__stats {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.svc-single-intro__stat {
  border-radius: 11.249px;
  background: #ffecd0;
  padding: 18px 24px;
  min-width: 120px;
  text-align: center;
}

.svc-single-intro__stat-num {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #650202;
  margin-bottom: 5px;
}

.svc-single-intro__stat-lbl {
  font-size: 18px;
  color: #3d3d3d;
}

.svc-single-intro__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-single-intro__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 30px;
}

/* =========================================================
   WHAT'S INCLUDED  —  updated to match screenshot exactly
   Left: heading + desc + btn + 2-col image grid + icon checklist
   Right: 2 tall stacked images (no gap)
========================================================= */

.svc-included {
  padding: 90px 0;
  background: #fff;
}

/* Two-column grid: left ~60% | right ~40% */
.svc-included__grid {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: 64px;
  align-items: center;
}

/* ── Left column ── */

.svc-included__heading {
  font-family: "Outfit", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin-top: 10px;
  margin-bottom: 22px;
}

.svc-included__heading-orange {
  color: #e87c1e;
  font-weight: 700;
}

.svc-included__left .section-paragraph {
  font-size: 16px;
  line-height: 1.75;
  color: #3d3d3d;
  margin-bottom: 0;
  max-width: 680px;
}

/* CTA button spacing */
.svc-included__cta-btn {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 40px;
}

/* Wide 2-col image grid inside left col — images flush (no gap) */
.svc-included__img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.svc-included__img-grid-item {
  overflow: hidden;
}

.svc-included__img-grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.svc-included__img-grid-item:hover img {
  transform: scale(1.04);
}

/* Checklist — 2 columns, SVG icon + text */
.svc-included__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.svc-included__check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-included__check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-included__check-icon svg,
.svc-included__check-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.svc-included__check-text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.45;
}

/* ── Right column: 2 tall stacked images, zero gap ── */
.svc-included__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-included__right-img-wrap {
  overflow: hidden;
  width: 100%;
}

.svc-included__right-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.svc-included__right-img-wrap:hover img {
  transform: scale(1.03);
}

/* ===== SURFACES ===== */

.svc-surfaces {
  padding: 90px 0;
  background: #fafafa;
}

.svc-surfaces__header {
  margin-bottom: 35px;
}

.svc-surfaces__pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  width: 1000px;
  margin-inline: auto;
}

.svc-surfaces__pill {
  border: 1px solid #d8d8d8;
  padding: 8px 16px;
  font-size: 13px;
  background: #fff;
}

.svc-surfaces__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.svc-surfaces__card {
  background: #fffaf3;
  border-left: 4px solid #650202;
  padding: 28px;
}

.svc-surfaces__card-num {
  font-size: 14px;
  font-weight: 700;
  color: #650202;
  margin-bottom: 14px;
}

.svc-surfaces__card-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 500;
}

/* ===== PROCESS ===== */

.svc-process {
  padding: 90px 0;
}

.svc-process__header {
  margin-bottom: 60px;
}

.svc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.svc-process__step {
  background: #fff;
  border: 1px solid #ecdcc9;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  border-radius: 20px;
}

.svc-process__step-circle {
  width: 42px;
  height: 42px;
  background: #650202;
  color: #fff;
  border-radius: 50%;
  margin: -50px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.svc-process__step-title {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.svc-process__step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.svc-why-choose {
  background: #faf3e9;
  padding: 100px 0;
}

.svc-why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start; /* align-items: start so images don't stretch to text height */
}

/* ── LEFT COLUMN ── */
.svc-why-choose__left {
  padding-top: 20px; /* optical alignment with images */
}

/* Heading — bold, large, black, matching Image 2 */
.svc-why-choose__heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800; /* extra bold — matches the design */
  line-height: 1.1;
  color: #000;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Description paragraph */
.svc-why-choose__left .section-paragraph {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: #3d3d3d;
  margin-bottom: 30px;
  max-width: 620px;
}

/* ── CHECKLIST ── */
.svc-why-choose__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-why-choose__check-item {
  display: flex;
  align-items: center; /* vertically centre icon with text */
  gap: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.45;
}

/* SVG checkbox icon */
.svc-why-choose__check-svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}

/* ── REVIEW QUOTE BOX ── */
.svc-why-choose__review {
  background: #fff;
  border-left: 4px solid var(--maroon, #650202);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  max-width: 620px;
}

.svc-why-choose__review-stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.svc-why-choose__review-text {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #3d3d3d;
  line-height: 1.75;
  margin-bottom: 14px;
}

.svc-why-choose__review-author {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  margin: 0;
}

/* ── RIGHT COLUMN: 2 stacked images ── */
.svc-why-choose__img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap between the two images — matches Image 2 */
}

.svc-why-choose__img-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.svc-why-choose__img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-why-choose__img-wrap:hover img {
  transform: scale(1.04);
}

/* Top image: shorter landscape ratio */
.svc-why-choose__img-wrap--top img {
  height: 300px;
}

/* Bottom image: taller, fills more vertical space */
.svc-why-choose__img-wrap--bottom img {
  height: 400px;
}

/* ═══════════════════════════════════════════════════════
   ACF FIELD ADDITIONS for svc-why-choose
   Add these 2 fields to group_svc_why_choose in acf-services-fields.php
   (Paste inside the 'fields' array, after the existing img2 field)
   
   [ 'key' => 'field_svc_wc_review_text',   'label' => 'Review Quote Text',   'name' => 'svc_wc_review_text',   'type' => 'textarea', 'rows' => 3, 'instructions' => 'Leave blank to hide the review box.' ],
   [ 'key' => 'field_svc_wc_review_author', 'label' => 'Review Author',       'name' => 'svc_wc_review_author', 'type' => 'text' ],
═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .svc-why-choose__grid {
    gap: 50px;
  }
  .svc-why-choose__heading {
    font-size: 44px;
  }
  .svc-why-choose__img-wrap--top img {
    height: 240px;
  }
  .svc-why-choose__img-wrap--bottom img {
    height: 320px;
  }
}

@media (max-width: 900px) {
  .svc-why-choose__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* On tablet/mobile: images go side by side */
  .svc-why-choose__img-stack {
    flex-direction: row;
    gap: 16px;
  }
  .svc-why-choose__img-wrap--top img,
  .svc-why-choose__img-wrap--bottom img {
    height: 260px;
  }

  .svc-why-choose__heading {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .svc-why-choose {
    padding: 70px 0;
  }

  /* Stack images vertically again on small phones */
  .svc-why-choose__img-stack {
    flex-direction: column;
  }

  .svc-why-choose__img-wrap--top img {
    height: 220px;
  }
  .svc-why-choose__img-wrap--bottom img {
    height: 280px;
  }

  .svc-why-choose__heading {
    font-size: 30px;
  }

  .svc-why-choose__review {
    padding: 18px 20px;
  }
}

/* ===== FAQ ===== */

.svc-faq-section {
  padding: 90px 0;
}

.svc-faq-section__header {
  max-width: 850px;
  margin: 0 auto 50px;
}

.svc-faq-section__list {
  max-width: 1000px;
  margin: auto;
}

/* =========================================================
   RESPONSIVE — SINGLE SERVICE
========================================================= */

@media (max-width: 1200px) {
  .svc-process__steps,
  .svc-surfaces__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-single-intro__heading {
    font-size: 50px;
  }

  .svc-included__heading {
    font-size: 44px;
  }

  .svc-included__right-img-wrap img {
    height: 360px;
  }
  .svc-surfaces__pills {
    width: 100%;
  }
  .svc-single-intro {
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .svc-single-intro__grid,
  .svc-why-choose__grid {
    grid-template-columns: 1fr;
  }

  .svc-process__steps,
  .svc-surfaces__cards {
    grid-template-columns: 1fr;
  }

  /* included: stack cols */
  .svc-included__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* right images go side-by-side on tablet */
  .svc-included__right {
    flex-direction: row;
    gap: 16px;
  }

  .svc-included__right-img-wrap img {
    height: 280px;
  }

  .svc-included__heading {
    font-size: 38px;
  }

  .svc-single-intro__heading {
    font-size: 40px;
  }

  .svc-single-intro__img,
  .svc-why-choose__img--main {
    height: auto;
  }

  .svc-why-choose__img--overlay {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 20px;
    border: none;
  }
}

@media (max-width: 767px) {
  .svc-single-intro,
  .svc-included,
  .svc-surfaces,
  .svc-process,
  .svc-why-choose,
  .svc-faq-section {
    padding: 70px 0;
  }

  .svc-single-intro__heading {
    font-size: 34px;
  }

  .svc-included__heading {
    font-size: 30px;
  }

  .svc-included__img-grid {
    grid-template-columns: 1fr;
  }

  .svc-included__img-grid-item img {
    height: 240px;
  }

  .svc-included__checklist {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-included__right {
    flex-direction: column;
  }

  .svc-included__right-img-wrap img {
    height: 240px;
  }

  .svc-single-intro__stats {
    flex-direction: column;
  }

  .svc-single-intro__stat {
    width: 100%;
  }
}
