/* ===== SERVICES PAGE ===== */

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}

.service-detail__grid--reverse {
  grid-template-columns: 1fr 380px;
}

.service-detail__text h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.service-detail__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.service-detail__areas h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  margin-top: var(--space-8);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-list li {
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.service-detail__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.service-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.service-detail__card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.service-meta div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}

.service-meta div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-meta dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.service-meta dd {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.service-divider {
  height: 1px;
  background: var(--color-divider);
  margin-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.specialty-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.specialty-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.specialty-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Insurance (reused from home) ── */
.insurance__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.insurance__badge {
  padding: var(--space-3) var(--space-7);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.insurance-note {
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: left;
}

.insurance-note h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.insurance-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

@media (max-width: 900px) {
  .service-detail__grid,
  .service-detail__grid--reverse {
    grid-template-columns: 1fr;
  }

  .service-detail__card {
    position: static;
  }

  .specialty-cards {
    grid-template-columns: 1fr;
  }
}
