/* ============================================================
   LUMIÈRE SALON — TESTIMONIALS PAGE STYLES
   testimonials.css
   ============================================================ */

/* ─── Testimonials Hero ──────────────────────────────────────── */
.testimonials-hero {
  padding: 160px 0 90px;
  background: #080807;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199,167,108,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(199,167,108,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-hero .section-heading {
  font-size: 52px;
  position: relative;
  z-index: 1;
}

.testimonials-hero .section-heading::after {
  margin: 18px auto 0;
}

.testimonials-hero-sub {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 40px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stats-bar-item {
  padding: 8px 24px;
  border-right: 1px solid var(--border-subtle);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

.stats-bar-label {
  font-size: 14px;
  color: var(--cream-dim);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── Testimonials Main Grid ─────────────────────────────────── */
.testimonials-main {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials-main .section-heading {
  color: var(--cream);
}

.testimonials-main .section-subtext {
  color: var(--cream-dim);
}

.testimonials-main .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  padding: 40px 36px 36px;
  box-shadow: none;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--border-dark);
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199,167,108,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.review-quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 90px;
  color: rgba(199,167,108,0.15);
  opacity: 1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.review-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-dark);
  flex-shrink: 0;
}

.review-author-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 3px;
}

.review-author-service {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── Featured Review ────────────────────────────────────────── */
.featured-review-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.featured-review {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: 32px;
  padding: 60px;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.featured-review::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 200px;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.featured-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.featured-text {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.6;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.featured-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border-dark);
}

.featured-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

.featured-label {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

/* ─── Google Reviews Section ─────────────────────────────────── */
.google-section {
  padding: 80px 0;
  background: var(--bg-section);
  text-align: center;
}

.google-content {
  max-width: 600px;
  margin: 0 auto;
}

.google-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.google-rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.google-score {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.google-stars-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.google-stars {
  color: #FBBC04;
  font-size: 24px;
  letter-spacing: 2px;
}

.google-count {
  font-size: 14px;
  color: var(--cream-dim);
}

.google-desc {
  font-size: 16px;
  color: var(--cream-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── Testimonials CTA ───────────────────────────────────────── */
.testimonials-cta {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials-cta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(199,167,108,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-cta-card .section-heading {
  font-size: 42px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonials-cta-card .section-heading::after {
  margin: 16px auto 0;
}

.testimonials-cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonials-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .testimonials-hero .section-heading {
    font-size: 40px;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stats-bar-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px;
  }

  .stats-bar-item:nth-child(2) {
    border-right: none;
  }

  .stats-bar-item:nth-child(3),
  .stats-bar-item:nth-child(4) {
    border-bottom: none;
  }

  .stats-bar-item:nth-child(4) {
    border-right: none;
  }

  .testimonials-main {
    padding: 80px 0;
  }

  .testimonials-full-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-review {
    padding: 40px 28px;
  }

  .featured-text {
    font-size: 20px;
  }

  .testimonials-cta-card {
    padding: 48px 28px;
  }

  .testimonials-cta-card .section-heading {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .testimonials-hero .section-heading {
    font-size: 34px;
  }

  .stats-bar-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-item {
    border-right: none;
  }

  .google-rating-display {
    flex-direction: column;
    gap: 8px;
  }

  .google-score {
    font-size: 48px;
  }

  .testimonials-cta-btns {
    flex-direction: column;
  }
}
