/* ═══════════════════════════════════════════
   ERPRed — assets/service.css
   Styles for individual service pages
   ═══════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--dark);
  border-bottom: 1px solid #1a1a1a;
  padding: 14px 60px;
  margin-top: 67px;
}
.breadcrumb .container {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: var(--white); }

/* ── Service Hero ── */
.svc-hero {
  padding: 80px 60px 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}
.svc-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(192,0,26,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero .container { position: relative; z-index: 1; max-width: 800px; }
.svc-hero-inner { display: flex; flex-direction: column; align-items: center; }
.svc-hero-icon {
  font-size: 4rem;
  width: 100px; height: 100px;
  background: rgba(192,0,26,0.12);
  border: 1px solid rgba(192,0,26,0.3);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,0,26,0.1);
  border: 1px solid rgba(192,0,26,0.3);
  border-radius: 99px;
  padding: 5px 16px; font-size: 0.78rem; color: #ff6070;
  margin-bottom: 20px;
}
.svc-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.svc-subtitle { font-size: 1.1rem; color: #ccc; margin-bottom: 16px; font-weight: 500; }
.svc-desc { font-size: 1rem; color: #888; max-width: 660px; margin: 0 auto 36px; line-height: 1.8; }
.svc-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Highlights bar ── */
.svc-highlights-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px;
}
.svc-highlights {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.svc-highlight-item { padding: 12px; }
.svc-h-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--red); line-height: 1;
}
.svc-h-label { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

/* ── Features Grid ── */
.svc-features { background: var(--dark); padding: 100px 60px; }
.svc-feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-feat-card {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color .2s, transform .15s;
}
.svc-feat-card:hover { border-color: var(--red); transform: translateY(-3px); }
.svc-feat-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: rgba(192,0,26,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-feat-card h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.svc-feat-card p { font-size: 0.8rem; color: #888; line-height: 1.6; }

/* ── Description Sections ── */
.svc-desc-section { padding: 100px 60px; }
.svc-desc-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.svc-desc-block {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
}
.svc-desc-block h3 {
  font-size: 1.1rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192,0,26,0.2);
}
.svc-desc-block p { font-size: 0.9rem; color: #999; line-height: 1.85; }

/* CTA box on side */
.svc-cta-box {
  background: linear-gradient(160deg, #1e0008 0%, var(--card) 60%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.svc-cta-icon { font-size: 2.5rem; margin-bottom: 16px; }
.svc-cta-box h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.svc-cta-box p { font-size: 0.85rem; color: #888; line-height: 1.7; }

/* ── Related Services ── */
.svc-related { background: var(--dark); padding: 80px 60px; }
.svc-related-links {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px;
}
.svc-related-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid #222;
  border-radius: 10px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color .2s, transform .15s;
  flex: 1; min-width: 200px;
}
.svc-related-card:hover { border-color: var(--red); transform: translateY(-3px); }
.rel-icon { font-size: 1.3rem; }
.rel-arrow { color: var(--red); margin-right: auto; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svc-feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .breadcrumb { padding: 12px 24px; }
  .svc-hero { padding: 60px 24px 70px; }
  .svc-highlights-bar { padding: 24px; }
  .svc-highlights { grid-template-columns: repeat(2, 1fr); }
  .svc-features { padding: 60px 24px; }
  .svc-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-desc-section { padding: 60px 24px; }
  .svc-desc-grid { grid-template-columns: 1fr; }
  .svc-cta-box { position: static; }
  .svc-related { padding: 60px 24px; }
  .svc-related-card { min-width: 100%; }
}
@media (max-width: 600px) {
  .svc-feat-grid { grid-template-columns: 1fr; }
  .svc-highlights { grid-template-columns: repeat(2, 1fr); }
}
