.reviews-section {
    padding: 60px 0;
    background-color: #ffffff;
}
.reviews-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}
.reviews-widget {
    background: #fdfdfd;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.reviews-google-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}
.google-G { color: #4285F4; }
.google-o1 { color: #EA4335; }
.google-o2 { color: #FBBC05; }
.google-g { color: #4285F4; }
.google-l { color: #34A853; }
.google-e { color: #EA4335; }
.google-text { color: #202124; margin-left: 8px; font-weight: 700;}

.reviews-rating {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #202124;
}
.reviews-stars {
    color: #fbbc04;
    margin: 0 10px;
    font-size: 18px;
    letter-spacing: 2px;
}
.reviews-count {
    font-size: 14px;
    color: #70757a;
    font-weight: 400;
}
.reviews-btn {
    background: #1a73e8;
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}
.reviews-btn:hover {
    background: #1557b0;
    color: #fff;
}
.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}
.review-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.review-avatar-wrap {
    position: relative;
    margin-right: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.review-avatar-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.review-avatar-icon img {
    width: 10px;
    height: 10px;
}
.review-author-info {
    display: flex;
    flex-direction: column;
}
.review-author-name {
    font-weight: 600;
    font-size: 15px;
    color: #202124;
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-verified {
    color: #1a73e8;
    font-size: 14px;
}
.review-date {
    font-size: 12px;
    color: #70757a;
}
.review-card-stars {
    color: #fbbc04;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.review-text {
    font-size: 14px;
    color: #4d5156;
    line-height: 1.5;
}
.review-read-more {
    color: #1a73e8;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}
.review-read-more:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .reviews-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .reviews-cards {
        grid-template-columns: 1fr;
    }
}
