/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* ---- SERVICE HERO ---- */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.svc-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.svc-hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(2rem, 5vw, 4rem);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span:last-child { color: var(--color-gold); }

.svc-hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-full);
  padding: 3px 14px;
  margin-bottom: 1rem;
}
.svc-hero__label--urgent {
  color: #fff;
  background: rgba(220, 50, 50, 0.2);
  border-color: rgba(220, 50, 50, 0.5);
}
.svc-hero__title {
  font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.svc-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 55ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.svc-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---- CONTENT LAYOUT ---- */
.svc-content__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  align-items: start;
}

/* ---- MAIN COPY ---- */
.svc-main h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.svc-main h2:first-child { margin-top: 0; }
.svc-main p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-left: 0;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: 1.5em;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Urgent banner */
.svc-urgent-banner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: #f87171;
  line-height: 1.5;
}
.svc-urgent-banner svg { color: #ef4444; flex-shrink: 0; }
.svc-urgent-banner a { color: inherit; font-weight: 700; text-decoration: underline; }

/* CTA block */
.svc-cta-block {
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-lg);
}
.svc-cta-block--urgent {
  border-left-color: #ef4444;
}
.svc-cta-block h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.svc-cta-block p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.svc-cta-block__btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---- SIDEBAR ---- */
.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: 100px;
}
.svc-sidebar__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.svc-sidebar__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.svc-sidebar__card--cta {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(212,160,23,0.06) 100%);
  border-color: var(--color-gold-dim);
}
.svc-sidebar__card--cta p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.svc-sidebar__card--urgent {
  background: rgba(220, 50, 50, 0.07);
  border-color: rgba(220, 50, 50, 0.3);
}
.svc-sidebar__card--urgent h3 { color: #f87171; border-color: rgba(220, 50, 50, 0.2); }
.svc-sidebar__card--urgent p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* Facts list */
.svc-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.svc-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.svc-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-facts span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* Other services */
.svc-sidebar__other {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.svc-sidebar__other h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.svc-sidebar__other ul { list-style: none; }
.svc-sidebar__other li { border-bottom: 1px solid var(--color-border); }
.svc-sidebar__other li:last-child { border-bottom: none; }
.svc-sidebar__other a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.svc-sidebar__other a::after { content: '→'; color: var(--color-gold); }
.svc-sidebar__other a:hover { color: var(--color-gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .svc-content__inner {
    grid-template-columns: 1fr;
  }
  .svc-sidebar {
    position: static;
    order: -1; /* sidebar above content on mobile */
  }
  .svc-sidebar__other { display: none; } /* save space on mobile */
}
@media (max-width: 600px) {
  .svc-hero { min-height: 55vh; }
  .svc-hero__actions .btn--outline { display: none; }
}
