/* Service landing pages — shared layout */
.service-page-hero {
  background: linear-gradient(135deg, #2A3855 0%, #1e2a42 55%, #151d2e 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(232, 163, 23, 0.12);
  pointer-events: none;
}

.service-page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.service-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.service-page-hero .breadcrumb-item a:hover {
  color: #e8a317;
}

.service-page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65);
}

.service-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 163, 23, 0.2);
  color: #f5d078;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.service-page-hero h1 {
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 1rem;
}

.service-page-hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e8a317;
  color: #1e2a42;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.service-page-body {
  padding: 2.5rem 0 4rem;
  background: #f8f9fc;
}

.service-content-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(42, 56, 85, 0.04);
}

.service-content-card h2 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e8a317;
  display: inline-block;
}

.service-content-card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.service-content-card li {
  margin-bottom: 0.45rem;
  color: var(--default-color);
  line-height: 1.6;
}

.service-content-card p {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--default-color);
}

.service-disclaimer {
  font-size: 0.9rem;
  color: #6c757d;
  border-left: 3px solid #e8a317;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.service-sidebar-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(42, 56, 85, 0.08);
}

@media (min-width: 992px) {
  .service-sidebar-card {
    position: sticky;
    top: 100px;
  }
}

.service-sidebar-card h2 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-sidebar-card .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.service-sidebar-card .contact-line i {
  color: var(--accent-color);
  margin-top: 2px;
}

.service-related {
  margin-top: 1.25rem;
}

.service-related h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.service-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-related-list li {
  margin-bottom: 0.4rem;
}

.service-related-list a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.35rem 0;
}

.service-related-list a:hover {
  color: #e8a317;
}

.service-page-faq .faq-item {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.service-page-faq .faq-summary {
  padding: 1rem 2.5rem 1rem 1rem;
}

.service-page-faq .faq-question {
  font-size: 0.95rem;
}

.service-page-faq .faq-item[open] {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.service-page-faq .faq-item[open] .faq-question {
  color: #fff;
}

.service-page-faq .faq-item[open] .faq-content p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.service-page-faq .faq-item[open] .faq-toggle {
  color: #fff;
}

.service-content-card.service-page-faq .faq-item[open] .faq-summary:hover .faq-question {
  color: #fff;
}

.service-page-header .service-header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-page-header .service-header-nav a {
  color: var(--nav-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-page-header .service-header-nav a:hover {
  color: var(--accent-color);
}

.service-page-header .service-header-nav a.active {
  color: var(--accent-color);
  font-weight: 600;
}

/* All Services hub — category groups using homepage featured-services cards */
.services-hub-group {
  margin-bottom: 3rem;
}

.services-hub-group:last-child {
  margin-bottom: 0;
}

.services-hub-category {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8a317;
  display: inline-block;
}

.featured-services .service-item h3,
.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.35;
}

.featured-services .service-item h3 a,
.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
  text-decoration: none;
}

.featured-services .service-item:hover h3 a,
.featured-services .service-item:hover h4 a {
  color: var(--contrast-color);
}

/* Legacy minimal footer — unused; service pages use footer-v2 from main.css */

@media (max-width: 991px) {
  .service-page-body {
    padding-bottom: 2rem;
  }

  body.service-page {
    padding-bottom: 70px;
  }

  .service-page-header .service-header-nav {
    display: none;
  }

  .service-page .footer-v2 .footer-main {
    padding-bottom: 1.5rem;
  }

  .service-page .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-page .footer-cta-text {
    flex-direction: column;
    text-align: center;
  }

  .service-page .footer-cta-actions {
    width: 100%;
    justify-content: center;
  }

  .service-page .footer-cta-btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
}
