/* ============================================================
   reviews.css — Section 5 reviews + map carousel
   ============================================================ */

.reviews-sub { margin-bottom: 56px; }
.reviews-sub:last-child { margin-bottom: 0; }
.reviews-sub h3 { text-align: center; font-size: 28px; margin-bottom: 8px; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 26px;
  background: rgba(245,166,35,.12); color: #8a6a17; font-weight: 700;
  padding: 8px 18px; border-radius: 50px; font-size: 15px;
}
.rating-badge-wrap { text-align: center; }

.stars { color: var(--gold-bright); letter-spacing: 1px; font-size: 16px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 26px 24px 54px; display: flex; flex-direction: column; gap: 10px;
}
.review-card .who { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-card .name { font-weight: 700; color: var(--navy); }
.review-card .meta-line { font-size: 13px; color: var(--faint); }
.review-card .quote { font-size: 15px; color: var(--body); line-height: 1.6; }
.review-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.review-card .tags span { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; background: var(--light-gray); color: var(--muted); padding: 4px 8px; border-radius: 4px; text-transform: uppercase; }
.source-badge {
  position: absolute; right: 18px; bottom: 16px; font-size: 12px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px; color: var(--faint);
}
.source-badge .g { color: #4285F4; }
.source-badge .z { color: #006AFF; }
.source-badge .y { color: #FF1A1A; }
.zillow-verified { font-size: 11px; color: #006AFF; font-weight: 700; }

.see-all { text-align: center; margin-top: 28px; }
.see-all a { color: var(--gold); font-weight: 700; }
.see-all a:hover { text-decoration: underline; }

/* Yelp full-width card */
.yelp-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 48px 40px; text-align: center; max-width: 860px; margin: 0 auto; }
.yelp-card .quote { font-size: 20px; font-family: var(--serif); line-height: 1.5; color: var(--white); }
.yelp-card .attrib { color: var(--gold); margin-top: 18px; font-weight: 600; }
.yelp-card .stars { font-size: 20px; }

.ftc-disclaimer { text-align: center; font-size: 12.5px; color: var(--faint); max-width: 720px; margin: 40px auto 0; font-style: italic; }

/* ============================================================
   MAP + client stories (Section 6)
   ============================================================ */
#clients-map { width: 100%; height: 460px; border-radius: var(--radius); box-shadow: var(--shadow-card); background: #16223c; }
.map-fallback {
  width: 100%; height: 460px; border-radius: var(--radius); background: #16223c;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
  text-align: center; padding: 30px; flex-direction: column; gap: 12px;
}
.map-note { text-align: center; font-size: 13px; color: var(--faint); margin-top: 12px; }

.story-carousel { margin-top: 40px; }

/* ============================================================
   Horizontal swipe carousels (mobile) + dots
   ============================================================ */
.carousel { display: grid; gap: 24px; }
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(27,42,74,.25); padding: 0; }
.carousel-dots button.active { background: var(--gold); }

.story-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.story-card .ph { aspect-ratio: 4/3; background: linear-gradient(135deg,#2b3c5e,var(--navy)); display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,.25); font-size: 13px; }
.story-card .body { padding: 18px 20px; }
.story-card .city { font-weight: 700; color: var(--navy); }
.story-card .date { font-size: 13px; color: var(--faint); margin-bottom: 8px; }
.story-card .more { color: var(--gold); font-weight: 600; font-size: 14px; }
