/** PREMIUM GOOGLE REVIEWS **/
.google-reviews-premium{
    background:#f7f7f7;
    padding:80px 0;
    overflow:hidden;
    position:relative;
}

.google-reviews-premium__header{
    text-align:center;
    margin-bottom:50px;
}

.google-reviews-premium__eyebrow{
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d4a900;
    margin-bottom:12px;
}

.google-reviews-premium__title{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.google-reviews-premium__slider{
    position:relative;
    padding:20px 70px 60px;
}

.google-reviews-premium__swiper{
    overflow:visible;
}

.google-reviews-premium__swiper .swiper-slide{
    transition:all .4s ease;
    opacity:.55;
    transform:scale(.85);
}

.google-reviews-premium__swiper .swiper-slide-active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}

.google-reviews-premium__swiper .swiper-slide-prev,
.google-reviews-premium__swiper .swiper-slide-next{
    opacity:.85;
    transform:scale(.92);
}

/* CARD */
.google-review-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    min-height:320px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.06),
        0 2px 8px rgba(0,0,0,.04);
    transition:all .35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.google-review-card:hover{
    transform:translateY(-5px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}

/* TOP */
.google-review-card__top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
}

.google-review-card__profile{
    display:flex;
    align-items:center;
    gap:14px;
}

.google-review-card__avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.google-review-card__name{
    font-size:18px;
    font-weight:700;
    margin:0;
    color:#111;
}

.google-review-card__time{
    font-size:13px;
    color:#888;
}

.google-review-card__google svg{
    width:28px;
    height:28px;
}

/* RATING */
.google-review-card__rating-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

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

.google-review-card__star{
    color:#ddd;
    font-size:18px;
}

.google-review-card__star.is-active{
    color:#fbbc04;
}

.google-review-card__verified{
    color:#4285f4;
    font-size:17px;
}

/* TEXT */
.google-review-card__text{
    font-size:15px;
    line-height:1.8;
    color:#555;
    margin:0;
}

/* ARROWS */
.google-reviews-premium__arrow{
    position:absolute;
    top:50%;
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    z-index:10;
    transition:.3s;
}

.google-reviews-premium__arrow:hover{
    background:#fed201;
    transform:scale(1.08);
}

.google-reviews-premium__arrow--prev{
    left:0;
}

.google-reviews-premium__arrow--next{
    right:0;
}

/* PAGINATION */
.google-reviews-premium__pagination{
    margin-top:40px;
    text-align:center;
}

.google-reviews-premium__pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#ccc;
    opacity:1;
    transition:.3s;
}

.google-reviews-premium__pagination .swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:#fed201;
}

/* MOBILE */
@media(max-width:991px){

    .google-reviews-premium__title{
        font-size:34px;
    }

    .google-reviews-premium__slider{
        padding:0 40px 50px;
    }
}

@media(max-width:767px){

    .google-reviews-premium{
        padding:60px 0;
    }

    .google-reviews-premium__title{
        font-size:28px;
    }

    .google-reviews-premium__slider{
        padding:0 20px 50px;
    }

    .google-review-card{
        min-height:auto;
        padding:22px;
    }

    .google-reviews-premium__arrow{
        width:42px;
        height:42px;
    }
}