/* =========================================================
   Prestige Service Pages
   Shared styling for carpet, upholstery, rug, hardwood, etc.
========================================================= */


/* =========================================================
   Service Hero
========================================================= */

.service-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.50) 48%,
    rgba(0,0,0,.16) 100%
  );
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 90px;
  color: white;
}

.service-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,.45);
}

.service-hero p {
  max-width: 640px;
  font-size: 1.18rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
}


/* =========================================================
   Main Service Intro Section
========================================================= */

.service-page-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(239,215,119,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.service-content {
  max-width: 680px;
}

.service-content h2,
.procedures-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: 1.5rem;
}

.service-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}

.service-content a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}


/* =========================================================
   Callout Box
========================================================= */

.service-callout {
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,215,119,.18));
  border-left: 5px solid var(--prestige-gold);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.service-callout h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--prestige-dark);
}


/* =========================================================
   Service Image
========================================================= */

.service-image-card {
  position: relative;
}

.service-image-card::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  background: linear-gradient(135deg, var(--prestige-blue), var(--prestige-blue-dark));
  border-radius: 1.25rem;
  opacity: .18;
}

.service-image-card img {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 1.25rem;
  border: 6px solid white;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}


/* =========================================================
   Video Section
========================================================= */

.video-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, var(--prestige-blue-dark), #263946);
}

.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
}

.video-ratio {
  position: relative;
  padding-top: 56.25%;
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* =========================================================
   Procedures / Process Section
========================================================= */

.procedures-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at bottom right, rgba(47,88,116,.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.procedures-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(239,215,119,.75);
  border-radius: 1.5rem;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

.procedure-list {
  counter-reset: procedure-counter;
  list-style: none;
  padding-left: 0;
  margin: 2.5rem 0 0;
  columns: 2;
  column-gap: 3rem;
}

.procedure-list li {
  position: relative;
  break-inside: avoid;
  counter-increment: procedure-counter;
  margin-bottom: 1.4rem;
  padding-left: 3rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #444;
}

.procedure-list li::before {
  content: counter(procedure-counter);
  position: absolute;
  left: 0;
  top: .15rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--prestige-blue);
  color: var(--prestige-gold);
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {
  .service-hero {
    min-height: 460px;
  }

  .service-hero-content {
    padding: 90px 0 70px;
  }

  .service-page-section,
  .procedures-section,
  .video-section {
    padding: 70px 0;
  }

  .procedure-list {
    columns: 1;
  }

  .service-image-card::before {
    display: none;
  }
}