/* ============================================
   Service Page Specific Styles
   ============================================ */

/* --- Service Hero --- */
.service-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248,249,252,0.95) 0%, rgba(240,241,248,0.85) 50%, rgba(248,249,252,0.92) 100%);
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.service-hero-badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.service-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* --- Service Detail Grid --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-detail-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span:last-child {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .service-hero { min-height: 60vh; }
  .service-hero-content h1 { font-size: 2.4rem; }
  .service-hero-content p { font-size: 0.95rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 120px; }
}

@media (max-width: 480px) {
  .service-hero-content h1 { font-size: 1.8rem; }
  .stat-number { font-size: 1.6rem; }
}