/* ============================================
   REVIEWS PAGE — additive styles only.
   Nothing here overrides header, footer, nav,
   buttons, .hero, .page-hero, .features,
   .final-cta, etc. Those keep using your
   existing style.css and its variables, so
   they stay pixel-identical to the rest of
   the site.
   ============================================ */

/* ---------- Share Your Experience (WhatsApp review form) ---------- */
.review-cta-card {
    grid-column: 1 / -1;
    max-width: 640px;
    margin: 1rem auto 0;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.review-cta-text {
    margin-bottom: 1.75rem;
}

.review-cta-text .feature-icon {
    margin-bottom: 0.75rem;
}

.review-cta-text h3 {
    margin-bottom: 0.75rem;
}

.review-cta-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 460px;
    margin: 0 auto;
}

.review-submit-form {
    text-align: left;
    width: 100%;
}

.review-submit-form .form-group {
    margin-bottom: 1rem;
}

.review-submit-form textarea {
    height: 90px;
}

.review-submit-form .btn {
    width: 100%;
}

@media (max-width: 480px) {
    .review-cta-card {
        padding: 2rem 1.5rem;
    }
}

/* ---------- Overall Rating Summary ---------- */
.rating-summary {
    padding: 3rem 0;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rating-summary-score {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-color);
}

.rating-summary-score span {
    font-size: 0.4em;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 0.15em;
}

.rating-stars,
.review-stars {
    color: var(--accent-color);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    margin: 0.5rem 0;
}

.rating-summary-caption {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.rating-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.75rem;
}

.rating-tags span {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    color: var(--text-light);
    white-space: nowrap;
}

/* ---------- Review Grid ---------- */
.review-section {
    background-color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    background: rgba(216, 180, 160, 0.3); /* accent-color tint */
}

.review-card h4 {
    font-size: 1rem;
    margin: 0 0 0.1rem;
}

.review-role {
    font-size: 0.78rem;
    color: var(--text-light);
}

.review-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ---------- Rated for What Matters Most ---------- */
.rating-bars-section {
    background-color: var(--bg-alt);
}

.rating-bars {
    max-width: 640px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    align-items: center;
    gap: 1rem;
}

.rating-bar-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.rating-bar-track {
    height: 8px;
    border-radius: 30px;
    background: rgba(51, 51, 51, 0.08);
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 30px;
    background: var(--accent-color);
    transform-origin: left;
    animation: rating-bar-grow 1.1s ease forwards;
}

@keyframes rating-bar-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.rating-bar-value {
    font-size: 0.85rem;
    text-align: right;
    color: var(--text-light);
}

/* ---------- Featured Review ---------- */
.featured-review-section {
    background-color: #fff;
}

.featured-review-card {
    max-width: 760px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background: var(--bg-alt);
}

.featured-review-card .review-stars {
    font-size: 1.3rem;
}

.featured-review-card p {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0.75rem 0 1.25rem;
}

.featured-review-author {
    font-weight: 500;
    color: var(--text-light);
}

/* ---------- Responsive (matches existing breakpoints) ---------- */
@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    .rating-bar-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        text-align: left;
    }
    .rating-bar-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .rating-tags span {
        font-size: 0.75rem;
    }
    .featured-review-card {
        padding: 2.25rem 1.5rem;
    }
}