/* ==========================================================================
   Hero Section (Figma Exact Specs: 1320px x 390px)
   ========================================================================== */
.hero-section {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
  background: #ffffff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Left Slider (892px x 390px, Radius: 50px) */
.hero-slider-wrapper {
  position: relative;
  width: 892px;
  height: 390px;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Pagination Dots (Centered on Desktop & Mobile) */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.slider-dots .dot.active {
  width: 24px;
  background-color: #ffffff;
}

/* Right Static Banner (387px x 390px, Radius: 50px) */
.hero-right-banner {
  width: 387px;
  height: 390px;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.banner-link {
  display: block;
  width: 100%;
  height: 100%;
}

.right-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hero-right-banner:hover .right-banner-img {
  transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 1280px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-slider-wrapper {
    width: 100%;
    height: 360px;
  }

  .hero-right-banner {
    width: 100%;
    height: 220px;
    border-radius: 35px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .hero-slider-wrapper {
    width: 100%;
    height: 170px;
    border-radius: 20px;
  }

  .slider-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
  }

  .hero-right-banner {
    display: none;
  }
}