/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
  background: #ffffff;
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  margin-top: 0.5rem;
  line-height: 1;
}
.testimonials-heading span { color: var(--brand-red); }

/* ── Speaker Avatars Row ── */
.speakers-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.speaker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.5;
  transform: scale(0.9);
  flex-shrink: 0;
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Active avatar — larger, full colour, red ring */
.speaker-avatar.active {
  opacity: 1;
  transform: scale(1.2);
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px var(--brand-red);
}

.speaker-avatar:hover:not(.active) {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ── Quote Panel ── */
.quote-panel {
  position: relative;
  min-height: 220px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.quote-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.quote-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Big quote mark */
.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--brand-red);
  margin-bottom: 1.2rem;
  display: block;
}

/* Quote text */
.quote-text {
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: #333;
  margin-bottom: 2rem;
}

/* Author */
.quote-author { display: flex; flex-direction: column; gap: 0.3rem; }

.quote-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
}

.quote-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ── Navigation ── */
.quote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.quote-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  color: var(--navy-deep);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quote-nav-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: scale(1.1);
}

/* Dots */
.quote-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quote-dot.active {
  background: var(--brand-red);
  width: 20px;
  border-radius: 3px;
}

/* Mobile */
@media (max-width: 768px) {
  .speaker-avatar { width: 60px; height: 60px; }
  .speaker-avatar.active { transform: scale(1.15); }
  .quote-text { font-size: 1rem; }
}