/* ============================================================
   Jetblack Travel — Leave a Review
   ============================================================ */

.lr-wrap { display: flex; align-items: center; min-height: calc(100vh - var(--header-h)); }
.lr-section { width: 100%; padding: 60px 0; }
.lr-container { max-width: 560px; }

.lr-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
}

.lr-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 10px;
}
.lr-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.lr-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin: 0 0 28px;
}

.lr-stars {
  display: flex;
  gap: 8px;
}
.lr-star {
  width: 40px;
  height: 40px;
  color: var(--clr-border-dark);
  transition: color var(--transition), transform var(--transition);
}
.lr-star:hover { transform: scale(1.08); }
.lr-star svg { width: 100%; height: 100%; }
.lr-star.filled { color: #f5b400; }
.lr-star.filled svg { fill: currentColor; }

.pt-msg { font-size: 13px; padding: 12px 16px; border-radius: var(--radius-md); margin-bottom: 18px; }
.pt-msg-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.form-group { margin-bottom: 18px; }
.req { color: #dc2626; }

@media (max-width: 560px) {
  .lr-title { font-size: 24px; }
}
