.page-title-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(246, 246, 247, 0.95) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80') center center / cover no-repeat;
}

.service-category {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cat-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(214, 31, 38, 0.14), rgba(17, 17, 17, 0.08));
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 14px 30px rgba(214, 31, 38, 0.10);
  border: 1px solid rgba(214, 31, 38, 0.10);
}

.service-category-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}

.service-category-header p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
}

.service-category-body {
  padding: 1.5rem 2rem 2rem;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.service-list-item:hover {
  background: rgba(214, 31, 38, 0.03);
  border-color: rgba(214, 31, 38, 0.10);
  transform: translateY(-2px);
}

.service-list-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(214, 31, 38, 0.10), rgba(214, 31, 38, 0.04));
  color: var(--primary);
  font-size: 1.15rem;
}

.service-list-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.35rem;
}

.service-list-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.detail-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: 0.2s;
}

.detail-link:hover {
  gap: 0.7rem;
}

.cta {
  background: linear-gradient(135deg, #171717 0%, #242424 50%, #121212 100%);
  color: #fff;
  border-radius: 38px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 31, 38, 0.28), transparent 68%);
  pointer-events: none;
}

.cta::before {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -80px;
}

.cta::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -60px;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

@media (max-width: 991.98px) {
  .cta {
    padding: 2rem;
  }

  .service-category-header,
  .service-category-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .service-list-item {
    flex-direction: column;
  }
}
