/* Feedbacks Section */
#feedbacks {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#feedbacks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="feedbackGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23feedbackGrain)"/></svg>');
  pointer-events: none;
}

.feedbacks-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */
.feedbacks-header {
  text-align: center;
  margin-bottom: 50px;
}

.feedbacks-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b354d;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.feedbacks-title .highlight {
  color: #2196F3;
  position: relative;
}

.feedbacks-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2196F3, #FF6B35);
  border-radius: 2px;
}

.feedbacks-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #6c757d;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel */
.feedbacks-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feedbacks-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 0;
}

.feedback-card {
  min-width: 50%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feedback-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(33, 150, 243, 0.3), transparent);
}

.feedback-card.active {
  opacity: 1;
  transform: translateY(0);
}

.feedback-content {
  margin-bottom: 20px;
  max-width: 100%;
}

.feedback-quote {
  margin-bottom: 16px;
}

.feedback-quote i {
  font-size: 2.5rem;
  color: #2196F3;
  opacity: 0.3;
}

.feedback-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c3e50;
  margin: 0 0 16px 0;
  font-style: italic;
}

.feedback-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feedback-rating i {
  font-size: 1.2rem;
  color: #FFD700;
  transition: all 0.3s ease;
}

.feedback-rating i:hover {
  transform: scale(1.1);
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2196F3;
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
}

.author-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.4);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b354d;
  margin: 0 0 4px 0;
}

.author-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6c757d;
  margin: 0;
}

/* Navigation Dots */
.feedbacks-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: #2196F3;
  transform: scale(1.2);
}

.dot:hover {
  background: #2196F3;
  transform: scale(1.1);
}

/* Navigation Arrows */
.feedbacks-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 150, 243, 0.2);
  color: #2196F3;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.feedbacks-nav:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.feedbacks-nav.prev {
  left: 20px;
}

.feedbacks-nav.next {
  right: 20px;
}

/* Auto-play Controls */
.feedbacks-autoplay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.autoplay-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: #2196F3;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoplay-btn:hover {
  background: #2196F3;
  color: white;
  transform: scale(1.1);
}

.feedbacks-autoplay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feedback-card {
    padding: 35px 50px;
  }
  
  .feedback-text {
    font-size: 1.05rem;
  }
  
  .author-avatar {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  #feedbacks {
    padding: 40px 0;
  }
  
  .feedbacks-container {
    padding: 0 16px;
  }
  
  .feedbacks-header {
    margin-bottom: 30px;
  }
  
  .feedbacks-title {
    font-size: 1.8rem;
  }
  
  .feedbacks-subtitle {
    font-size: 0.95rem;
  }
  
  .feedbacks-carousel {
    border-radius: 12px;
  }
  
  .feedback-card {
    min-width: 100%;
    padding: 25px 20px;
  }
  
  .feedback-card:not(:last-child)::after {
    display: none;
  }
  
  .feedback-content {
    margin-bottom: 20px;
  }
  
  .feedback-quote i {
    font-size: 2rem;
  }
  
  .feedback-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .feedback-rating i {
    font-size: 1rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }
  
  .author-info h4 {
    font-size: 1rem;
  }
  
  .author-info p {
    font-size: 0.85rem;
  }
  
  .feedbacks-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .feedbacks-nav.prev {
    left: 8px;
  }
  
  .feedbacks-nav.next {
    right: 8px;
  }
  
  .feedbacks-dots {
    margin: 30px 0;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .feedbacks-autoplay {
    margin-top: 30px;
  }
  
  .autoplay-btn {
    width: 35px;
    height: 35px;
  }
  
  .feedbacks-autoplay span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #feedbacks {
    padding: 30px 0;
  }
  
  .feedbacks-container {
    padding: 0 12px;
  }
  
  .feedbacks-header {
    margin-bottom: 25px;
  }
  
  .feedbacks-title {
    font-size: 1.5rem;
  }
  
  .feedbacks-subtitle {
    font-size: 0.9rem;
  }
  
  .feedback-card {
    padding: 20px 15px;
  }
  
  .feedback-content {
    margin-bottom: 15px;
  }
  
  .feedback-quote i {
    font-size: 1.5rem;
  }
  
  .feedback-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .feedback-rating i {
    font-size: 0.9rem;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
  }
  
  .author-info h4 {
    font-size: 0.95rem;
  }
  
  .author-info p {
    font-size: 0.8rem;
  }
  
  .feedbacks-nav {
    display: none;
  }
  
  .feedbacks-dots {
    margin: 25px 0;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .feedbacks-autoplay {
    margin-top: 25px;
  }
  
  .autoplay-btn {
    width: 30px;
    height: 30px;
  }
  
  .feedbacks-autoplay span {
    font-size: 0.75rem;
  }
}