/* Hero Carousel CSS */
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  height: 500px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 35, 61, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  opacity: 0;
}

.hero-image:hover .carousel-control {
  opacity: 1;
}

.carousel-control:hover {
  background: #D4AF37;
  color: #10233d;
  border-color: #D4AF37;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active {
  background: #D4AF37;
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-image {
    height: 350px;
  }
}
