/* Hero Section */
.hero {
  /* Transform to full-screen background image layout like BriteCarpet */
  background-image: url("/assets/vacuum-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-overlay {
  /* Add dark overlay for better text readability */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-container {
  /* Center content with proper z-index */
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  /* Large white headline text */
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  /* White subtitle text */
  font-size: 1.3rem;
  color: white;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Added styling for dual buttons container */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  /* Prominent CTA buttons */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #333;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 160px;
  justify-content: center;
}

/* Added specific styling for Contact button */
.hero-cta-btn.contact-btn:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Added specific styling for WhatsApp button */
.hero-cta-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.hero-cta-btn.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-phone {
  /* Phone number display below CTA */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-phone a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-phone a:hover {
  color: #ffc107;
}

.hero-phone i {
  font-size: 1.2rem;
}

.hero-content {
  /* Container for hero content */
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
    padding: 60px 0;
    background-position: center center;
    background-size: cover;
  }

  .hero-container {
    padding: 0 15px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .hero-cta-btn {
    padding: 15px 25px;
    font-size: 1rem;
    min-width: 200px;
  }

  .hero-phone {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 450px;
    padding: 40px 0;
    background-position: center 30%;
  }

  .hero-container {
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (orientation: portrait) {
  .hero {
    background-position: center center;
    background-size: cover;
  }
}
