/* =============================================================
   MedX Careers — Service Page Shared Styles
   ============================================================= */

/* ── SERVICE HERO ── */
.service-hero {
  padding: 120px 5% 70px;
  background: linear-gradient(135deg, #001a5c 0%, #003087 50%, #005EB8 100%);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(0,169,206,0.15) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255,184,28,0.08) 0%, transparent 40%);
}

.service-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.service-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.service-breadcrumb a:hover { color: white; }
.service-breadcrumb span { color: rgba(255,255,255,0.3); }

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,28,0.15);
  border: 1px solid rgba(255,184,28,0.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  margin-bottom: 18px;
}

.service-hero h1 em { color: var(--accent); font-style: italic; }

.service-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.service-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  min-width: 220px;
  text-align: center;
}

.service-hero-cta .price-from {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-hero-cta .price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.service-hero-cta .price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: -4px;
}

.service-hero-cta .btn-cta {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--nhs-navy);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(255,184,28,0.3);
}

.service-hero-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,184,28,0.45);
}

.service-hero-cta .btn-secondary {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.service-hero-cta .btn-secondary:hover { color: white; }

/* ── WHAT YOU GET ── */
.what-you-get {
  background: var(--off-white);
  padding: var(--section-pad);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.deliverable-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.deliverable-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,48,135,0.1);
}

.deliverable-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: rgba(0,48,135,0.08);
  line-height: 1;
  margin-bottom: 8px;
}

.deliverable-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--nhs-navy);
  margin-bottom: 8px;
}

.deliverable-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── PROCESS STEPS ── */
.service-process {
  padding: var(--section-pad);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:last-child { padding-bottom: 0; }

.process-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nhs-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--nhs-navy);
}

.process-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--nhs-navy);
  margin-bottom: 6px;
  padding-top: 12px;
}

.process-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.process-body .time-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--nhs-blue);
  background: rgba(0,114,206,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ── WHO IT'S FOR ── */
.who-its-for {
  background: var(--off-white);
  padding: var(--section-pad);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.who-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.who-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--nhs-navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.who-icon svg {
  width: 18px; height: 18px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.who-card h4 { font-size: 14px; font-weight: 600; color: var(--nhs-navy); margin-bottom: 4px; }
.who-card p { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* ── SERVICE FAQ ── */
.service-faq { padding: var(--section-pad); }

/* ── BOTTOM CTA STRIP ── */
.service-cta-strip {
  background: linear-gradient(135deg, #001a5c, #003087);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,169,206,0.15) 0%, transparent 60%);
}

.service-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-cta-strip .btn-gold {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-cta { min-width: auto; width: 100%; }
  .service-hero-stats { gap: 20px; }
  .process-timeline::before { display: none; }
}

@media (max-width: 680px) {
  .service-hero { padding: 90px 5% 50px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
}
