/* ============================================================
   SERVICE DETAIL PAGE  —  service-detail.css
   All classes are prefixed .sd-* to avoid any collisions
   ============================================================ */

/* ── Design tokens ── */
:root {
  --sd-cyan: #009ab5;
  --sd-text: #222222;
  --sd-white: #ffffff;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.sd-hero {
  position: relative;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 100px 0 120px;
  overflow: hidden;
  min-height: 385px;
  display: flex;
  align-items: center;
}

.sd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 0;
}

.sd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.sd-hero__inner h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}

.sd-hero__inner p {
  color: #ffffff;
  font-size: 18px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 60%;
  word-spacing: 2px;
  line-height: 1.5;
}

.sd-hero__inner span {
  display: block;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 990px) {
  .sd-hero {
    padding: 70px 0 80px;
    min-height: 380px;
  }

  .sd-hero__inner p {
    max-width: 100% !important;
  }
}

@media (max-width: 650px) {
  .sd-hero {
    min-height: 150px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Mobile / Tablet (≤ 990px) */
@media (max-width: 990px) {
  .sd-hero {
    padding: 70px 0 80px;
    min-height: 380px;
  }
}

/* Small Mobile (≤ 650px) */
@media (max-width: 650px) {
  .sd-hero {
    min-height: 160px;
  }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.sd-faq-section {
  background-color: #fff;
  padding: 60px 0;
}

.sd-faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 28px;
  line-height: 1.3;
}

.sd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-faq-item {
  background: #FD5003;
  border: 1px solid #FD5003;
  border-radius: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sd-faq-item.active {
  background: #ffffff;
  border: 1px solid #00196E;
  color: #000000;
}

.sd-faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 22px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sd-faq-item.active .sd-faq-btn {
  color: #000000;
}

.sd-faq-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-faq-icon svg {
  width: 100%;
  height: 100%;
}

/* Icon color: black on the orange (inactive) items, green on the active item */
.sd-faq-icon svg path {
  stroke: #000000;
}

.sd-faq-item.active .sd-faq-icon svg path {
  stroke: #000;
}

/* Plus (+) by default, becomes a minus (-) when the item is active */
.sd-faq-icon__vert {
  transition: opacity 0.2s ease;
}

.sd-faq-item.active .sd-faq-icon__vert {
  opacity: 0;
}

.sd-faq-content {
  padding: 0 22px 20px 22px;
}

.sd-faq-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
}

@media (max-width: 767px) {
  .sd-faq-section {
    padding: 40px 0;
  }

  .sd-faq-section h2 {
    font-size: 24px;
  }

  .sd-faq-btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  .sd-faq-content {
    padding: 0 16px 14px 16px;
  }
}

/* Third Content Section - Steps */
.third-content-section {
  padding: 20px 0;
  background: white;
}

.third-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.third-content-section h2 span {
  color: #292660;
}

.third-content-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
}

@media (max-width: 768px) {
  .third-content-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .third-content-section {
    padding: 0px 0;
  }
}

/* ══════════════════════════════════════════════════════
   CLEANING PROCESS
══════════════════════════════════════════════════════ */
.cleaning-process {
  padding: 60px 0;
  background: #ffffff;
  /* margin: 40px 0; */
}

.cleaning-process__header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "title  title"
    "text   text"
    "list   media";
  column-gap: 40px;
  row-gap: 16px;
  align-items: stretch;
}

.cleaning-process__header>h2 {
  grid-area: title;
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.cleaning-process__header>p {
  grid-area: text;
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin: 0 0 24px;
  max-width: 950px;
}

/* --- Left: 2x2 feature list --- */
.cleaning-process__header>ul {
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 30px;
  align-content: start;
}

.cleaning-process__header>ul>li>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFF0D9;
  color: #000000;
  font-size: 16px;
  margin-bottom: 14px;
}

.cleaning-process__header>ul>li>h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px;
}

.cleaning-process__header>ul>li>p {
  font-size: 16px;
  line-height: 1.65;
  color: #000;
  margin: 0;
}

/* --- Right: image --- */
.cleaning-process__media {
  grid-area: media;
  border: 3px solid #f0a93b;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.cleaning-process__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .cleaning-process__header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "media"
      "list";
  }

  .cleaning-process__media img {
    max-height: 340px;
  }
}

@media (max-width: 575px) {
  .cleaning-process {
    padding: 40px 0;
  }

  .cleaning-process__header>h2 {
    font-size: 24px;
  }

  .cleaning-process__header>ul {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ══════════════════════════════════════════════════════ CTA BANNER (Get 20% Off) ══════════════════════════════════════════════════════ */
.cta-banner-section {
  padding: 0;
  background: linear-gradient(135deg, #E94800 0%, #D84402 100%);
}

.cta-banner {
  padding: 26px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

/* --- Text block: grid so icon sits left, h3+p stack on the right --- */
.cta-banner__text {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
}

/* --- Icon badge: the span itself is the circle --- */
.cta-banner__text > span {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(#FDF2E1 0%, #FF9802 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7A3B12;
}

.cta-banner__text h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.cta-banner__text p {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  margin: 0;
  max-width: 440px;
}

.cta-banner__btn {
  flex: 0 0 auto;
  background: #F2941D;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  /* border-radius: 4px; */
  border: 2px solid #F2941D;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-banner__btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #FF9802;
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 24px 20px;
    justify-content: center;
  }

  .cta-banner__btn {
    align-self: stretch;
    text-align: center;
  }

  .cta-banner__text {
    grid-template-columns: 48px 1fr;
  }

  .cta-banner__text > span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .cta-banner__text h3 {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════════════════════
   COMMON PROBLEMS (3x2 bordered card grid)
══════════════════════════════════════════════════════ */
.why-choose-new {
  background: #ffffff;
  padding: 60px 0;
}

.why-choose-new__header {
  text-align: center;
}

.why-choose-new__header>span {
  display: none;
}

.why-choose-new__header>h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 14px;
  max-width: none;
}

.why-choose-new__header>p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  max-width: 720px;
  margin: 0 auto 40px;
}

.why-choose-new__header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

/* --- Card: grid so title+paragraph stack in col 1, icon box spans both rows in col 2 --- */
.why-choose-new__header li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  border: 1px solid #00196E;
  /* border-radius: 6px; */
  padding: 18px;
  overflow: visible;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.why-choose-new__header li:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* --- Peach box WITH icon inside it: the span itself is the box --- */
.why-choose-new__header li>span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background: #FFF0D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000000;
}

/* --- Text block: right column --- */
.why-choose-new__header li>h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.why-choose-new__header li>p {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  max-width: none;
}

@media (max-width: 991px) {
  .why-choose-new__header ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .why-choose-new {
    padding: 40px 0;
  }

  .why-choose-new__header>h2 {
    font-size: 22px;
  }

  .why-choose-new__header ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-new__header li {
    grid-template-columns: 56px 1fr;
  }

  .why-choose-new__header li>span {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}