/* =============================================================================
   Services — Component Styles
   ============================================================================= */

/* ---------------------------------------------------------------------------
   Services Hero Slider  (svc-slider-*)
   --------------------------------------------------------------------------- */
.svc-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f0f1a;
  margin-top: var(--header-height);
  /* Height = full viewport minus header */
  height: calc(100vh - var(--header-height));
  max-height: 700px;
  min-height: 420px;
}

/* Slides */
.svc-slider__track {
  position: absolute;
  inset: 0;
}

.svc-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.svc-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.svc-slider__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,15,.88) 0%,
    rgba(5,5,15,.45) 50%,
    rgba(5,5,15,.15) 100%
  );
}

/* Centred text content */
.svc-slider__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding-bottom: 80px;
}

.svc-slider__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.svc-slider__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}

.svc-slider__cta { display: inline-flex; }

/* Arrows */
.svc-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  backdrop-filter: blur(4px);
}

.svc-slider__arrow:hover { background: rgba(255,255,255,.25); }
.svc-slider__arrow--prev { left: 24px; }
.svc-slider__arrow--next { right: 24px; }

/* Dots */
.svc-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.svc-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  padding: 0;
}

.svc-slider__dot.is-active {
  background: #e94560;
  transform: scale(1.4);
}

@media (max-width: 640px) {
  .svc-slider { max-height: 480px; min-height: 300px; }
  .svc-slider__arrow { width: 36px; height: 36px; font-size: 1rem; }
  .svc-slider__arrow--prev { left: 12px; }
  .svc-slider__arrow--next { right: 12px; }
  .svc-slider__content { padding-bottom: 56px; }
}

/* ---------------------------------------------------------------------------
   Hero (old .services-hero kept for other uses)
   --------------------------------------------------------------------------- */
.services-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.services-hero--detail {
  min-height: 50vh;
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 26, 0.65) 0%,
    rgba(15, 15, 26, 0.80) 100%
  );
  z-index: 1;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-6);
  max-width: 800px;
}

.services-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 1.75rem;
  color: #fff;
}

.services-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.80);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

/* ---------------------------------------------------------------------------
   Service Cards Grid
   --------------------------------------------------------------------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-accent-mid);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 20, 0.90) 0%,
    rgba(10, 10, 20, 0.40) 60%,
    rgba(10, 10, 20, 0.10) 100%
  );
  z-index: 1;
}

.service-card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-6);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.4rem;
  color: #fff;
}

.service-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
  line-height: var(--line-height-tight);
}

.service-card__desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--line-height-normal);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------------------------------------------------------------------------
   "What CAYA Offers" — alternating detail sections
   --------------------------------------------------------------------------- */
.services-detail .container {
  max-width: var(--container-max);
}

.services-detail__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-20);
}

.services-detail__block:last-child {
  margin-bottom: 0;
}

.services-detail__block--reverse {
  direction: rtl;
}

.services-detail__block--reverse > * {
  direction: ltr;
}

.services-detail__text {
  padding: var(--space-6) 0;
}

.services-detail__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.services-detail__heading {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: var(--line-height-tight);
}

.services-detail__desc {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-loose);
  margin-bottom: 0;
}

.services-detail__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
}

.services-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.services-detail__image-wrap:hover .services-detail__image {
  transform: scale(1.03);
}

.services-detail__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-mid) 100%);
  opacity: 0.25;
}

/* ---------------------------------------------------------------------------
   Service Detail page  (sd-*)
   --------------------------------------------------------------------------- */

/* ── Hero ── */
.sd-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #0f0f1a;
  margin-top: var(--header-height);
  overflow: hidden;
}
/* The actual image — shows 100% with no cropping */
.sd-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  z-index: 0;
}
/* Spacer: pushes section height to match image aspect ratio */
.sd-hero::before {
  content: '';
  display: block;
  width: 100%;
  /* 560/1920 = 29.17% — matches the recommended 1920×560 banner */
  padding-top: 29.17%;
  min-height: 280px;
}
/* No image: tall dark fallback */
.sd-hero:not(:has(.sd-hero__img))::before {
  padding-top: 0;
  min-height: 70vh;
}
.sd-hero__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,15,.92) 0%, rgba(5,5,15,.45) 45%, rgba(5,5,15,.08) 100%);
  z-index: 1;
}
.sd-hero__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 56px;
}
.sd-hero__wrap { position: relative; z-index: 2; }
.sd-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 28px; flex-wrap: wrap;
}
.sd-crumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.sd-crumb a:hover { color: #fff; }
.sd-crumb__current { color: rgba(255,255,255,.85); }
.sd-hero__badge {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(233,69,96,.15); border: 1px solid rgba(233,69,96,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #e94560; margin-bottom: 24px;
}
.sd-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 680px;
}
.sd-hero__sub {
  font-size: 1.125rem; color: rgba(255,255,255,.68);
  max-width: 560px; line-height: 1.7; margin-bottom: 36px;
}
.sd-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Trust bar ── */
.sd-trust { background: #1a1a2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.sd-trust__row { display: flex; align-items: center; flex-wrap: wrap; }
.sd-trust__item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); flex: 1; min-width: 160px;
}
.sd-trust__item i { font-size: 1.1rem; color: #e94560; flex-shrink: 0; }
.sd-trust__sep { width: 1px; height: 32px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ── Body layout ── */
.sd-body { background: #f4f5f7; padding: 64px 0 80px; }
.sd-body__grid {
  display: grid; grid-template-columns: 1fr 296px;
  gap: 32px; align-items: start;
}

/* ── Content ── */
.sd-content { display: flex; flex-direction: column; gap: 0; }
.sd-prose {
  background: #fff; border-radius: 16px; padding: 40px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 20px;
}
.sd-prose__lead {
  font-size: 1.125rem; font-weight: 500; color: #1a1a2e; line-height: 1.75;
  padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid #eee;
}
.sd-prose p { font-size: 1rem; color: #444; line-height: 1.85; margin-bottom: 18px; }
.sd-prose p:last-child { margin-bottom: 0; }

.sd-figure { margin: 0 0 20px; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.sd-figure img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: none;
  height: auto;
  transition: transform .5s ease;
}
.sd-figure:hover img { transform: scale(1.01); }

.sd-features {
  background: #fff; border-radius: 16px; padding: 32px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 20px;
}
.sd-features__title { font-size: 1.125rem; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; }
.sd-features__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.sd-features__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: #444; line-height: 1.5;
}
.sd-features__dot {
  flex-shrink: 0; width: 7px; height: 7px;
  border-radius: 50%; background: #e94560; margin-top: 5px;
}

.sd-inline-cta {
  background: #1a1a2e; border-radius: 16px; padding: 28px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.sd-inline-cta p { color: rgba(255,255,255,.75); font-size: 1rem; margin: 0; }
.sd-inline-cta strong { color: #fff; }

/* ── Sidebar ── */
.sd-sidebar {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: calc(var(--header-height) + 24px);
}
.sd-card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.04);
}
.sd-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.sd-card p  { font-size: 0.875rem; color: #666; line-height: 1.6; margin-bottom: 18px; }
.sd-card--dark { background: #1a1a2e; border-color: transparent; }
.sd-card--dark h3 { color: #fff; }
.sd-card--dark p  { color: rgba(255,255,255,.6); }
.sd-card--ink { background: #0f0f1a; border-color: transparent; }
.sd-card--ink h3 { color: #fff; margin-bottom: 16px; }
.sd-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(233,69,96,.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; color: #e94560; margin-bottom: 16px;
}
.sd-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sd-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,.7); }
.sd-checklist .bi-check-circle-fill { color: #e94560; font-size: 0.95rem; flex-shrink: 0; }

/* ── Bottom CTA ── */
.sd-cta { position: relative; background: #1a1a2e; padding: 80px 0; overflow: hidden; }
.sd-cta__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(233,69,96,.2) 0%, transparent 60%);
  pointer-events: none;
}
.sd-cta__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.sd-cta__title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.sd-cta__sub   { font-size: 1rem; color: rgba(255,255,255,.6); margin: 0; max-width: 460px; }
.sd-cta__btns  { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Buttons ── */
.sd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; cursor: pointer; white-space: nowrap; border: 2px solid transparent;
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
}
.sd-btn:hover { opacity: .88; transform: translateY(-1px); }
.sd-btn--red  { background: #e94560; color: #fff; }
.sd-btn--dark { background: #1a1a2e; color: #fff; }
.sd-btn--outline { background: transparent; color: #1a1a2e; border-color: #d0d0d8; }
.sd-btn--outline:hover { background: #1a1a2e; color: #fff; border-color: #1a1a2e; opacity: 1; }
.sd-btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.sd-btn--ghost:hover { background: rgba(255,255,255,.18); opacity: 1; }
.sd-btn--ghost-light { background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.sd-btn--ghost-light:hover { background: rgba(255,255,255,.08); color: #fff; opacity: 1; }
.sd-btn--full { width: 100%; }
.sd-btn--lg   { padding: 14px 32px; font-size: 1rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .sd-body__grid { grid-template-columns: 1fr; }
  .sd-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .sd-card--ink { grid-column: 1 / -1; }
  .sd-cta__inner { flex-direction: column; text-align: center; }
  .sd-cta__btns  { justify-content: center; }
}
@media (max-width: 640px) {
  .sd-hero::before { min-height: 180px; }
  .sd-hero:not(:has(.sd-hero__img))::before { min-height: 60vh; }
  .sd-hero__wrap { padding-bottom: 32px; }
  .sd-hero__title { font-size: 2rem; }
  .sd-hero__btns { flex-direction: column; }
  .sd-hero__btns .sd-btn { width: 100%; }
  .sd-trust__sep { display: none; }
  .sd-trust__item { min-width: 50%; padding: 14px 16px; }
  .sd-prose { padding: 24px 20px; }
  .sd-features { padding: 24px 20px; }
  .sd-features__list { grid-template-columns: 1fr; }
  .sd-inline-cta { padding: 20px; flex-direction: column; align-items: flex-start; }
  .sd-sidebar { grid-template-columns: 1fr; }
}

/* ── Legacy svc-* kept for other pages ── */
.svc-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--color-accent);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: var(--space-16);
  margin-top: var(--header-height);
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,26,0.30) 0%,
    rgba(10,10,26,0.65) 45%,
    rgba(10,10,26,0.95) 100%
  );
  z-index: 1;
}

/* Decorative rings shown when no image */
.svc-hero__rings {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.svc-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: svc-ring-pulse 6s ease-in-out infinite;
}

.svc-hero__ring--1 { width: 400px; height: 400px; animation-delay: 0s; }
.svc-hero__ring--2 { width: 650px; height: 650px; animation-delay: 1.5s; }
.svc-hero__ring--3 { width: 900px; height: 900px; animation-delay: 3s; }

@keyframes svc-ring-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.8; transform: translate(-50%,-50%) scale(1.04); }
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
}

/* Breadcrumb */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.svc-breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.svc-breadcrumb a:hover { color: #fff; }

.svc-breadcrumb .bi {
  font-size: 0.65rem;
  opacity: 0.5;
}

/* Icon badge */
.svc-hero__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: rgba(233,69,96,.18);
  border: 1.5px solid rgba(233,69,96,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-highlight);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.svc-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
  max-width: 700px;
}

.svc-hero__sub {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.svc-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Scroll indicator */
.svc-hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.svc-hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}

.svc-hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: svc-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes svc-scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ── Highlights bar ── */
.svc-highlights {
  background: var(--color-accent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.svc-highlights__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,.08);
}

.svc-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-right: 1px solid rgba(255,255,255,.07);
}

.svc-highlight:last-child { border-right: none; }

.svc-highlight__icon {
  font-size: 1.5rem;
  color: var(--color-highlight);
  flex-shrink: 0;
}

.svc-highlight strong {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.svc-highlight span {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Main layout ── */
.svc-main {
  padding: var(--space-16) 0 var(--space-20);
  background: #f8f9fb;
}

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-10);
  align-items: start;
}

/* ── Article ── */
.svc-article {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.svc-article__body {
  padding: var(--space-10) var(--space-10) var(--space-8);
  font-size: var(--font-size-md);
  line-height: 1.85;
  color: var(--color-text);
}

.svc-article__lead {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.svc-article__body p {
  margin-bottom: var(--space-5);
  color: #444;
}

.svc-article__body p:last-child { margin-bottom: 0; }

.svc-article__figure {
  margin: 0;
  overflow: hidden;
}

.svc-article__img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
  transition: transform var(--transition-slow);
}

.svc-article__img:hover { transform: scale(1.02); }

.svc-article__caption {
  padding: var(--space-3) var(--space-10);
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

/* What's included */
.svc-article__features {
  padding: var(--space-8) var(--space-10);
  background: #f8f9fb;
  border-top: 1px solid var(--color-border);
}

.svc-article__features-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.svc-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: #444;
  line-height: 1.5;
}

.svc-feature-list__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-highlight);
  margin-top: 5px;
}

/* Bottom CTA strip */
.svc-article__cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-10);
  background: var(--color-accent);
  flex-wrap: wrap;
}

.svc-article__cta-strip p {
  color: rgba(255,255,255,.8);
  font-size: var(--font-size-base);
  margin: 0;
}

.svc-article__cta-strip strong { color: #fff; }

/* ── Sidebar ── */
.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.svc-sidebar__card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}

.svc-sidebar__card--accent {
  background: var(--color-accent);
  border-color: transparent;
}

.svc-sidebar__card--dark {
  background: #0f0f1a;
  border-color: transparent;
}

.svc-sidebar__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(233,69,96,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-highlight);
  margin-bottom: var(--space-4);
}

.svc-sidebar__heading {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.svc-sidebar__card--accent .svc-sidebar__heading,
.svc-sidebar__card--dark .svc-sidebar__heading {
  color: #fff;
}

.svc-sidebar__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.svc-sidebar__card--accent .svc-sidebar__text {
  color: rgba(255,255,255,.65);
}

.svc-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--space-2);
}

.svc-sidebar__btn:last-child { margin-bottom: 0; }

.svc-sidebar__btn--outline {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
}

.svc-sidebar__btn--outline:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.svc-sidebar__card:not(.svc-sidebar__card--accent):not(.svc-sidebar__card--dark) .svc-sidebar__btn--outline {
  border-color: var(--color-border);
  color: var(--color-text);
}

.svc-sidebar__card:not(.svc-sidebar__card--accent):not(.svc-sidebar__card--dark) .svc-sidebar__btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Why list */
.svc-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.svc-why-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.75);
}

.svc-why-list .bi-check-circle-fill {
  color: var(--color-highlight);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── CTA Banner ── */
.svc-cta-banner {
  position: relative;
  background: var(--color-accent);
  padding: var(--space-20) 0;
  overflow: hidden;
}

.svc-cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233,69,96,.18) 0%, transparent 65%);
  pointer-events: none;
}

.svc-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.svc-cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.svc-cta-banner__sub {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 480px;
}

.svc-cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-highlights__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-highlight:nth-child(2) { border-right: none; }
  .svc-highlight:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .svc-highlight:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }
}

@media (max-width: 900px) {
  .svc-layout {
    grid-template-columns: 1fr;
  }

  .svc-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .svc-sidebar__card--dark { grid-column: 1 / -1; }

  .svc-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .svc-cta-banner__actions { justify-content: center; }

  .svc-feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .svc-hero { min-height: 60vh; padding-bottom: var(--space-10); }
  .svc-hero__title { font-size: 2rem; }
  .svc-hero__actions { flex-direction: column; }
  .svc-hero__actions .btn { width: 100%; justify-content: center; }

  .svc-highlights__inner { grid-template-columns: 1fr 1fr; }

  .svc-article__body { padding: var(--space-6); }
  .svc-article__features { padding: var(--space-6); }
  .svc-article__cta-strip { padding: var(--space-5) var(--space-6); flex-direction: column; align-items: flex-start; }

  .svc-sidebar { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .services-detail__block,
  .services-detail__block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-8);
  }

  .services-detail__image-wrap {
    order: -1;
  }

  .services-detail__block--reverse .services-detail__image-wrap {
    order: -1;
  }

  .services-hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    min-height: 260px;
  }
}
