/* ============================================================
   Services Page Styles
   ============================================================ */

/* ── Page hero banner ── */
.page-hero {
  background: linear-gradient(105deg, #0d1b2e 0%, #1a3558 100%);
  padding: 64px 0 56px;
}
.page-hero .hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}
.page-hero .hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--primary);
}
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
}
.page-hero-logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── Services detail section ── */
.services-detail {
  padding: 72px 0 48px;
}

/* ── Service block ── */
.svc-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:first-child { padding-top: 0; }
.svc-block:last-child  { border-bottom: none; }

.svc-block--alt {
  background: #f9fafb;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

/* ── Icon ── */
.svc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #eef7fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.svc-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  stroke: var(--primary);
}

/* ── Content ── */
.svc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.svc-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.3;
}

.svc-content > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px 32px;
}

.svc-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
}

/* ── CTA banner ── */
.services-cta {
  background: linear-gradient(105deg, #0d1b2e 0%, #1a3558 100%);
  padding: 72px 24px;
  text-align: center;
  margin-top: 0;
}
.services-cta h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.services-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.88; color: #fff; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .svc-block {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .svc-block--alt {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .svc-list {
    grid-template-columns: 1fr;
  }
  .page-hero h1 { font-size: 28px; }
  .services-cta h2 { font-size: 24px; }
}
