/* ===== TESTIMONIALS PAGE ===== */
.testimonials {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 60px;
}

.testimonial-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-left: 4px solid var(--gold);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.testimonial-card p {
  font-style: italic;
  color: #ddd;
  margin-bottom: 14px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Animation */
.testimonial-card {
  animation: fadeInUp 0.6s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
