.hero-slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.slide-text {
  max-width: 600px;
  padding: 0 50px;
  color: white;
  text-align: left;
}

.slide-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f0f0f0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.3s forwards;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.5s forwards;
}

.slide-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.7s forwards;
}

.slide-btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.9s forwards;
}

.slide-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Navigation */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.slide-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
  left: 30px;
}

.slide-nav.next {
  right: 30px;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
  border-color: white;
}

/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 60vh;
    min-height: 400px;
  }
  
  .slide-text {
    padding: 0 30px;
    text-align: center;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-subtitle {
    font-size: 1rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .slide-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slide-nav.prev {
    left: 20px;
  }
  
  .slide-nav.next {
    right: 20px;
  }
  
  .slide-dots {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-slideshow {
    height: 50vh;
    min-height: 350px;
  }
  
  .slide-text {
    padding: 0 20px;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}