/* ============================================================
   SKYLINE STUDIO — TESTIMONIALS PAGE CSS
   ============================================================ */
.testimonials-page-section { background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
}
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(43, 107, 255, 0.2);
  border-color: var(--cobalt);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--cobalt-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.author-role {
  font-size: 13px;
  color: var(--silver-dim);
}
.cta-final {
  background: linear-gradient(135deg, rgba(43, 107, 255, 0.1), rgba(167, 139, 250, 0.05));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-final .section-title { animation: fadeUp 0.6s ease-out 0.1s forwards; opacity: 0; }
.cta-final .section-sub { animation: fadeUp 0.6s ease-out 0.2s forwards; opacity: 0; margin: 16px auto 0; }
.cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; animation: fadeUp 0.6s ease-out 0.3s forwards; opacity: 0;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ── DETAILED INTRO & WHY ── */
.test-intro-content, .test-why-content { max-width: 860px; }
.test-intro-content p, .test-why-content p {
  font-size: 16px; color: var(--silver); line-height: 1.85; margin-bottom: 22px;
}
.test-intro-content p:last-child, .test-why-content p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .test-intro-content p, .test-why-content p { font-size: 15px; line-height: 1.75; }
}
