/* =========================================
   Google Reviews — simple single-slide carousel
   ========================================= */

.gr-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

.gr-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .15s;
    user-select: none;
}

.gr-arrow:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #f5820f;
    transform: scale(1.08);
}

.gr-arrow:active {
    transform: scale(.95);
}

.gr-slide-wrap {
    flex: 1;
    min-width: 0;
}

.gr-slide {
    position: relative;
    text-align: center;
    padding: 44px 32px 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: opacity .35s ease;
}

.gr-slide.gr-fade {
    opacity: 0;
}

.gr-slide::before {
    content: "\201C";
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 1;
    height: 40px;
    background: linear-gradient(90deg, #f5820f, #ffc61a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .55;
}

.gr-comment {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #f4f4f5;
    margin: 0;
    max-width: 90%;
}

.gr-name {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #ffc61a;
}

.gr-name::before {
    content: "— ";
}

.gr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.gr-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.gr-dot.active {
    background: linear-gradient(90deg, #f5820f, #ffc61a);
    transform: scale(1.3);
}

@media (max-width: 575px) {
    .gr-carousel {
        gap: 10px;
        padding: 0 6px;
    }

    .gr-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .gr-slide {
        padding: 34px 18px 26px;
    }

    .gr-comment {
        font-size: 15px;
    }
}
