/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle dot grid on dark bg */
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-title   { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all var(--t-slow);
}
.testimonial-card:hover {
  background: rgba(212,146,10,0.07);
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.quote-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quote-icon svg { width: 20px; height: 20px; color: var(--gold); fill: var(--gold); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star svg {
  width: 15px; height: 15px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.author-role { font-size: 0.77rem; color: rgba(255,255,255,0.38); margin-top: 2px; }

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr; } }
