/* Service Detail Pages */
.service-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-hero-icon {
  font-size: 110px;
  opacity: 0.12;
  flex-shrink: 0;
  line-height: 1;
}

/* Layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.detail-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.detail-card h3 { font-size: 15px; font-weight: 700; margin: 12px 0 7px; color: var(--text); }
.detail-card p  { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-list { list-style: none; }
.sidebar-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li::before { content: '✓'; color: var(--teal); font-size: 12px; flex-shrink: 0; }
.sidebar-list li:last-child { border: none; }

.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-links a {
  color: var(--blue);
  font-size: 13px;
  padding: 7px 12px;
  background: var(--blue-lt);
  border-radius: 8px;
  border: 1px solid rgba(27,42,107,0.12);
  transition: all 0.18s;
}
.related-links a:hover { background: rgba(27,42,107,0.12); border-color: rgba(27,42,107,0.25); }

/* Process steps */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step { text-align: center; flex: 1; min-width: 140px; max-width: 190px; }
.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.process-step p  { color: var(--muted); font-size: 13px; line-height: 1.5; }
.process-arrow { color: var(--blue); font-size: 22px; opacity: 0.3; flex-shrink: 0; padding: 0 12px; margin-bottom: 36px; }

/* Highlight box */
.highlight-box {
  background: var(--blue-lt);
  border: 1px solid rgba(27,42,107,0.18);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
}
.highlight-box h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.highlight-box p  { color: var(--text2); font-size: 15px; line-height: 1.7; }

@media (max-width: 1024px) { .detail-layout { grid-template-columns: 1fr; } .detail-sidebar { order: -1; } .service-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .service-hero-inner { flex-direction: column; } .service-hero-icon { font-size: 60px; } .process-steps { flex-direction: column; gap: 20px; } .process-arrow { transform: rotate(90deg); } }
