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

.reviews-section {
    padding: var(--section-padding);
    background-color: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(96, 172, 56, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* ----- Trust Pills ----- */
.reviews-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(96, 172, 56, 0.07);
    border: 1px solid rgba(96, 172, 56, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.trust-pill svg {
    color: var(--medbe-green);
    flex-shrink: 0;
}

/* ----- Google Rating Summary ----- */
.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.google-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.google-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.15);
}

.star.filled {
    color: #FBBC05;
}

.star.half {
    background: linear-gradient(90deg, #FBBC05 50%, rgba(255, 255, 255, 0.15) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
}

.google-outof {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.google-based {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ----- Elfsight Widget Wrapper ----- */
.elfsight-widget-wrap {
    margin-top: 40px;
    width: 100%;
}

.elfsight-widget-wrap>div {
    width: 100%;
    max-width: 100%;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .google-rating-summary {
        padding: 20px 24px;
    }

    .google-number {
        font-size: 1.8rem;
    }

    .reviews-trust-bar {
        gap: 10px;
    }

    .trust-pill {
        font-size: 0.76rem;
        padding: 6px 12px;
    }

    .elfsight-widget-wrap {
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-trust-bar {
        flex-direction: column;
        align-items: center;
    }
}