/* ════════════════════════════════════════════════════════════════
   reviews.css  —  Client Review page styles
   Centered title · logo-left / text-right reviews · feedback form
   ════════════════════════════════════════════════════════════════ */

/* ── PAGE WRAPPER ───────────────────────────────────────────────── */
.section-page { background: var(--bg); padding: 60px 0 120px; }

/* ── CENTERED PAGE TITLE (transparent navbar needs top clearance) ─ */
.reviews-page  { padding-top: 150px; }
.reviews-title {
  text-align: center;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 70px;
}

/* ── REVIEWS LIST — logo on the left, text on the right ─────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.review-item { display: flex; gap: 30px; align-items: flex-start; }

.review-logo {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-logo img { width: 100%; height: 100%; object-fit: contain; }

.review-body { flex: 1; }
.review-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.25;
}
.review-body p {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .66);
}
.review-date {
  display: block;
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--accent);
}

/* ── SHARE-YOUR-EXPERIENCE — TITLE BLOCK + FORM ────────────────── */
.section-title-wrap { margin-top: 120px; }
.contact-form-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  padding: 36px 32px;
}
.contact-form-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .reviews-page  { padding-top: 120px; }
  .reviews-title { font-size: 2.2rem; margin-bottom: 40px; }
  .reviews-grid  { grid-template-columns: 1fr; gap: 40px; }
  .review-logo   { flex: 0 0 96px; width: 96px; height: 96px; }
  .contact-form-box { padding: 24px 18px; }
}
