/* ============================================================
   SERVICE DETAIL PAGE  —  service-detail.css
   All classes are prefixed .sd-* to avoid any collisions
   ============================================================ */

/* ── Design tokens ── */
:root {
  --sd-cyan: #009ab5;
  --sd-cyan-mid: #3dbfea;
  --sd-blue-dark: #206c86;
  --sd-card-bg: #dcf3ff;
  --sd-faq-bg: #fff5d5;
  --sd-approach-bg: #fff5d5;
  --sd-stats-bg: #009ab5;
  --sd-text: #222222;
  --sd-gray: #555555;
  --sd-border: #d1e5eb;
  --sd-white: #ffffff;
}

/* ── Shared container ── */
.sd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.sd-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 120px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.sd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* ============================================================
   8. WHY CHOOSE SECTION  (white background)
   ============================================================ */
.sd-why-choose {
  background: var(--sd-white);
  padding: 30px 0;
}

.sd-why-choose__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--sd-text);
}

.sd-why-choose__body p {
  margin: 0 0 18px;
  font-size: 18px;
}

.sd-why-choose__body p:last-child {
  margin-bottom: 0;
}

.sd-why-choose__body h1,
.sd-why-choose__body h2 {
  font-size: 30px;
  /* font-weight: 800; */
  color: var(--sd-text);
  margin: 0 0 20px;
  line-height: 1.25;
  text-transform: capitalize !important;
}

.sd-why-choose__body h1 span,
.sd-why-choose__body h1 .cyan,
.sd-why-choose__body h2 span,
.sd-why-choose__body h2 .cyan {
  color: var(--sd-cyan);
}

.sd-why-choose__body h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--sd-text);
  margin: 24px 0 12px;
}

.sd-why-choose__body a {
  color: var(--sd-cyan);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Mobile (≤ 767px) */
@media (max-width: 990px) {

  .sd-why-choose__body h1,
  .sd-why-choose__body h2 {
    line-height: normal;
  }

  /* Hero */
  .sd-hero {
    padding: 70px 0 80px;
    min-height: 280px;
  }

  /* Why choose */
  .sd-why-choose {
    padding: 40px 0;
  }

  .sd-why-choose__body h2 {
    font-size: 26px;
  }
}

@media (max-width: 901px) {

  .projects-content ul {
    margin-bottom: 10px !important;
  }
}


/* =========================================
   STEP-BY-STEP CLEANING PATH
   ========================================= */
.cleaning-path {
  padding: 60px 0;
  background: #ffffff;
}

.cleaning-path h2,
.cp-title {
  font-size: 32px;
  font-weight: 700;
  color: #262262;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.25;
}

.cleaning-path p,
.cp-sub {
  font-size: 18px;
  color: #000;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── The bar (UL) ── */
.cleaning-path ul,
.path-bar {
  list-style: none;
  margin: 0;
  padding: 28px 40px;
  background: linear-gradient(to bottom, #262262, #1e1b4f);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cleaning-path ul li,
.path-bar li {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  /* allow shrinking */
}

.cleaning-path ul li span,
.path-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f25b2a;
  /* orange */
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cleaning-path ul li h2,
.path-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

/* ── Responsive ── */
@media (max-width: 991px) {

  .cleaning-path ul,
  .path-bar {
    padding: 24px 32px;
    gap: 20px;
  }

  .cleaning-path ul li h2,
  .path-label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .cleaning-path ul,
  .path-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 24px;
    gap: 20px 16px;
  }

  .cleaning-path ul li,
  .path-bar li {
    flex: 1 1 calc(50% - 16px);
    /* 2 per row */
    min-width: 140px;
  }

  .cleaning-path h2,
  .cp-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {

  .cleaning-path ul li,
  .path-bar li {
    flex: 1 1 100%;
    /* stack on very small screens */
  }

  .cleaning-path ul li span,
  .path-num {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .cleaning-path ul li h2,
  .path-label {
    font-size: 14px;
  }
}

/* =========================================
   GENUINE CARE SECTION
   ========================================= */
.genuine-care {
  padding: 60px 0 60px;
  background: #ffffff;
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  padding-bottom: 40px;
  /* room for the overlapping CTA */
}

/* ── Left text card ── */
.care-card {
  background: #fff0e8;
  border-radius: 0px 16px 16px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 30px));
  padding-right: 40px;
  padding-bottom: 40px;
  padding-top: 40px;
  border: 1px solid #262262;
}

.care-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
  line-height: 1.2;
}

.care-card>p {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Highlighted quote */
.care-card h3 {
  background: #1b1b3a;
  color: #ffffff;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 0 0 28px;
  border-left: none;
}

/* Bullet list */
.care-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
}

.care-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111111;
  font-weight: 700;
}

/* ── Right image ── */
.care-media {
  margin: 0;
  border-radius: 16px 0px 0px 16px;
  overflow: hidden;
}

.care-media img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  max-height: 590px;
}

/* ── Floating CTA bar ── */
.care-cta {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: -40px auto 0;
  background: #fff0e8;
  border-radius: 12px;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #262262;
}

.care-cta-text {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
}

.care-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f25b2a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.care-cta-btn:hover {
  background: #262262;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .care-card {
    padding: 36px;
  }

  .care-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .genuine-care {
    padding: 60px 0 40px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .care-media {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .care-cta {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-top: -24px;
    padding: 20px 24px;
  }

  .care-cta-text {
    font-size: 20px;
  }
}

/* =========================================
   TAILORED TECHNIQUES
   ========================================= */
.tailored-techniques {
  padding: 80px 0;
  background: #ffffff;
}

.tailored-techniques h2,
.tt-title {
  font-size: 30px;
  /* font-weight: 700; */
  color: #111111;
  margin: 0 0 16px;
  line-height: 1.25;
}

.tailored-techniques p,
.tt-intro {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  /* max-width: 900px; */
  margin: 0 0 36px;
}

.tailored-techniques ul,
.tt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tailored-techniques ul li,
.tt-list li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #000;
}

.tailored-techniques ul li::before,
.tt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f25b2a;
}

.tailored-techniques ul li strong,
.tt-list li strong {
  color: #111111;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tailored-techniques {
    padding: 20px 0;
  }

  .tailored-techniques h2,
  .tt-title {
    font-size: 26px;
  }

  .tailored-techniques ul li,
  .tt-list li {
    font-size: 14px;
  }
}

.promo-banner {
  background: linear-gradient(to bottom, #262262, #1e1b4f);
  padding: 24px 0;
}

.promo-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-left {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.promo-right {
  color: #ffffff;
  font-weight: 800;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .promo-left,
  .promo-right {
    font-size: 20px;
  }
}

/* =========================================
   RECENT PROJECTS SECTION
   ========================================= */
.projects-section {
  padding: 40px 0;
  background: #ffffff;
}



.projects-section h2 {
  text-align: center;
  font-size: 30px;
}

.projects-section p {
  text-align: center;
  font-size: 18px;

  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px !important;
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.projects-content ul {
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  padding: 30px 30px;
  align-content: center;
  background-color: #ffeee9;
  border: 1px solid #262262;
  border-radius: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 10px;
}

.projects-content ul p {
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}

.projects-content ul h2 {
  color: #2e2850;
  text-align: left;
  margin: 10px 0px;
}

.projects-content ul li {
  display: flex;
  flex-direction: column;
}

.projects-content ul li h2 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  color: var(--sic-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.projects-content ul li p {
  margin-bottom: 15px;
  color: var(--sic-text-light);
  font-size: 0.95rem;
}

/* ---------- Right: Before/After Images ---------- */
.projects-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  /* max-height: 450px; */
  border-radius: 25px 25px 25px 0;
  border: 1px solid #262262;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.project-badge {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #f25b2a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  border-radius: 0px 15px 15px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .projects-content {
    grid-template-columns: 1fr;
    padding-bottom: 10px;
  }

  .projects-images {
    grid-template-columns: 1fr 1fr;
  }

  .project-img-wrap {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .projects-images {
    grid-template-columns: 1fr;
  }

  .project-img-wrap {
    min-height: 260px;
  }
}

/* =========================================
   EVERYTHING YOU WANT TO KNOW / FAQ
   ========================================= */
.sd-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.sd-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* ── Left Column ── */
.sd-faq-left {
  display: flex;
  flex-direction: column;
}

.sd-faq-left h2,
.sd-faq-section-title {
  font-size: 30px;
  /* font-weight: 800; */
  color: #000;
  margin: 0 0 16px;
  line-height: 1.2;
}

.sd-faq-left p,
.sd-faq-section-desc {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 420px;
}

.sd-faq-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.sd-faq-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
}

/* ── Right Column: Accordion ── */
.sd-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-faq__item {
  border-radius: 10px;
  overflow: hidden;
  background: #1b1b3a;
  /* navy — closed state */
  border: 1px solid #1b1b3a;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.sd-faq__item.is-open {
  background: #ffffff;
  border-color: #f25b2a;
  /* orange border — open state */
}

/* Question row */
.sd-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
}

.sd-faq__item.is-open .sd-faq__question {
  color: #111111;
}

.sd-faq__num {
  color: #f25b2a;
  font-weight: 700;
  flex-shrink: 0;
}

.sd-faq__qtext {
  flex: 1 1 auto;
  min-width: 0;
}

/* Plus / Minus icon (CSS-only) */
.sd-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-faq__icon::before,
.sd-faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}

.sd-faq__icon::before {
  /* horizontal bar */
  width: 12px;
  height: 2px;
}

.sd-faq__icon::after {
  /* vertical bar */
  width: 2px;
  height: 12px;
}

.sd-faq__item.is-open .sd-faq__icon::after {
  transform: scaleY(0);
  /* minus sign */
}

/* Answer panel */
.sd-faq__answer {
  padding: 0 20px 18px 48px;
}

.sd-faq__answer[hidden] {
  display: none;
}

.sd-faq__answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin: 0;
  padding: 0px 0px;
  /* background: #fafafa; */
  /* border: 1px solid #e5e7eb; */
  border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .sd-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sd-faq-image {
    max-height: 300px;
  }

  .sd-faq-image img {
    height: 100%;
    object-fit: fill;
  }
}

@media (max-width: 575px) {
  .sd-faq-section {
    padding: 60px 0;
  }

  .sd-faq-section-title {
    font-size: 28px;
  }

  .sd-faq__question {
    padding: 16px;
    font-size: 14px;
  }

  .sd-faq__answer {
    padding: 0 16px 16px 40px;
  }
}