/* ============================================================
   SMARTCARE FM — SERVICES CSS
   Services landing page + individual service page templates
   ============================================================ */

/* ── Services landing: category tabs ── */
.service-tabs {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}

.service-tab {
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--t-base);
}

.service-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.service-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Services landing: full grid ── */
.services-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.slg-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.slg-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.slg-card-top {
  padding: var(--sp-8);
  flex: 1;
}

.slg-icon {
  width: 58px;
  height: 58px;
  background: var(--teal-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--sp-5);
  transition: background var(--t-base);
}
.slg-card:hover .slg-icon { background: var(--teal); }

.slg-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.slg-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.slg-sub-list {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.slg-sub-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--gray-600);
}
.slg-sub-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.slg-card-foot {
  border-top: 1px solid var(--gray-100);
  padding: var(--sp-4) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slg-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.slg-link:hover { gap: 10px; }

.slg-category-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── Category header ── */
.category-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-5);
  border-bottom: 2px solid var(--gray-100);
}

.cat-icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.cat-header-text h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.cat-header-text p { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ── Individual service page ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-10);
  align-items: start;
}

.service-detail-content {}

.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.service-detail-content p {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.service-detail-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: var(--sp-8) 0 var(--sp-4);
}

/* checklist */
.service-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.sc-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.55;
}
.sc-check {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

/* sub-services grid within detail page */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.ss-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: all var(--t-base);
}
.ss-card:hover { border-color: var(--teal); background: var(--teal-pale); }
.ss-card .ss-icon { font-size: 28px; margin-bottom: var(--sp-3); }
.ss-card h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ss-card p { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* sidebar */
.service-sidebar {}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--teal); padding-left: 4px; }
.sidebar-service-link.current { color: var(--teal); font-weight: 600; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
  color: var(--white);
}
.sidebar-cta h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: var(--sp-3); }
.sidebar-cta p  { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: var(--sp-5); line-height: 1.55; }
.sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: var(--sp-3);
  transition: background var(--t-fast);
}
.sidebar-phone:hover { background: rgba(255,255,255,0.25); }

/* ── Sidebar contact items ── */
.sb-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13.5px;
  color: var(--gray-600);
}
.sb-contact-item:last-child { border-bottom: none; }
.sb-contact-item svg { color: var(--teal); flex-shrink: 0; }
.sb-contact-item a { color: var(--gray-700); text-decoration: none; }
.sb-contact-item a:hover { color: var(--teal); }

/* ══════════════════════════════════════════
   RESIDENTIAL CLEANING — REDESIGNED CONTENT
══════════════════════════════════════════ */

/* ── Intro block ── */
.rc-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.rc-intro::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: rgba(42,139,118,0.12);
  border-radius: 50%;
}
.rc-intro::after {
  content: '';
  position: absolute;
  left: -30px; bottom: -30px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.rc-intro-text { position: relative; z-index: 1; }

.rc-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.rc-intro-text h2 span { color: var(--teal-glow); }

.rc-intro-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 24px;
}

.rc-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rc-itag {
  background: rgba(42,139,118,0.2);
  border: 1px solid rgba(42,139,118,0.35);
  color: var(--teal-glow);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.rc-intro-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.rc-stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  text-align: center;
  min-width: 140px;
}
.rc-stat-box--teal {
  background: rgba(42,139,118,0.2);
  border-color: rgba(42,139,118,0.35);
}
.rc-stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rc-stat-num span { color: var(--teal-glow); }
.rc-stat-lbl {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Section sub-header ── */
.rc-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.rc-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.rc-section-header h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* ── Scope grid ── */
.rc-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.rc-scope-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.rc-scope-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.rc-scope-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rc-scope-card:hover::before { transform: scaleX(1); }

.rc-scope-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-color: transparent;
  color: var(--white);
}
.rc-scope-card--accent::before { display: none; }
.rc-scope-card--accent h4 { color: var(--white); }
.rc-scope-card--accent p { color: rgba(255,255,255,0.75); }
.rc-scope-card--accent:hover { transform: translateY(-3px); border-color: transparent; }

.rc-scope-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
  transition: background var(--t-base);
}
.rc-scope-card:hover .rc-scope-icon { background: var(--teal); color: var(--white); }
.rc-scope-icon--white { background: rgba(255,255,255,0.15); color: var(--white); }
.rc-scope-card--accent:hover .rc-scope-icon { background: rgba(255,255,255,0.2); }

.rc-scope-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.rc-scope-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Packages ── */
.rc-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.rc-package {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--t-base);
  position: relative;
}
.rc-package:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.rc-package--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.rc-package--featured:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(26,54,96,0.3);
}
.rc-package--featured h4 { color: var(--white); }
.rc-package--featured p { color: rgba(255,255,255,0.7); }
.rc-package--featured .rc-pkg-list li { color: rgba(255,255,255,0.75); }
.rc-package--featured .rc-pkg-list li::before { background: var(--teal-glow); }

.rc-pkg-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.rc-pkg-icon-lg {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.rc-pkg-icon-lg--navy {
  background: var(--gray-50);
  color: var(--navy);
}
.rc-package--featured .rc-pkg-icon-lg {
  background: rgba(42,139,118,0.2);
  color: var(--teal-glow);
}

.rc-package h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.rc-package > p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.rc-pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.rc-pkg-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.rc-pkg-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   SERVICES LANDING PAGE
══════════════════════════════════════════ */

/* ── Hero stats row ── */
.svc-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.svc-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.svc-hstat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.svc-hstat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.svc-hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Filter bar ── */
.svc-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.svc-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-filter-inner::-webkit-scrollbar { display: none; }

.svc-tab {
  padding: 9px 22px;
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.svc-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.svc-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Category header ── */
.svc-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}
.svc-cat-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-pale);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}
.svc-cat-icon--navy {
  background: rgba(26,54,96,0.08);
  color: var(--navy);
}
.svc-cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.svc-cat-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-cat-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 640px;
}

/* ── Service cards grid ── */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--t-base);
  overflow: hidden;
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.svc-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-card:hover::after { transform: scaleX(1); }

/* on gray bg sections, cards need white */
.bg-gray .svc-card { background: var(--white); }

.svc-card-icon {
  width: 50px;
  height: 50px;
  background: var(--teal-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 28px 28px 0;
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base);
}
.svc-card:hover .svc-card-icon {
  background: var(--teal);
  color: var(--white);
}

.svc-card-body {
  padding: 18px 28px 0;
  flex: 1;
}
.svc-card-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-card-body > p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.svc-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.svc-card-foot {
  padding: 16px 28px 20px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.svc-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  transition: letter-spacing var(--t-fast);
}
.svc-card:hover .svc-card-link { letter-spacing: 0.3px; }

/* ── Hidden state for filter ── */
.svc-category.hidden { display: none; }


/* ══════════════════════════════════════════
   WHY CHOOSE US — Service Pages
══════════════════════════════════════════ */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wcu-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.wcu-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.wcu-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.wcu-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.wcu-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.wcu-text p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* right visual panel */
.wcu-visual { position: relative; }

.wcu-visual-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}

.wcu-img-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
}

.wcu-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  min-height: 320px;
}

/* When a real image is placed, use this class instead */
.wcu-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wcu-cta-card {
  position: absolute;
  bottom: -20px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.wcu-cta-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* full content wrapper (no sidebar) */
.service-full-content {
  width: 100%;
}


/* ══════════════════════════════════════════
   FAQ ACCORDION — Service Pages
══════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.open {
  border-color: var(--teal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.faq-icon {
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--sp-4);
}

.wcu-img-block {
  overflow: hidden;
}
.wcu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-landing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }
  .sidebar-cta { grid-column: 1 / -1; }
  .rc-intro { grid-template-columns: 1fr; }
  .rc-intro-stat { flex-direction: row; }
  .rc-scope-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cat-header { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  .services-landing-grid { grid-template-columns: 1fr; }
  .sub-services-grid { grid-template-columns: 1fr; }
  .service-sidebar { grid-template-columns: 1fr; }
  .rc-intro { padding: 32px 24px; }
  .rc-intro-stat { flex-direction: row; gap: 12px; }
  .rc-stat-box { min-width: 0; flex: 1; padding: 18px 16px; }
  .rc-stat-num { font-size: 32px; }
  .rc-scope-grid { grid-template-columns: 1fr; }
  .rc-packages { grid-template-columns: 1fr; }
  .rc-section-header { flex-direction: column; gap: 8px; }
  .wcu-grid { grid-template-columns: 1fr; gap: 48px; }
  .wcu-cta-card { flex-direction: column; text-align: center; bottom: -40px; }
  .faq-question span { font-size: 14px; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-hero-stats { gap: 20px; }
  .svc-hstat-div { display: none; }
}

@media (max-width: 480px) {
  .rc-intro-stat { flex-direction: column; }
  .service-detail-content h2 { font-size: 22px; }
  .service-detail-content h3 { font-size: 16px; }
  .svc-hero-stats { gap: 16px; }
}

/* ── Service page hero with single background banner image ──
   Reuses the homepage's .hero-slide/.hero-pattern/.hero-grid-overlay
   layers, but with just one slide (no rotation JS) for inner pages. */
.page-hero--banner {
  position: relative;
  overflow: hidden;
}
.page-hero--banner .page-hero-inner {
  position: relative;
  z-index: 2;
}