/* Enhanced Testimonials Styles */
.testimonials {
  padding: 80px 0;
  background: var(--bg-white);
}

.testimonials-slider-container {
  position: relative;
  margin: 60px 0;
  padding: 20px 0;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 32px;
  animation: slideLeft 32s linear infinite;
  will-change: transform;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 8 - 32px * 8));
  }
}

.testimonial-card {
  flex: 0 0 350px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonials-slider.paused {
  animation-play-state: paused;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  justify-content: center;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-text {
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Customer Feedback Section */
.feedback-section {
  background: var(--gradient);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  margin-top: 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.feedback-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.feedback-content {
  position: relative;
  z-index: 2;
}

.feedback-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.feedback-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.google-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #f8f9fa;
}

.google-review-btn i {
  font-size: 20px;
  color: #4285f4;
}

.feedback-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 300px;
    padding: 24px;
  }

  .feedback-section {
    padding: 40px 20px;
    margin-top: 60px;
  }

  .feedback-content h3 {
    font-size: 1.5rem;
  }

  .feedback-stats {
    flex-direction: column;
    gap: 32px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-slider {
    animation-duration: 80s;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 20px;
  }
}
