/* ========================================
    SERVICE HERO 1 - FULL IMAGE OVERLAY
    ======================================== */
.service-hero-1 {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.service-hero-1 .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.service-hero-1 .badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-hero-1 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
}
.service-hero-1 .description {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 32px;
}
.service-hero-1 .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.service-hero-1 .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-hero-1 .btn-primary {
  background: var(--primary);
  color: var(--white);
}
.service-hero-1 .btn-primary:hover {
  background: var(--secondary);
  color: var(--white);
}
.service-hero-1 .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.service-hero-1 .btn-secondary:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
}
.service-hero-1.stats {
  height: auto;
  min-height: unset;
  background: var(--primary);
  padding: 30px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
}
.service-hero-1.stats .stat {
  text-align: center;
}
.service-hero-1.stats .stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
}
.service-hero-1.stats .stat-label {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 1440px) {
  .service-hero-1 {
    height: auto;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .service-hero-1 {
    height: auto;
    padding-bottom: 2rem;
  }
  .service-hero-1.stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  .service-hero-1.stats .stat-value {
    font-size: 2rem;
  }
  .service-hero-1.stats .stat {
    min-width: 40%;
  }
}
