/* ==============================
   GOOGLE REVIEWS – HOME SECTION
   ============================== */

.google-reviews-section {
    padding: 80px 0;
    background: #f6fbfe;
}

/* Heading */
.reviews-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #15688d;
    margin-bottom: 50px;
}

/* Grid layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Review Card */
.review-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

/* Avatar */
.review-header .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #15688d, #1f8fb3);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Name */
.review-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

/* Stars */
.stars {
    margin-top: 4px;
    font-size: 16px;
}

.stars span {
    color: #f4b400;
    margin-right: 2px;
}

.stars .star-muted {
    color: #dcdcdc;
}

/* Review text */
.review-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin-top: 10px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .reviews-heading {
        font-size: 32px;
    }

    .review-card {
        padding: 22px;
    }
}
