/* ============================================
   BCG LAW — service-page.css
   Styles specific to individual service pages
============================================ */

/* === HERO WITH FORM === */
.svc-hero {
  background: var(--navy);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184, 154, 90, 0.1);
}

.svc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.svc-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 20px;
}

.svc-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.svc-hero-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.svc-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-hero-bullets li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}

.svc-hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero form card */
.svc-hero-form {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
}

.form-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}

/* === SHARED SECTION STYLES === */
.svc-section {
  padding: 96px 48px;
}

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-section-inner--centered {
  display: block;
}

.svc-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.svc-section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.svc-section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.svc-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.svc-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* === DEFINING THE ISSUE === */
.svc-define { background: var(--white); }

.svc-callout {
  display: flex;
  align-items: flex-start;
  padding-top: 48px;
}

.svc-callout-inner {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px;
  position: sticky;
  top: 100px;
}

.callout-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.svc-callout-inner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}

.svc-callout-inner strong { color: var(--white); font-weight: 500; }

/* === HOW WE CAN HELP === */
.svc-help { background: var(--cream); }

.svc-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-help-card {
  background: var(--white);
  padding: 36px 28px;
  transition: transform 0.2s;
}

.svc-help-card:hover { transform: translateY(-4px); }

.svc-help-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-help-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.svc-help-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-help-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === PROCESS STEPS === */
.svc-process { background: var(--white); }

.svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-step {
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.svc-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.svc-step-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-step-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === RESTRICTIONS === */
.svc-restrictions { background: var(--cream); }

.svc-restrict-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-restrict-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  border-left: 3px solid transparent;
}

.svc-restrict-card--warn {
  border-left-color: var(--gold);
}

.svc-restrict-card--info {
  border-left-color: var(--navy);
  background: var(--navy);
}

.svc-restrict-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-restrict-card--info h3 {
  color: var(--white);
}

.svc-restrict-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.svc-restrict-card--info p {
  color: rgba(255,255,255,0.65);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .svc-hero { padding: 56px 24px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-form { padding: 28px; }

  .svc-section { padding: 72px 24px; }
  .svc-section-inner { grid-template-columns: 1fr; gap: 40px; }

  .svc-callout { padding-top: 0; }
  .svc-callout-inner { position: static; }

  .svc-help-grid { grid-template-columns: 1fr; gap: 2px; }
  .svc-steps { grid-template-columns: 1fr; gap: 2px; }
  .svc-restrict-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .svc-help-grid { grid-template-columns: 1fr; }
}
