/* Service Hero Section - Modular Folder Style */
.service-hero {
  position: relative;
  height: 65vh;
  min-height: 580px;
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url("../../assets/img/servicepage/service-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  z-index: 5;
  padding: 0 20px;
  transform: translateY(-60px);
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  display: block;
}

.service-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 auto 35px auto;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 1200px;
}

.service-hero.mep-hero h1 {
  margin: 30px;
}

.service-hero .service-description {
  font-size: 18px;
  color: #ffffff;
  max-width: 1300px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Service Page Specific Button Overrides */
.service-hero .hero-btn {
  background-color: #eaf6e5;
  color: #54b248;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  border: 1.5px solid #54b248;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  font-family: var(--font-body);
}

.service-hero .hero-btn:hover {
  background-color: #54b248;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(84, 178, 72, 0.3);
}

.service-hero .hero-btn svg {
  transition: transform 0.3s;
}

.service-hero .hero-btn:hover svg {
  transform: translate(3px, -3px);
}

@media (max-width: 768px) {
  .service-hero {
    height: auto;
    min-height: 450px;
    padding: 60px 0;
  }

  .hero-content {
    transform: translateY(-40px);
  }

  .service-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 28px;
  }

  .service-hero p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .service-hero .hero-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}