/* ================= FEEDBACK/TESTIMONIALS SECTION ================= */
.photo-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  margin-top: 80px;
}

.photo-content {
  position: relative;
  height: 100%;
  padding: 80px;
  z-index: 1;
}

/* Blurred background image */
.photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../IMG/feedback.png');
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1);
  z-index: -2;
}

/* Dark overlay for elegance */
.photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

.testimonials-content {
  flex: 0 0 400px;
  position:  static;
  top: 100px;
}

.testimonials-subtitle {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonials-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimonials-description {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
}

.testimonials-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  text-align: center;
}

.testimonial-author {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-date {
  color: #94a3b8;
  font-size: 11px;
  margin-bottom: 10px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 3px;
}

.testimonial-star {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-text {
  color: #e2e8f0;
  line-height: 1.6;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1024px) {
  .testimonials-container {
    flex-direction: column;
    gap: 40px;
  }

  .testimonials-content {
    flex: none;
    position: static;
    text-align: center;
  }

  .testimonials-title {
    font-size: 40px;
  }

  .photo-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .photo-section {
    min-height: auto;
  }

  .photo-content {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .photo-content {
    padding: 40px 15px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-description {
    font-size: 14px;
  }

  .testimonials-content {
    flex: none;
  }
}