/* ============================================================
   AQUA CARE RO — REVIEWS PAGE (reviews.css)
   assets/css/reviews.css
   ============================================================ */

/* ── RATING SUMMARY BAR ── */
.rating-summary { padding: 70px 5%; background: var(--navy); }
.rating-summary-inner {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: 56px; align-items: center;
}
.rs-big {
  text-align: center; padding-right: 56px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.rs-big .score { font-family: 'Sora', sans-serif; font-size: 80px; font-weight: 800; color: white; line-height: 1; }
.rs-big .stars { display: flex; gap: 4px; justify-content: center; margin: 8px 0; }
.rs-big .stars span { color: var(--gold); font-size: 22px; }
.rs-big .rs-label { font-size: 14px; color: rgba(255,255,255,0.6); }

.rs-platform {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px; text-align: center;
  transition: background .2s;
}
.rs-platform:hover { background: rgba(0,184,217,0.1); }
.rs-platform-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.rs-platform-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.rs-platform-score { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); }
.rs-platform-count { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }

/* ── FILTER BAR ── */
.review-filter-bar { padding: 28px 5%; background: white; border-bottom: 1px solid var(--border); }
.filter-bar-inner {
  max-width: 1200px; margin: auto;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.filter-bar-inner span { font-size: 14px; font-weight: 600; color: var(--navy); margin-right: 8px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: white;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── REVIEWS GRID ── */
.reviews-page { padding: 60px 5% 90px; background: var(--off); }
.reviews-page-inner { max-width: 1200px; margin: auto; }

.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.rv-card {
  background: white; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  position: relative; transition: transform .2s, box-shadow .2s;
  break-inside: avoid;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,100,200,0.08); }
.rv-card.dark   { background: var(--navy); border-color: transparent; }
.rv-card.dark .rv-text   { color: rgba(255,255,255,0.85); }
.rv-card.dark .rv-name   { color: white; }
.rv-card.dark .rv-meta   { color: rgba(255,255,255,0.5); }

.rv-platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 14px; letter-spacing: .4px; text-transform: uppercase;
}
.badge-google { background: #e8f0fe; color: #1a73e8; }
.badge-jd     { background: #fde8e4; color: #c0392b; }
.badge-pb     { background: #fde8f3; color: #c0156e; }
.badge-wa     { background: #e7f9ed; color: #1a7a3c; }

.rv-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rv-stars span { color: var(--gold); font-size: 16px; }

.rv-text {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.rv-footer-row { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: white;
}
.rv-name  { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.rv-card.dark .rv-name { color: white; }
.rv-meta  { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Business response */
.rv-response {
  margin-top: 16px; padding: 14px 16px;
  background: var(--off); border-radius: 10px;
  border-left: 3px solid var(--cyan);
}
.rv-card.dark .rv-response { background: rgba(255,255,255,0.07); }
.rv-response-label {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px;
}
.rv-response p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.rv-card.dark .rv-response p { color: rgba(255,255,255,0.6); }

/* Featured review large card */
.rv-card.featured-large { grid-column: span 2; }

/* ── CTA BOTTOM ── */
.reviews-cta { padding: 80px 5%; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.reviews-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,184,217,0.1) 0%, transparent 65%);
}
.reviews-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: auto; }
.reviews-cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: white; margin-bottom: 14px; }
.reviews-cta h2 em { font-style: normal; color: var(--cyan); }
.reviews-cta p  { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; }
.reviews-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rating-summary-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rs-big { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; grid-column: span 2; }
  .rv-card.featured-large { grid-column: span 1; }
}
@media (max-width: 600px) {
  .rating-summary-inner { grid-template-columns: 1fr; }
  .rs-big { grid-column: span 1; }
}
