/* Reviews Page */
.hero-rating-display {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 12px 24px; display: inline-flex;
}
.big-stars { font-size: 1.4rem; color: var(--gold); }
.hero-rating-display strong { display: block; color: white; font-size: 1.2rem; font-family: 'Yatra One', cursive; }
.hero-rating-display span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.rating-summary-section { padding-bottom: 0; }
.rating-wrap {
  background: white; border-radius: 20px; border: 1px solid rgba(13,92,74,0.08);
  padding: 32px; display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center; box-shadow: var(--shadow-sm);
}
.rating-big { text-align: center; }
.rating-num { font-family: 'Yatra One', cursive; font-size: 4rem; color: var(--teal-deep); line-height: 1; }
.rating-stars-big { font-size: 1.3rem; color: var(--gold); margin: 4px 0; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; }
.rating-bar-row span { font-size: 0.8rem; color: var(--text-muted); width: 28px; flex-shrink: 0; }
.rbar { flex: 1; height: 8px; background: #f0ebe5; border-radius: 6px; overflow: hidden; }
.rbar-fill { height: 100%; border-radius: 6px; transition: width 1s ease; }
.rating-highlights { display: flex; flex-direction: column; gap: 14px; }
.rh-item { text-align: center; }
.rh-item span { display: block; font-family: 'Yatra One', cursive; font-size: 1.5rem; color: var(--teal); }
.rh-item small { font-size: 0.72rem; color: var(--text-muted); }

.reviews-masonry {
  columns: 3; column-gap: 20px;
}
.rv-card {
  break-inside: avoid; background: white; border-radius: 16px;
  border: 1px solid rgba(13,92,74,0.08); padding: 20px;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.rv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(201,168,76,0.25); }
.rv-featured { border-color: rgba(201,168,76,0.25); background: linear-gradient(135deg, #fffef8, white); }
.rv-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.rv-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.rv-top > div:nth-child(2) strong { display: block; font-size: 0.92rem; color: var(--teal-deep); }
.rv-top > div:nth-child(2) span { font-size: 0.72rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.rv-skin-tag { display: inline-block; background: rgba(13,92,74,0.06); color: var(--text-muted); padding: 2px 8px; border-radius: 10px; font-size: 0.68rem; }
.rv-stars { margin-left: auto; color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.rv-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.rv-result-tag { font-size: 0.72rem; color: var(--teal); font-weight: 600; background: rgba(26,122,110,0.08); border: 1px solid rgba(26,122,110,0.2); padding: 4px 10px; border-radius: 20px; display: inline-block; }

.submit-section { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); text-align: center; }
.submit-inner { max-width: 600px; margin: 0 auto; padding: clamp(60px,8vw,100px) clamp(16px,5vw,60px); }

@media (max-width: 900px) {
  .rating-wrap { grid-template-columns: 1fr; text-align: center; }
  .rating-highlights { flex-direction: row; justify-content: center; }
  .reviews-masonry { columns: 2; }
}
@media (max-width: 600px) {
  .reviews-masonry { columns: 1; }
  .rating-highlights { flex-direction: column; align-items: center; }
}
