.apple-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 80vh;
  min-height: 600px;
}

.apple-slider {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.apple-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.apple-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
  transform: translateX(100px) scale(0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.apple-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 10;
}

.apple-slide.prev {
  opacity: 0.3;
  visibility: visible;
  transform: translateX(-100px) scale(0.95);
  z-index: 5;
}

.apple-slide.next {
  opacity: 0.3;
  visibility: visible;
  transform: translateX(100px) scale(0.95);
  z-index: 5;
}

.apple-slide img {
  width: auto;
  height: 80%;
  max-width: 90%;
  object-fit: contain;
  border-radius: 0;
}

/* Navigation Controls */
.apple-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.apple-slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.apple-slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

/* Dots Indicator */
.apple-slider-dots {
  display: flex;
  gap: 12px;
  margin: 0 15px;
}

.apple-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.apple-slider-dot:after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
}

.apple-slider-dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* Progress Bar */
.apple-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 20;
}

.apple-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 1);
  transition: width 0.1s linear;
}

/* Title Overlay */
.apple-slide-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 15;
}

.apple-slide.active .apple-slide-title {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .apple-slider-container {
    height: 60vh;
    min-height: 400px;
  }
  
  .apple-slide img {
    height: 70%;
  }
  
  .apple-slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .apple-slider-nav {
    bottom: 20px;
  }
  
  .apple-slide-title {
    top: 20px;
    font-size: 18px;
  }
}