/* =========================================
   REVIEWS PAGE
   Reuses .sd2-header (banner), .sd2-rating, and
   .sd2-cta-final (dark CTA banner) from
   service-detail2.css. This file covers what's
   unique here: the review card grid.
   ========================================= */

.rev-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.rev-section-head .chip {
    margin-bottom: 16px;
}

.rev-section-head h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.rev-section-head p {
    font-size: 1.02rem;
    color: var(--grey);
    line-height: 1.6;
}

.rev-section {
    padding: 90px 0;
    background: #fff;
}

.rev-grid {
    column-count: 3;
    column-gap: 28px;
    margin-bottom: 48px;
}

.rev-card {
    position: relative;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--t);
    break-inside: avoid;
    margin-bottom: 28px;
}

.rev-card:hover {
    background: #fff;
    box-shadow: var(--sh);
    transform: translateY(-4px);
}

.rev-quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4.5rem;
    line-height: 0.7;
    color: var(--blue-lg);
    font-weight: 800;
    font-style: italic;
}

.rev-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rev-text {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.75;
    flex: 1;
    position: relative;
    z-index: 1;
}

.rev-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.rev-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.rev-more-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.rev-more-link:hover svg {
    transform: translateX(4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .rev-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .rev-section {
        padding: 60px 0;
    }

    .rev-grid {
        column-count: 1;
    }

    .rev-card {
        padding: 32px 24px;
    }
}
