/* =================================================================
   LAUNDRY_AND_STAIN_REMOVAL.CSS — Laundry service page
   ================================================================= */

.hero-background-service {
   width: 100%;
   min-height: 100vh;
   background:
      url('../../assets/images/service_pages/laundry_and_stain_removal.webp') center/cover no-repeat;
   position: relative;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   padding: 2rem 4rem;
   overflow: hidden;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to right,
         rgba(0, 0, 0, 1) 0%,
         rgba(0, 0, 0, 0.65) 25%,
         rgba(0, 0, 0, 0.35) 50%,
         rgba(0, 0, 0, 0.1) 75%,
         rgba(0, 0, 0, 0) 100%);
   z-index: 1;
}

.hero-content-wrapper {
   position: relative;
   z-index: 2;
   text-align: left;
   max-width: 700px;
   color: white;
   animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.hero-title-service {
   /* reduced by 25%: 2rem -> 1.5rem, 8vw -> 6vw, 5.5rem -> 4.125rem */
   font-size: clamp(1.3rem, 5.5vw, 3.9rem);
   font-weight: 900;
   color: white;
   margin-bottom: clamp(0.75rem, 2.25vw, 1.125rem);
   letter-spacing: -1px;
   line-height: 1.1;
}

.hero-description-service {
   font-size: clamp(0.9rem, 2.5vw, 1.25rem);
   margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
   color: var(--gray-300);
   line-height: 1.6;
   opacity: 0.95;
   font-weight: 300;
}

.hero-buttons-container {
   display: flex;
   position: center;
   gap: clamp(0.75rem, 2vw, 1.5rem);
   position: absolute;
   justify-content: center;
   flex-wrap: wrap;
}

.hero-btn {
   padding: clamp(10px, 2vw, 14px) clamp(24px, 5vw, 40px);
   font-size: clamp(0.8rem, 1.5vw, 1rem);
   font-weight: 600;
   border-radius: 50px;
   text-decoration: none;
   transition: all 0.3s ease;
   cursor: pointer;
   border: 2px solid transparent;
   display: inline-block;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.hero-btn-primary {
   background-color: #7DC3ED;
   color: white;
   box-shadow: 0 4px 15px #3B9FDB;
}

.hero-btn-primary:hover {
   background-color: #7DC3ED;
   transform: translateY(-3px);
   box-shadow: 0 6px 20px #3B9FDB;
}

.hero-btn-secondary {
   background-color: transparent;
   color: white;
   border: 2px solid white;
}

.hero-btn-secondary:hover {
   background-color: white;
   color: #333;
   transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
   .hero-background-service {
      padding: clamp(1rem, 3vw, 1.5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
   }

   .hero-content-wrapper {
      text-align: center;
      width: 100%;
   }

   .hero-buttons-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
   }

   .hero-overlay {
      background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.2) 100%);
   }
}

@media (max-width: 480px) {
   .hero-background-service {
      padding: 1rem;
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
   }

   .hero-description-service {
      padding-left: 20px;
      padding-right: 20px;
   }

   .hero-content-wrapper {
      max-width: 100%;
      text-align: center;
      width: 100%;
   }

   .hero-buttons-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      width: 100%;
   }

   .hero-btn {
      width: auto;
      min-width: 160px;
   }

   .hero-overlay {
      background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.4) 100%);
   }
}