/* ============================================================
   LuxWave — Testimonials Page
   ============================================================ */

.test-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(5rem, 9vw, 7rem);
}

.test-hero-bg { position: absolute; inset: 0; z-index: 0; }

.t-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}

.t-orb--fire {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FF6B00, #FF3D00);
  top: -150px; left: -120px; opacity: 0.3;
}

.t-orb--gold {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #FFD60A, #FF6B00);
  bottom: -80px; right: 5%; opacity: 0.18;
}

.test-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.test-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.test-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

/* ---- Category sections ---- */
.test-category-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.test-category-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.test-category-header .section-title { margin-bottom: 0; }

/* ---- Reviews grid ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 8px 30px rgba(255, 61, 0, 0.1);
}

.review-card--placeholder {
  opacity: 0.5;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.review-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-soft);
  flex: 1;
  max-width: none;
}

.review-quote--placeholder {
  color: var(--text-muted);
  font-style: normal;
}

.review-footer {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.review-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fire-start);
}

.review-source {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- Leave review CTA ---- */
.test-leave-review { position: relative; overflow: hidden; }

.test-leave-bg { position: absolute; inset: 0; z-index: 0; }

.test-leave-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,10,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* ---- Bottom CTA ---- */
.test-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

.test-contact-row a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.test-contact-row a:hover { color: var(--fire-start); }

.test-contact-row span { color: var(--text-muted); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .test-category-header { flex-direction: column; gap: 0.75rem; }
}
