/* ═══════════════════════════════════════════════════
   Service Pages — Shared Styles
   ═══════════════════════════════════════════════════ */

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: var(--sp-3) 0;
  background: rgba(7, 26, 51, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: var(--z-card);
  margin-top: var(--header-height);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.breadcrumb__link:hover {
  color: var(--clr-gold);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--fs-xs);
}

.breadcrumb__current {
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
}

/* ─── Service Hero ─── */
.svc-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--grad-cta);
  color: var(--clr-text-white);
  position: relative;
  overflow: hidden;
}

.svc-hero__bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.svc-hero__bg-glow--gold {
  background: rgba(212, 175, 55, 0.08);
  top: -100px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}

.svc-hero__bg-glow--green {
  background: rgba(22, 163, 74, 0.06);
  bottom: -100px;
  left: -100px;
  animation: glowPulse 8s ease-in-out infinite 2s;
}

.svc-hero__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.svc-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  width: fit-content;
  opacity: 0;
  animation: fadeInDown 0.5s var(--ease-out) 0.1s forwards;
}

.svc-hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: 1.25;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.25s forwards;
}

.svc-hero__title .gold { color: var(--clr-gold); }
.svc-hero__title .green { color: var(--clr-green-light); }

.svc-hero__desc {
  font-size: var(--fs-lg);
  color: var(--clr-text-on-dark);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.4s forwards;
}

.svc-hero__cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.55s forwards;
}

.svc-hero__trust-pills {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.5s var(--ease-out) 0.7s forwards;
}

.svc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
}

.svc-hero__pill svg {
  width: 12px;
  height: 12px;
  color: var(--clr-gold);
}

/* Hero Visual */
.svc-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: fadeInScale 0.7s var(--ease-spring) 0.3s forwards;
}

.svc-hero__img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.15);
}

.svc-hero__visual-icon {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-3xl);
  color: var(--clr-gold);
  animation: float 5s ease-in-out infinite;
}

.svc-hero__visual-icon svg {
  width: 80px;
  height: 80px;
}

@media (max-width: 1024px) {
  .svc-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-hero__content {
    align-items: center;
  }
  .svc-hero__desc {
    margin-inline: auto;
  }
  .svc-hero__cta {
    justify-content: center;
  }
  .svc-hero__trust-pills {
    justify-content: center;
  }
  .svc-hero__visual {
    order: -1;
  }
  .svc-hero__img {
    max-width: 340px;
  }
  .svc-hero__visual-icon {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 640px) {
  .svc-hero {
    padding: var(--sp-10) 0 var(--sp-8);
  }
  .svc-hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .svc-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Problem Section ─── */
.svc-problem {
  padding-block: var(--section-padding);
  background: var(--clr-gray);
}

.svc-problem__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.svc-problem__content h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-4);
}

.svc-problem__content p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-3);
}

.svc-problem__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.svc-problem__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.svc-problem__item svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-problem__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-problem__visual-box {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-royal-light);
  box-shadow: var(--shadow-lg);
}

.svc-problem__visual-box svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .svc-problem__container {
    grid-template-columns: 1fr;
  }
  .svc-problem__visual {
    order: -1;
  }
}

/* ─── Solution Section ─── */
.svc-solution {
  padding-block: var(--section-padding);
  background: var(--clr-white);
}

.svc-solution__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.svc-solution__content h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-4);
}

.svc-solution__content h2 .gold { color: var(--clr-gold); }

.svc-solution__content p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-3);
}

.svc-solution__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.svc-solution__card {
  background: var(--clr-gray);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: all var(--tr-base);
}

.svc-solution__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border-gold);
}

.svc-solution__card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--sp-3);
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

.svc-solution__card-icon svg {
  width: 22px;
  height: 22px;
}

.svc-solution__card h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}

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

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

/* ─── Includes Section ─── */
.svc-includes {
  padding-block: var(--section-padding);
  background: var(--clr-gray);
}

.svc-includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.svc-includes__item {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  border: 1px solid var(--clr-border);
  transition: all var(--tr-base);
}

.svc-includes__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border-gold);
}

.svc-includes__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: all var(--tr-base);
}

.svc-includes__icon svg {
  width: 24px;
  height: 24px;
}

.svc-includes__item:hover .svc-includes__icon {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
}

.svc-includes__text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

/* Green variant for sanitizing/pest control */
.svc-includes__icon--green {
  background: rgba(22, 163, 74, 0.08);
  color: var(--clr-green);
}

.svc-includes__item:hover .svc-includes__icon--green {
  background: var(--clr-green);
  color: white;
}

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

/* ─── Why Choose Service ─── */
.svc-why {
  padding-block: var(--section-padding);
  background: var(--clr-white);
}

.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.svc-why__card {
  background: var(--clr-gray);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: all var(--tr-base);
}

.svc-why__card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
}

.svc-why__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.svc-why__card-icon svg {
  width: 24px;
  height: 24px;
}

.svc-why__card:hover .svc-why__card-icon {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
}

.svc-why__card h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}

.svc-why__card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

/* ─── Related Services ─── */
.svc-related {
  padding-block: var(--section-padding);
  background: var(--clr-gray);
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-5);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.svc-related__card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
  color: var(--clr-text);
  transition: all var(--tr-base);
}

.svc-related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border-gold);
}

.svc-related__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.svc-related__card-icon svg {
  width: 22px;
  height: 22px;
}

.svc-related__card:hover .svc-related__card-icon {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
}

.svc-related__card-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

.svc-related__card-arrow {
  margin-inline-start: auto;
  color: var(--clr-text-light);
  transition: all var(--tr-fast);
}

.svc-related__card-arrow svg {
  width: 18px;
  height: 18px;
}

.svc-related__card:hover .svc-related__card-arrow {
  color: var(--clr-gold);
  transform: translateX(-4px);
}

/* ─── Service Mid CTA ─── */
.svc-mid-cta {
  padding: var(--sp-12) 0;
  background: var(--clr-royal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-mid-cta__container {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
  position: relative;
  z-index: 1;
}

.svc-mid-cta h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.svc-mid-cta h2 .gold { color: var(--clr-gold); }

.svc-mid-cta p {
  color: var(--clr-text-on-dark);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-base);
}

.svc-mid-cta__btns {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .svc-mid-cta__btns {
    flex-direction: column;
    align-items: center;
  }
  .svc-mid-cta__btns .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ─── Service B/A Cards ─── */
.svc-ba {
  padding-block: var(--section-padding);
  background: var(--clr-royal);
  color: var(--clr-text-white);
}

/* ─── Services Hub Grid (for /services page) ─── */
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.svc-hub-card {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.svc-hub-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), transparent 40%, transparent 60%, rgba(212,175,55,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--tr-base);
  pointer-events: none;
}

.svc-hub-card:hover::before {
  opacity: 1;
}

.svc-hub-card__icon-area {
  padding: var(--sp-6) var(--sp-6) 0;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.svc-hub-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.svc-hub-card__icon svg {
  width: 26px;
  height: 26px;
}

.svc-hub-card:hover .svc-hub-card__icon {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
  transform: scale(1.1);
}

.svc-hub-card__icon--green {
  background: rgba(22, 163, 74, 0.08);
  color: var(--clr-green);
}

.svc-hub-card:hover .svc-hub-card__icon--green {
  background: var(--clr-green);
  color: white;
}

.svc-hub-card__body {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.svc-hub-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.svc-hub-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
  flex: 1;
}

.svc-hub-card__actions {
  display: flex;
  gap: var(--sp-2);
  margin-top: auto;
}

.svc-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-lg);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--tr-fast);
}

.svc-hub-card__link--details {
  background: var(--clr-gray);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.svc-hub-card__link--details:hover {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
  border-color: var(--clr-gold);
}

.svc-hub-card__link--wa {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;
}

.svc-hub-card__link--wa:hover {
  background: #20BD5A;
}

.svc-hub-card__link svg {
  width: 14px;
  height: 14px;
}

/* ─── Chooser Section (services hub) ─── */
.svc-chooser {
  padding-block: var(--section-padding);
  background: var(--clr-royal);
  color: var(--clr-text-white);
}

.svc-chooser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.svc-chooser__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  transition: all var(--tr-base);
}

.svc-chooser__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.svc-chooser__card h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.svc-chooser__card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-on-dark);
  margin-bottom: var(--sp-3);
}

.svc-chooser__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.svc-chooser__link {
  padding: var(--sp-1) var(--sp-3);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  text-decoration: none;
  transition: all var(--tr-fast);
}

.svc-chooser__link:hover {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
}

/* ─── Service Process (reusable from homepage with variation) ─── */
.svc-process {
  padding-block: var(--section-padding);
}

/* ==========================================================================
   16. SERVICES HUB PAGE SPECIFIC OVERRIDES (Dark & Glassmorphic)
   ========================================================================== */
.services-hub-page {
  background: var(--clr-royal-dark);
  color: var(--clr-text-white);
}

.services-hub-page .svc-hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
}

.services-hub-page .svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 85% 70%, rgba(14, 45, 82, 0.45) 0%, transparent 50%);
  z-index: 0;
}

.services-hub-page .svc-hero__title {
  background: linear-gradient(135deg, var(--clr-white) 35%, var(--clr-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.services-hub-page .svc-hero__visual-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), var(--shadow-gold);
  background: rgba(255, 255, 255, 0.05);
  max-width: 460px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.services-hub-page .svc-hero__visual-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), var(--shadow-gold-lg);
}

.services-hub-page .svc-hero__visual-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Trust Bar overrides */
.services-hub-page .trust-bar {
  background: rgba(14, 45, 82, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: var(--sp-4);
  position: relative;
  z-index: 10;
}

.services-hub-page .trust-bar__item {
  color: rgba(255, 255, 255, 0.85);
}

.services-hub-page .trust-bar__icon {
  background: rgba(212, 175, 55, 0.12);
  color: var(--clr-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Services Hub Section overrides */
.services-hub-page .section {
  background: linear-gradient(180deg, var(--clr-royal-dark) 0%, var(--clr-navy) 100%);
  position: relative;
  z-index: 1;
}

.services-hub-page .section-title {
  color: var(--clr-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services-hub-page .section-subtitle {
  color: var(--clr-text-on-dark);
}

/* Glassmorphism Hub Cards */
.services-hub-page .svc-hub-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  color: var(--clr-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease;
}

.services-hub-page .svc-hub-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-gold-lg);
  border-color: var(--clr-gold);
  background: rgba(255, 255, 255, 0.05);
}

.services-hub-page .svc-hub-card__title {
  color: var(--clr-white);
  transition: color 0.3s ease;
}

.services-hub-page .svc-hub-card:hover .svc-hub-card__title {
  color: var(--clr-gold-light);
}

.services-hub-page .svc-hub-card__desc {
  color: var(--clr-text-on-dark);
}

.services-hub-page .svc-hub-card__icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-gold-light);
}

.services-hub-page .svc-hub-card__icon--green {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-green-light);
}

.services-hub-page .svc-hub-card:hover .svc-hub-card__icon {
  background: rgba(212, 175, 55, 0.2);
  color: var(--clr-gold-light);
  border-color: var(--clr-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.services-hub-page .svc-hub-card:hover .svc-hub-card__icon--green {
  background: rgba(22, 163, 74, 0.2);
  color: var(--clr-green-light);
  border-color: var(--clr-green-light);
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.3);
}

.services-hub-page .svc-hub-card__link--details {
  background: rgba(255, 255, 255, 0.04);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hub-page .svc-hub-card__link--details:hover {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
  border-color: var(--clr-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Chooser Section overrides */
.services-hub-page .svc-chooser {
  background: radial-gradient(circle at center, var(--clr-royal-light) 0%, var(--clr-royal-dark) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.services-hub-page .svc-chooser__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.services-hub-page .svc-chooser__card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Steps Section overrides */
.services-hub-page .steps {
  background: linear-gradient(180deg, var(--clr-navy) 0%, var(--clr-royal-dark) 100%);
  color: var(--clr-white);
}

.services-hub-page .step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.services-hub-page .step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.services-hub-page .step__number {
  background: var(--clr-gold);
  color: var(--clr-royal-dark);
  font-weight: var(--fw-black);
}

.services-hub-page .step__icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-gold-light);
}

.services-hub-page .step:hover .step__icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--clr-gold-light);
  border-color: var(--clr-gold);
}

.services-hub-page .step__title {
  color: var(--clr-gold-light);
}

.services-hub-page .step__desc {
  color: var(--clr-text-on-dark);
}

/* FAQ Accordion overrides */
.services-hub-page .faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.services-hub-page .faq-item.active {
  border-color: var(--clr-gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.1);
}

.services-hub-page .faq-item__question {
  color: var(--clr-white);
  padding: var(--sp-5) var(--sp-6);
}

.services-hub-page .faq-item__question:hover {
  color: var(--clr-gold-light);
}

.services-hub-page .faq-item__icon {
  color: rgba(255, 255, 255, 0.4);
}

.services-hub-page .faq-item.active .faq-item__icon {
  color: var(--clr-gold-light);
}

.services-hub-page .faq-item__answer-inner {
  color: var(--clr-text-on-dark);
  padding: 0 var(--sp-6) var(--sp-5);
}

/* ==========================================================================
   17. PEST CONTROL HUB PAGE SPECIFIC OVERRIDES (Dark & Green-Glassmorphic)
   ========================================================================== */
.pest-control-hub-page {
  background: var(--clr-royal-dark);
  color: var(--clr-text-white);
}

.pest-control-hub-page .svc-hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
}

.pest-control-hub-page .svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(22, 163, 74, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 85% 70%, rgba(14, 45, 82, 0.45) 0%, transparent 50%);
  z-index: 0;
}

.pest-control-hub-page .svc-hero__title {
  background: linear-gradient(135deg, var(--clr-white) 35%, var(--clr-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pest-control-hub-page .svc-hero__visual-card {
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 25px rgba(22, 163, 74, 0.2);
  background: rgba(255, 255, 255, 0.05);
  max-width: 460px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.pest-control-hub-page .svc-hero__visual-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 35px rgba(22, 163, 74, 0.4);
}

.pest-control-hub-page .svc-hero__visual-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Trust Bar overrides */
.pest-control-hub-page .trust-bar {
  background: rgba(14, 45, 82, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: var(--sp-4);
  position: relative;
  z-index: 10;
}

.pest-control-hub-page .trust-bar__item {
  color: rgba(255, 255, 255, 0.85);
}

.pest-control-hub-page .trust-bar__icon {
  background: rgba(22, 163, 74, 0.12);
  color: var(--clr-green-light);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Sections */
.pest-control-hub-page .section {
  background: linear-gradient(180deg, var(--clr-royal-dark) 0%, var(--clr-navy) 100%);
  position: relative;
  z-index: 1;
}

/* Section overrides when it's grey/light, it should look dark/navy instead */
.pest-control-hub-page .section.section--gray,
.pest-control-hub-page .section--gray {
  background: linear-gradient(180deg, var(--clr-navy) 0%, var(--clr-royal-dark) 100%);
}

.pest-control-hub-page .section-title {
  color: var(--clr-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pest-control-hub-page .section-badge {
  background: rgba(22, 163, 74, 0.1);
  color: var(--clr-green-light);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.pest-control-hub-page .section-badge__dot {
  background: var(--clr-green-light);
}

/* Problem section */
.pest-control-hub-page .svc-problem h2,
.pest-control-hub-page .svc-solution h2 {
  color: var(--clr-white);
}

.pest-control-hub-page .svc-problem p,
.pest-control-hub-page .svc-solution p {
  color: var(--clr-text-on-dark);
}

.pest-control-hub-page .svc-problem__image-card {
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(22, 163, 74, 0.15);
  background: rgba(255, 255, 255, 0.05);
  max-width: 420px;
  width: 100%;
}

.pest-control-hub-page .svc-problem__image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.pest-control-hub-page .svc-problem__item svg {
  color: var(--clr-green-light);
}

/* Solution section */
.pest-control-hub-page .svc-solution__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--sp-4);
  transition: all 0.3s ease;
}

.pest-control-hub-page .svc-solution__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(22, 163, 74, 0.1);
}

.pest-control-hub-page .svc-solution__card h4 {
  color: var(--clr-white);
  margin-top: var(--sp-2);
}

.pest-control-hub-page .svc-solution__card-icon {
  background: rgba(22, 163, 74, 0.15) !important;
  color: var(--clr-green-light) !important;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.pest-control-hub-page .svc-solution__visual-shield {
  width: 180px;
  height: 180px;
  background: rgba(22, 163, 74, 0.08);
  border: 2px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green-light);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pest-control-hub-page .svc-solution__visual-shield:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 40px rgba(22, 163, 74, 0.35);
  border-color: var(--clr-green-light);
}

.pest-control-hub-page .svc-solution__visual-shield svg {
  width: 70px;
  height: 70px;
}

/* Includes list */
.pest-control-hub-page .svc-includes__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  color: var(--clr-white);
  transition: all 0.3s ease;
}

.pest-control-hub-page .svc-includes__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.pest-control-hub-page .svc-includes__icon--green {
  background: rgba(22, 163, 74, 0.15) !important;
  color: var(--clr-green-light) !important;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

/* Related card (Sub services & related services) */
.pest-control-hub-page .svc-related__card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(22, 163, 74, 0.15);
  color: var(--clr-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease;
}

.pest-control-hub-page .svc-related__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(22, 163, 74, 0.25);
  border-color: var(--clr-green-light);
  background: rgba(255, 255, 255, 0.05);
}

.pest-control-hub-page .svc-related__card-title {
  color: var(--clr-white);
  transition: color 0.3s ease;
}

.pest-control-hub-page .svc-related__card:hover .svc-related__card-title {
  color: var(--clr-green-light);
}

.pest-control-hub-page .svc-related__card-icon {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-green-light) !important;
}

.pest-control-hub-page .svc-related__card:hover .svc-related__card-icon {
  background: rgba(22, 163, 74, 0.2) !important;
  color: var(--clr-green-light) !important;
  border-color: var(--clr-green-light) !important;
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.3);
}

.pest-control-hub-page .svc-related__card-arrow {
  color: rgba(255, 255, 255, 0.4);
}

.pest-control-hub-page .svc-related__card:hover .svc-related__card-arrow {
  color: var(--clr-green-light);
}

/* Mid CTA overrides */
.pest-control-hub-page .svc-mid-cta {
  background: radial-gradient(circle at center, var(--clr-royal-light) 0%, var(--clr-royal-dark) 100%);
  border-top: 1px solid rgba(22, 163, 74, 0.15);
  border-bottom: 1px solid rgba(22, 163, 74, 0.15);
  color: var(--clr-white);
  padding-block: var(--section-padding);
}

.pest-control-hub-page .svc-mid-cta h2,
.pest-control-hub-page .svc-mid-cta p {
  color: var(--clr-white);
}

/* Steps Section */
.pest-control-hub-page .steps {
  background: linear-gradient(180deg, var(--clr-navy) 0%, var(--clr-royal-dark) 100%);
  color: var(--clr-white);
}

.pest-control-hub-page .step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.pest-control-hub-page .step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--clr-green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(22, 163, 74, 0.15);
}

.pest-control-hub-page .step__number {
  background: var(--clr-green-light);
  color: var(--clr-royal-dark);
  font-weight: var(--fw-black);
}

.pest-control-hub-page .step__icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-green-light);
}

.pest-control-hub-page .step:hover .step__icon {
  background: rgba(22, 163, 74, 0.15);
  color: var(--clr-green-light);
  border-color: var(--clr-green-light);
}

.pest-control-hub-page .step__title {
  color: var(--clr-green-light);
}

.pest-control-hub-page .step__desc {
  color: var(--clr-text-on-dark);
}

/* FAQ Accordion */
.pest-control-hub-page .faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.pest-control-hub-page .faq-item.active {
  border-color: var(--clr-green-light);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(22, 163, 74, 0.15);
}

.pest-control-hub-page .faq-item__question {
  color: var(--clr-white);
  padding: var(--sp-5) var(--sp-6);
}

.pest-control-hub-page .faq-item__question:hover {
  color: var(--clr-green-light);
}

.pest-control-hub-page .faq-item__icon {
  color: rgba(255, 255, 255, 0.4);
}

.pest-control-hub-page .faq-item.active .faq-item__icon {
  color: var(--clr-green-light);
}

.pest-control-hub-page .faq-item__answer-inner {
  color: var(--clr-text-on-dark);
  padding: 0 var(--sp-6) var(--sp-5);
}

