/* ═══════════════════════════════════════════════════════════════════
   HR TRAILER — REVIEWS PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────── */
.hr-reviews-page {
    font-family: Arial, Helvetica, sans-serif;
}

.hr-reviews-hero {
    background: linear-gradient(135deg, #0d1c30 0%, #132440 60%, #1a3060 100%);
    padding: 80px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hr-reviews-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #BF092F;
}

.hr-reviews-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.hr-reviews-badge {
    display: inline-block;
    background: rgba(191,9,47,0.18);
    border: 1px solid rgba(191,9,47,0.35);
    color: #ff8fa3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hr-reviews-heading {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
}

.hr-reviews-heading span {
    color: #BF092F;
}

.hr-reviews-subheading {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* ── Trust Bar ────────────────────────────────────────────────────── */
.hr-trust-bar {
    background: #fff;
    border-bottom: 1px solid #eaeef3;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hr-trust-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hr-trust-label {
    font-size: 14px;
    color: #666;
}

.hr-trust-stars {
    color: #f5a623;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1;
}

.hr-trust-score {
    font-size: 18px;
    font-weight: 800;
    color: #132440;
}

.hr-trust-dash {
    color: #ccc;
}

.hr-trust-excellent {
    font-size: 15px;
    font-weight: 700;
    color: #2e8b57;
}

.hr-trust-count {
    font-size: 13px;
    color: #888;
}

/* ── Reviews Grid ─────────────────────────────────────────────────── */
.hr-reviews-grid-wrap {
    background: #f5f7fa;
    padding: 60px 24px;
}

.hr-reviews-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Review Card ──────────────────────────────────────────────────── */
.hr-review-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e4eaf3;
    border-top: 3px solid #BF092F;
    padding: 28px 26px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hr-review-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.hr-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.hr-stars {
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
}

.hr-verified-badge {
    width: 26px;
    height: 26px;
    background: #e8f5ee;
    color: #2e8b57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.hr-review-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    flex: 1;
    margin: 0 0 24px;
}

.hr-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #f0f2f5;
}

.hr-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #132440;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.hr-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #132440;
    line-height: 1.3;
}

.hr-author-info span {
    font-size: 12px;
    color: #888;
    font-style: normal;
}

/* ── CTA ──────────────────────────────────────────────────────────── */
.hr-reviews-cta {
    background: linear-gradient(135deg, #132440, #0d1c30);
    text-align: center;
    padding: 70px 24px;
}

.hr-reviews-cta h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
}

.hr-reviews-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 30px;
}

.hr-reviews-cta-btn {
    display: inline-block;
    background: #BF092F;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-reviews-cta-btn:hover {
    background: #9e0826;
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hr-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .hr-reviews-grid {
        grid-template-columns: 1fr;
    }
    .hr-reviews-hero {
        padding: 56px 20px 50px;
    }
    .hr-trust-bar-inner {
        gap: 8px;
    }
}

/* ── Enqueue reviews.css only on reviews page ─────────────────────── */
/* (handled via PHP in functions.php)                                  */
