/* ===== VP HERO BACKGROUND SLIDER ===== */
#home.vp-hero,
#home.vp-hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B1f36;
}

#home.vp-hero > .e-con,
#home.vp-hero > .elementor-element {
  position: relative;
  z-index: 3;
}

#home.vp-hero .vp-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
}

.vp-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.vp-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  pointer-events: none;
}

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

.vp-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s ease, opacity 1s ease;
  opacity: 0.55;
  filter: saturate(0.92) contrast(1.05);
}

.vp-hero-slide.is-active .vp-hero-slide-bg {
  transform: scale(1.12);
}

.vp-hero-slide:nth-child(1) .vp-hero-slide-bg { background-position: center 32%; }
.vp-hero-slide:nth-child(2) .vp-hero-slide-bg { background-position: center 40%; }
.vp-hero-slide:nth-child(3) .vp-hero-slide-bg { background-position: center 28%; }

.vp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 82% 28%, rgba(184, 149, 110, 0.09) 0%, transparent 58%),
    linear-gradient(
      105deg,
      rgba(6, 18, 32, 0.94) 0%,
      rgba(11, 31, 54, 0.82) 38%,
      rgba(11, 31, 54, 0.55) 58%,
      rgba(8, 24, 44, 0.68) 100%
    );
}

.vp-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, transparent 0%, rgba(4, 14, 28, 0.4) 72%),
    linear-gradient(to top, rgba(4, 14, 28, 0.82) 0%, transparent 32%),
    linear-gradient(to bottom, rgba(4, 14, 28, 0.35) 0%, transparent 22%);
}

.vp-hero-controls {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vp-hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 31, 54, 0.45);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.22s;
  backdrop-filter: blur(8px);
  padding: 0;
}

.vp-hero-nav:hover {
  background: rgba(184, 149, 110, 0.85);
  border-color: #b8956e;
  color: #fff;
  transform: scale(1.05);
}

.vp-hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.vp-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.vp-hero-dot.is-active {
  background: #b8956e;
  width: 28px;
  border-radius: 4px;
}

.vp-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  z-index: 5;
  background: #b8956e;
  width: 0;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  #home.vp-hero,
  #home.vp-hero-slider {
    min-height: 85vh;
  }

  .vp-hero-nav {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}
