.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2196f3, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.testimonials-section .section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 2.5rem;
  font-size: 6rem;
  font-family: 'Georgia', serif;
  color: #2196f3;
  opacity: 0.3;
  font-weight: bold;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(33, 150, 243, 0.3);
  border-color: #2196f3;
}

.testimonial-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(33, 150, 243, 0.5);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e7ff;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-left: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.customer-title {
  color: #a0a0ff;
  font-size: 0.95rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .testimonial-card::before {
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}