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

.vs-reviews-section{

    position:relative;

    padding:120px 0;

    background:#FFFFFF;

    overflow:hidden;

}

/*=========================================================
                    BACKGROUND
=========================================================*/

.vs-reviews-section::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(66,133,244,.08),
        transparent 70%
    );

}

.vs-reviews-section::after{

    content:"";

    position:absolute;

    left:-200px;

    bottom:-200px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(52,168,83,.08),
        transparent 70%
    );

}

.vs-reviews-section .container{

    position:relative;

    z-index:2;

}

/*=========================================================
                    HEADER
=========================================================*/

.vs-reviews-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.vs-reviews-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    border-radius:50px;

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    font-weight:700;

    color:#4285F4;

    margin-bottom:24px;

}

.vs-reviews-badge i{

    font-size:18px;

}

.vs-reviews-title{

    font-size:3rem;

    font-weight:800;

    color:#0B132B;

    margin-bottom:22px;

    line-height:1.2;

}

.vs-reviews-title span{
    background: linear-gradient(
        90deg,
        #4285F4,
        #34A853
    );

    /* Standard */
    background-clip: text;
    color: transparent;

    /* Chrome, Edge, Safari */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vs-reviews-description{

    font-size:1.08rem;

    color:#64748B;

    line-height:1.9;

}

/*=========================================================
                    GOOGLE CARD
=========================================================*/

.vs-google-rating{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:35px 45px;

    background:#FFFFFF;

    border:1px solid #E2E8F0;

    border-radius:30px;

    box-shadow:
        0 20px 60px rgba(15,23,42,.06);

    margin-bottom:60px;

}

.vs-google-logo{

    width:80px;

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#FFFFFF;

    border:1px solid #E2E8F0;

    font-size:36px;

    color:#4285F4;

    flex-shrink:0;

}

.vs-google-info{

    flex:1;

}

.vs-google-info h3{

    font-size:2rem;

    font-weight:800;

    color:#0B132B;

    margin-bottom:10px;

}

.vs-google-info p{

    color:#64748B;

    margin-top:10px;

}

/*=========================================================
                    STARS
=========================================================*/

.vs-stars{

    display:flex;

    gap:6px;

}

.vs-stars i{

    color:#FBBF24;

    font-size:18px;

}

/*=========================================================
                    BUTTON
=========================================================*/

.vs-google-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:50px;

    background:#4285F4;

    color:#FFFFFF;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.vs-google-btn:hover{

    background:#0B57D0;

    transform:translateY(-5px);

    color:#FFFFFF;

}

.vs-google-btn i{

    transition:.35s;

}

.vs-google-btn:hover i{

    transform:translateX(5px);

}

/*=========================================================
                    GOOGLE WIDGET
=========================================================*/

.vs-google-widget{

    padding:25px;

    background:#FFFFFF;

    border:1px solid #E2E8F0;

    border-radius:30px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.05);

    overflow:hidden;

}

.vs-google-widget iframe{

    width:100% !important;

    border:none;

    border-radius:20px;

}

.vs-google-widget .elfsight-app{

    width:100%;

}

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media (max-width:992px){

    .vs-google-rating{

        flex-direction:column;

        text-align:center;

    }

    .vs-stars{

        justify-content:center;

    }

}

@media (max-width:768px){

    .vs-reviews-section{

        padding:90px 0;

    }

    .vs-reviews-title{

        font-size:2.2rem;

    }

    .vs-google-rating{

        padding:30px;

    }

}

@media (max-width:576px){

    .vs-reviews-title{

        font-size:1.8rem;

    }

    .vs-google-btn{

        width:100%;

        justify-content:center;

    }

}