/* ============================================================
   FALCON SURVEILLANCE - HERO SLIDER STYLES
   Premium background image slider with fade transitions
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: none;
}

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

.hero-slide.prev {
  animation: none;
}


.hero-slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.hero-slider-dot.active {
  background: rgba(255, 255, 255, 1);
  width: 30px;
  border-radius: 5px;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-slider-controls {
    bottom: 20px;
    gap: 8px;
  }
  
  .hero-slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-slider-dot.active {
    width: 24px;
  }
}
