/* ============================================================
   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: #000;
  --sd-border: #d1e5eb;
  --sd-white: #ffffff;
}

/* ── Shared container ── */
.sd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared section title ── */
.sd-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--sd-text);
  margin: 0 0 24px;
  line-height: 1.25;
}

.sd-section-title--center {
  text-align: center;
}

.sd-text-cyan {
  color: var(--sd-cyan) !important;
}

/* ── Shared buttons ── */
.sd-btn {
  display: inline-block;
  padding: 14px 50px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.sd-btn--cyan {
  background: var(--sd-cyan);
  color: var(--sd-white);
  border-color: var(--sd-cyan);
}

.sd-btn--cyan:hover {
  background: #007a90;
  border-color: #007a90;
  color: var(--sd-white);
}

.sd-btn--white {
  background: var(--sd-cyan);
  color: var(--sd-white);
  /* border-color: var(--sd-white); */
}

.sd-btn--white:hover {
  background: transparent;
  color: var(--sd-white);
  border-color: var(--sd-white);
}

/* ============================================
   SECTION 1: HERO + FEATURES BAR (Merged)
   ============================================ */
.service-hero-section {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  width: 100%;
}

/* Breadcrumb (a / span — koi class nahi, parent se edit) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #f9af40;
}

.breadcrumb span {
  color: #f9af40;
}

.breadcrumb span:last-child {
  font-weight: 600;
}

/* Hero Heading + Tagline + Button */
.hero-container h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.hero-container h1 span {
  color: #f9af40;
}

.hero-container > p {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 30px;
  line-height: 1.6;
  max-width: 700px;
}

.hero-container > a {
  display: inline-block;
  background: #f9af40;
  color: #000000;
  padding: 15px 40px;
  border-radius: 30px;
  border: 2px solid transparent; /* hover jump fix */
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-container > a:hover {
  background: transparent;
  border: 2px solid #f9af40;
}

/* Features Bar — ul/li structure */
.features-bar-section {
  background: #672e91;
  padding: 50px 0;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1200px;
}

.features-grid ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.features-grid li {
  text-align: center;
  color: #ffffff;
}

/* Features Icons — ab ::before se (SVG nahi) */
.features-grid li span {
  display: inline-flex;
  font-size: 40px;
  line-height: 1;
  color: #f9af40;
  margin-bottom: 10px;
}

/* .features-grid li:nth-child(1)::before {
  content: "✦";
}
.features-grid li:nth-child(2)::before {
  content: "✓";
}
.features-grid li:nth-child(3)::before {
  content: "▦";
}
.features-grid li:nth-child(4)::before {
  content: "★";
}
.features-grid li:nth-child(5)::before {
  content: "❋";
}
.features-grid li:nth-child(6)::before {
  content: "♥";
} */

.features-grid li p {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   SECTION 2: CLEANING PROCESS (Merged Old 3 + 7)
   ============================================ */
.cleaning-process-section {
  padding: 60px 0;
}

.cleaning-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cleaning-process-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 20px;
}

.cleaning-process-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 20px;
}

.cleaning-process-section .container strong {
  color: #672e91;
}

.cleaning-process-section .container > p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 20px;
}

/* Steps List — ul/li, numbering CSS counter se (1. 2. 3...) */
.cleaning-process-section ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  counter-reset: step;
}

.cleaning-process-section ul li {
  counter-increment: step;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.cleaning-process-section ul li::before {
  content: counter(step) ".";
  font-size: 18px;
  font-weight: 700;
  color: #672e91;
  flex-shrink: 0;
  line-height: 1.4;
}

.cleaning-process-section ul li h4 {
  font-size: 18px;
  font-weight: 700;
  color: #672e91;
  margin: 0 0 10px;
}

.cleaning-process-section ul li p {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
}

/* ============================================
   SECTION 1 + 2 RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .features-grid ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-container h1 {
    font-size: 40px;
  }

  .features-grid ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 32px;
  }

  .cleaning-process-section h2 {
    font-size: 28px;
  }

  .features-grid ul {
    grid-template-columns: 1fr;
  }

  .cleaning-process-section ul li {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .hero-container h1 {
    font-size: 28px;
  }

  .hero-container > p {
    font-size: 16px;
  }

  .cleaning-process-section h2 {
    font-size: 24px;
  }
}

/* ============================================
   SECTION 3: BEST CARE FOR RUGS (4 CARDS)
   ============================================ */
.best-care-section {
  margin: 60px 0;
}

.best-care-section > h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 40px;
}

.best-care-section .purple-bg {
  background: #672e91;
  padding: 60px 20px;
  border-radius: 15px;
}

.care-cards-grid ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  counter-reset: card-number; /* Counter for 1, 2, 3, 4 */
}

.care-cards-grid ul li {
  background: #f9af40;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Card Numbers Circle (CSS Counter) */
.care-cards-grid li::before {
  counter-increment: card-number;
  content: counter(card-number);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #672e91;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent; /* Hover jump fix */
}

.care-cards-grid li h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px;
}

.care-cards-grid li p {
  font-size: 17px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* Hover Effects */
.care-cards-grid li:hover {
  background: #ffffff;
}

.care-cards-grid li:hover::before {
  background: #f9af40;
  color: #672e91;
  border: 2px solid #f9af40;
}

/* ============================================
   SECTION 3 RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .care-cards-grid ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .best-care-section > h2 {
    font-size: 32px;
  }

  .care-cards-grid ul {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .best-care-section > h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .best-care-section > h2 {
    font-size: 24px;
  }

  .best-care-section .purple-bg {
    padding: 40px 15px;
  }
}

/* ============================================
   SECTION 4: CARE BEYOND + WIDE RANGE + REVIVING
   ============================================ */
.care-beyond-section {
  padding: 80px 0 0;
}

.care-beyond-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.care-beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left side — h2 + orange bar (::after se, koi extra div nahi) */
.care-beyond-grid h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.care-beyond-grid h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f9af40;
  margin: 15px 0 20px;
}

.care-beyond-grid > div:first-child > p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 25px;
}

.care-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.care-bullets li {
  font-size: 17px;
  color: #000000;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.care-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;

    width: 20px;
    height: 20px;

    background-color: #000000;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

/* Right side — image + badge */
.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.trusted-badge {
  position: absolute;
  bottom: -4px;
  right: 1px;
  background: #672e91;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.trusted-badge p {
  font-size: 12px;
  margin: 0 0 5px;
}

.trusted-badge h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #f9af40;
}

.trusted-badge p:last-child {
  margin: 0;
}

/* Wide Range block */
.wide-range-block {
  margin: 60px auto 0;
}

.wide-range-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px;
  line-height: 1.3;
}

.wide-range-block > p {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  margin: 0 0 30px;
}
.wide-range-block > p > strong {
  color: #672e91;
}

/* Rug list — numbering CSS counter se */
.rug-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  counter-reset: rug;
}

.rug-list ul li {
  counter-increment: rug;
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: #000000;
}

.rug-list ul li::before {
  content: counter(rug) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #672e91;
  font-weight: 700;
}

.rug-list ul li strong {
  color: #672e91;
  font-weight: 700;
}

/* Reviving Beauty purple bar */
.reviving-beauty-section {
  background: #672e91;
  padding: 60px 0;
  margin: 60px 0 0;
}

.reviving-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.reviving-grid h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.reviving-grid p {
  padding-left: 30px;
  border-left: 4px solid #f9af40;
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}

/* ============================================
   SECTION 5: CTA + FAQ
   ============================================ */
.cta-free-estimate {
  background: #f9af40;
  padding: 40px 0;
  margin: 40px 0;
}

.cta-free-estimate .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cta-clock-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 24/7 Clock badge — ab ::before se (SVG nahi) */
.cta-clock-wrapper::before {
  content: "";
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='22' cy='18' r='14' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M22 18V10' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M22 18L28 13' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Ctext x='14' y='31' font-size='10' font-weight='700' font-family='Arial,sans-serif' fill='black'%3E24%3C/text%3E%3Cpath d='M25 36L31 28' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Ctext x='28' y='40' font-size='10' font-weight='700' font-family='Arial,sans-serif' fill='black'%3E7%3C/text%3E%3C/svg%3E");
}

/* FAQ arrow — ab ::after se (SVG nahi) */
.faq-question::after {
  content: "▾";
  flex-shrink: 0;
  margin-left: 15px;
  font-size: 18px;
  line-height: 1;
  color: #672e91;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.cta-clock-wrapper p {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call Us button — parent se style */
.cta-free-estimate a {
  display: inline-block;
  background: #672e91;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 30px;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cta-free-estimate a:hover {
  background: transparent;
  border: 2px solid #672e91;
  color: #161515;
}

/* FAQ */
.faq-section-service {
  padding: 60px 0;
}

.faq-section-service .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section-service h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #f9af40;
  background: #fffef5;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
}

/* ============================================
   SECTION 4 + 5 RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .care-beyond-grid,
  .reviving-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cta-content > div:first-child {
    align-items: center;
  }

  .cta-clock-wrapper {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .care-beyond-grid h2,
  .reviving-grid h2,
  .faq-section-service h2 {
    font-size: 28px;
  }

  .wide-range-block h2 {
    font-size: 26px;
  }

  .reviving-grid p {
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .care-beyond-section {
    padding-top: 60px;
  }

  .care-beyond-grid h2 {
    font-size: 26px;
  }

  .trusted-badge {
    position: static;
    margin-top: 20px;
  }

  .reviving-grid h2 {
    font-size: 26px;
  }

  .reviving-grid p {
    font-size: 14px;
    padding-left: 15px;
    border-left-width: 3px;
  }

  .wide-range-block h2 {
    font-size: 24px;
  }

  .wide-range-block > p,
  .rug-list ul li {
    font-size: 14px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-clock-wrapper p {
    font-size: 12px;
  }

  .faq-section-service h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .cta-clock-wrapper::before {
    width: 32px;
    height: 32px;
    font-size: 9px;
  }
}
