/* ===================================================
   The Helping Heros – Premium Services Page
   =================================================== */

/* ================= GLOBAL ================= */
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  scroll-behavior: smooth;
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Premium home page background */
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,215,0,0.12), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, #1e3cff 0%, #1428b8 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: sparkMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  animation-duration: 30s;
  transform: rotate(90deg);
}

@keyframes sparkMove {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(20%,20%) rotate(360deg); }
}

.hero-section h1 {
  font-size: clamp(32px,5vw,60px);
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 14px rgba(255,215,0,0.6);
  position: relative;
  z-index: 1;
}

.hero-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero-section .cta-btn {
  background: linear-gradient(135deg,#FFD700,#e6c200);
  color: #002aaaff;
  padding: 12px 30px;
  border: none;
  border-radius: 22px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,215,0,0.35);
  transition: all 0.35s ease;
}

.hero-section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,215,0,0.5);
}

/* ================= SERVICES ================= */
.services-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #f0f5ff, #dceeff);
  text-align: center;
}

.services-section h2 {
  font-size: clamp(28px,5vw,48px);
  color: #1e3cff;
  margin-bottom: 50px;
  text-shadow: 0 0 8px rgba(30,60,255,0.25);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 280px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25),
              0 0 20px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35),
              0 0 28px rgba(255,215,0,0.35);
}

.service-card h3 {
  color: #1e3cff;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-card p {
  color: #050000;
  font-size: 15px;
  line-height: 1.5;
}

.service-card .icon {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255,215,0,0.5);
}

/* ================= PROCESS SECTION ================= */
.process-section {
  padding: 80px 20px;
  background: #eaf4ff;
  text-align: center;
}

.process-section h2 {
  font-size: clamp(28px,5vw,48px);
  color: #1e3cff;
  margin-bottom: 50px;
  text-shadow: 0 0 6px rgba(30,60,255,0.2);
}

.process-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 18px;
  padding: 25px 20px;
  max-width: 250px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18),
              0 0 18px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28),
              0 0 28px rgba(255,215,0,0.25);
}

.process-card h4 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 18px;
}

.process-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.process-card .icon {
  font-size: 36px;
  color: #1e3cff;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(30,60,255,0.25);
}

/* ================= BENEFITS ================= */
.benefits-section {
  padding: 80px 20px;
  background: #1e3cff;
  color: #FFD700;
  text-align: center;
}

.benefits-section h2 {
  font-size: clamp(28px,5vw,48px);
  margin-bottom: 50px;
  color: #e6c200;
  text-shadow: 0 0 12px rgba(255,215,0,0.5);
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 18px;
  padding: 25px 20px;
  max-width: 250px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25),
              0 0 18px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35),
              0 0 28px rgba(255,215,0,0.35);
}

.benefit-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* ================= POPULAR SERVICES ================= */
.popular-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #f0f5ff, #dceeff);
  text-align: center;
}

.popular-section h2 {
  font-size: clamp(28px,5vw,48px);
  color: #1e3cff;
  margin-bottom: 50px;
  text-shadow: 0 0 6px rgba(30,60,255,0.2);
}

.popular-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.popular-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 18px;
  padding: 25px 20px;
  max-width: 280px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18),
              0 0 18px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.popular-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28),
              0 0 28px rgba(255,215,0,0.25);
}

.popular-card h4 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 18px;
}

.popular-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 80px 20px;
  background: #1e3cff;
  color: #FFD700;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px,5vw,48px);
  margin-bottom: 20px;
  color: #e6c200;
  text-shadow: 0 0 12px rgba(255,215,0,0.5);
}

.cta-section .cta-btn {
  background: linear-gradient(135deg,#FFD700,#e6c200);
  color: #1e3cff;
  padding: 12px 30px;
  border: none;
  border-radius: 22px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,215,0,0.35);
  transition: all 0.35s ease;
}

.cta-section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,215,0,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .service-cards, .process-cards, .benefits-list, .popular-cards {
    flex-direction: column;
    align-items: center;
  }
}
