
/* ===================================
   GOOGLE REVIEWS SECTION
=================================== */

.google-review-section {
    padding: 80px 0;
}

.review-summary {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.review-score {
    font-size: 60px;
    font-weight: 700;
    color: #071c1f;
    line-height: 1;
    margin-bottom: 10px;
}

.summary-stars {
    color: #fbbc04;
    font-size: 28px;
    margin-bottom: 10px;
}

.review-count {
    color: #666;
    font-size: 16px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    overflow: hidden;
    height: auto;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #0A4D8C;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.review-info h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.review-date {
    font-size: 14px;
    color: #888;
    margin-top: 3px;
}

.google-review-label {
    color: #4285F4;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

.review-stars {
    color: #fbbc04;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@media (max-width: 991px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-summary {
        padding: 30px;
    }

    .review-score {
        font-size: 48px;
    }
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    overflow: hidden;
    height: auto;

    border: 1px solid #f1f1f1;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    transition: all .35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    border-color: #0A4D8C;
}

.review-avatar{
    transition: all .35s ease;
}

.review-card:hover .review-avatar{
    transform: scale(1.08);
}