/* =====================================================
   SERVICE DETAIL PAGES (shared — 5 services)
   Split description + image; full-width Next steps; nav row
===================================================== */

.service-wrap { padding: 110px 0; }
@media (max-width: 768px) { .service-wrap { padding: 70px 0; } }

.service-kicker {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: var(--aft-mid-blue);
  margin-bottom: 10px;
}
.service-title {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #0d1e50;
}
.service-lead {
  color: #4b5565;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: none;
}

.caps-heading {
  font-size: 16px;
  color: #0d1e50;
  margin: 0 0 10px;
  font-weight: 800;
}
.service-cap-list {
  margin: 0 0 18px;
  padding-left: 1.25em;
  color: #4b5565;
  font-size: 15px;
  line-height: 1.7;
}
.service-cap-list li { margin: 8px 0; }

/* Main content + illustrative image */
.service-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: 36px;
  align-items: start;
  margin-top: 18px;
}
@media (max-width: 991px) {
  .service-detail-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.service-detail-main { min-width: 0; }

.service-detail-aside {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 25, 60, .1);
  background: #eef1f6;
  align-self: start;
}
.service-detail-aside img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 440px;
  object-fit: cover;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .service-detail-aside img {
    max-height: 320px;
  }
}

/* Prev / All services / Next */
.service-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
}
.aft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid rgba(13, 30, 80, .16);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.aft-btn.primary {
  background: var(--aft-deep-blue);
  border-color: var(--aft-deep-blue);
  color: #fff;
}
.aft-btn.primary:hover {
  background: var(--aft-mid-blue);
  border-color: var(--aft-mid-blue);
  color: #fff;
}
.aft-btn.light {
  background: #fff;
  color: #0d1e50;
}
.aft-btn.light:hover {
  background: rgba(13, 30, 80, .04);
}
.aft-btn-disabled {
  opacity: .45;
  pointer-events: none;
  cursor: not-allowed;
}

/* Full-width Next steps (below main detail) */
.service-next-full {
  margin-top: 28px;
}
.service-next-full .side-box {
  background: #fff;
  border: 1px solid rgba(13, 30, 80, .10);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 34px rgba(10, 25, 60, .06);
}
.side-title { margin: 0 0 10px; color: #0d1e50; font-size: 18px; }
.side-text {
  margin: 0 0 14px;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.7;
}
.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(13, 30, 80, .08);
}
.side-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 30, 80, .08);
}
.side-list li:last-child { border-bottom: none; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--aft-deep-blue);
  margin-top: 6px;
  flex: 0 0 auto;
}
.side-mini {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(13, 30, 80, .08);
}
.side-mini li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 30, 80, .08);
  color: #4b5565;
  font-size: 13.5px;
  line-height: 1.5;
}
.side-mini li:last-child { border-bottom: none; }
.side-mini strong { color: #0d1e50; }
.side-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
