/* Shared styles for individual service detail pages */

.service-hero {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(245, 0, 250, 0.28), transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(46, 217, 195, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(5, 16, 39, 0.98), rgba(10, 31, 75, 0.95));
  color: #ffffff;
  padding: 8.5rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0, 174, 239, 0.45), transparent 70%);
  opacity: 0.75;
  mix-blend-mode: screen;
  pointer-events: none;
}

.service-hero > * {
  position: relative;
  z-index: 2;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 2.15rem;
  border-radius: 9999px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
  text-decoration: none;
}

.btn-primary {
  background: #ff5a5a;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(255, 90, 90, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(255, 140, 66, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(5, 16, 39, 0.22);
}

.btn-dark {
  border: 1px solid rgba(10, 26, 63, 0.12);
  color: #0a1a3f;
  background: rgba(10, 26, 63, 0.02);
  box-shadow: 0 0 0 rgba(10, 26, 63, 0.08);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: rgba(10, 26, 63, 0.35);
  background: rgba(10, 26, 63, 0.05);
  color: #050f29;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10, 26, 63, 0.15);
}

.stat-card,
.process-card,
.core-service-card,
.why-card,
.pricing-card,
.highlight-card {
  border-radius: 1.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover,
.process-card:hover,
.core-service-card:hover,
.why-card:hover,
.pricing-card:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(5, 16, 39, 0.16);
}

.service-content {
  position: relative;
  margin: -3.5rem auto 4.5rem;
  padding: 4.5rem 2rem;
  max-width: 960px;
  background: #ffffff;
  border-radius: 2.25rem;
  box-shadow: 0 35px 90px rgba(5, 16, 39, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.12);
  z-index: 5;
}

@media (max-width: 640px) {
  .service-content {
    margin: -2.5rem auto 3.5rem;
    padding: 3.5rem 1.5rem;
    border-radius: 1.75rem;
  }
}

.service-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  margin-top: 2.5rem;
}

.service-content p {
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.85);
}
