 /* ===========================
   HERO SLIDER – CLEAN & GLOSSY
=========================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Swiper Container */
.hero-slider {
  width: 100%;
  height: 100%;
}

/* Slides */
.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* Glossy + Highlighted + Smooth */
  filter: brightness(1.25) contrast(1.15) saturate(1.25);
  transition: transform 2s ease, filter 1.5s ease;

  /* Remove blur completely */
  backdrop-filter: none;
}

/* Subtle zoom animation */
.hero-slider .swiper-slide-active img {
  transform: scale(1.08);
  filter: brightness(1.3) contrast(1.2) saturate(1.35);
}

/* --------------------------
   Overlay Content
--------------------------- */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35); /* light dark to show clear photo */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 850px;
  animation: fadeInUp 1.2s ease-out;
}

/* Medium Glow on Title */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 1px 1px 20px rgba(0,0,0,0.8);
}

/* Subtitle */
.hero-subtitle {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Primary Blue Button */
.btn-primary {
  background-color: #007bff;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* WhatsApp Button */
.btn-outline {
  background-color: #25D366; /* official WhatsApp green */
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #1ea851;
}

/* --------------------------
   Swiper Navigation Buttons
--------------------------- */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0,0,0,0.7);
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------
   Mobile Responsive
--------------------------- */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-slider .swiper-slide img {
    transform: scale(1.1); /* still looks great */
  }
}
