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

/* Breadcrumb */
.svc-breadcrumb {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .6rem 0;
  font-size: .8rem;
  color: #888;
}
.svc-breadcrumb a { color: #aaa; transition: color .18s; }
.svc-breadcrumb a:hover { color: var(--green); }
.svc-breadcrumb span { margin: 0 .4rem; color: #555; }
.svc-breadcrumb span:last-child { color: var(--green); margin: 0; }

/* Hero */
.svc-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(2,2,2,.92) 0%, rgba(2,2,2,.75) 60%, rgba(2,2,2,.5) 100%);
}
.svc-hero-content {
  position: relative; z-index: 1;
  padding: 3rem 0;
  max-width: 640px;
}
.svc-hero-icon {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.svc-hero-icon svg path { fill: #061006; }
.svc-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .65rem;
  line-height: 1.05;
}
.svc-hero-content p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

/* Main layout */
.svc-main { background: var(--dark); padding: 4rem 0; }
.svc-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Content area */
.svc-content h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.svc-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 2rem 0 .85rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.svc-content p {
  color: #ccc;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.svc-inline-img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: block;
  max-height: 380px;
  object-fit: cover;
}

/* Service type grid */
.svc-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.svc-type-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 1rem 1.1rem;
}
.svc-type-card h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--white);
  margin-bottom: .35rem;
  text-transform: uppercase;
}
.svc-type-card p { font-size: .82rem; color: #999; margin: 0; line-height: 1.5; }

/* Checklist */
.svc-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-bottom: 1.5rem;
}
.svc-checklist li {
  color: #ccc;
  font-size: .9rem;
  padding-left: 1.4rem;
  position: relative;
}
.svc-checklist li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Process steps */
.svc-process { margin-top: .5rem; }
.svc-steps { display: flex; flex-direction: column; gap: 1rem; }
.svc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.svc-step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #061006;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-step h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.svc-step p { color: #999; font-size: .82rem; margin: 0; line-height: 1.5; }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.svc-cta-card {
  background: #0d0d0d;
  border: 1px solid rgba(113,211,53,.35);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  padding: 1.5rem;
}
.svc-cta-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.svc-cta-card p { color: #aaa; font-size: .85rem; margin-bottom: 1rem; line-height: 1.5; }
.svc-trust {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .85rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.svc-trust div { color: var(--green); font-size: .8rem; font-weight: 600; }

.svc-other-services {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 1.25rem;
}
.svc-other-services h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.svc-other-services ul { display: flex; flex-direction: column; gap: 0; }
.svc-other-services li { border-bottom: 1px solid rgba(255,255,255,.06); }
.svc-other-services a {
  display: block;
  color: #aaa;
  font-size: .85rem;
  padding: .55rem 0;
  transition: color .18s, padding-left .18s;
}
.svc-other-services a:hover { color: var(--green); padding-left: .4rem; }

.svc-review-snippet {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  padding: 1.25rem;
}
.svc-stars { color: #ffd22e; font-size: 1rem; margin-bottom: .5rem; }
.svc-review-snippet p { color: #ccc; font-size: .85rem; font-style: italic; line-height: 1.6; margin-bottom: .5rem; }
.svc-review-snippet strong { color: #888; font-size: .78rem; }

/* Responsive */
@media (max-width: 860px) {
  .svc-body { grid-template-columns: 1fr; }
  .svc-sidebar { order: -1; }
  .svc-type-grid { grid-template-columns: 1fr; }
  .svc-checklist { grid-template-columns: 1fr; }
}
