/* Simple Reviews Carousel Styles - Based on Swiffy Slider */

/* Section */
.reviews-carousel-section {
  background: transparent;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Container */
.reviews-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Title */
.reviews-carousel-title {
  font-family: "Akrobat", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgb(88, 88, 88) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 1) 75%,
    rgb(88, 88, 88) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Subtitle */
.reviews-carousel-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  color: #afafaf;
  text-align: center;
  margin-bottom: 70px;
  font-weight: 400;
  line-height: 140%;
}

/* Swiffy Slider Customization */
.swiffy-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Container */
.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: all 0.3s ease;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Swipe instruction */
.swipe-instruction {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: rgba(175, 175, 175, 0.8);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  animation: subtleGlow 3s ease-in-out infinite;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Custom Indicators */
.swiffy-slider .slider-indicators button {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border: none !important;
  border-radius: 50% !important;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiffy-slider .slider-indicators button.active {
  width: 40px !important;
  background: #d6001c !important;
  border-radius: 20px !important;
}

.swiffy-slider .slider-indicators button:hover {
  background: rgba(214, 0, 28, 0.7) !important;
}

/* Video Embed Styles */
.video-embed {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}

/* Video Close Button */
.video-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.video-close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .reviews-carousel-section {
    padding: 40px 0;
  }
  
  .reviews-carousel-container {
    padding: 0 16px;
  }
  
  .reviews-carousel-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .reviews-carousel-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .video-container {
    padding: 0 8px;
  }
  
  .video-embed {
    height: 200px;
    border-radius: 16px;
  }
  
  .play-button {
    width: 60px;
    height: 45px;
    border-radius: 12px;
  }
  
  .play-button svg {
    width: 42px;
    height: 30px;
  }
  
  .swipe-instruction {
    font-size: 13px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .reviews-carousel-section {
    padding: 30px 0;
  }
  
  .reviews-carousel-container {
    padding: 0 12px;
  }
  
  .reviews-carousel-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .reviews-carousel-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .video-container {
    padding: 0 4px;
  }
  
  .video-embed {
    height: 150px;
  }
  
  .play-button {
    width: 50px;
    height: 36px;
    border-radius: 10px;
  }
  
  .play-button svg {
    width: 32px;
    height: 24px;
  }
  
  .swipe-instruction {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* Animation keyframes */
@keyframes subtleGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}