.google-review-heading{

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:30px;

    margin-bottom:40px;
}

.google-review-heading h2{

    font-family:'Cormorant Garamond', serif;

    font-size:clamp(36px,5vw,58px);

    line-height:1.05;

    font-weight:600;

    color:var(--white);

    margin-top:10px;
}

.google-review-heading h2 span{
    color:var(--teal-2);
}

.google-review-heading p{

    margin-top:14px;

    max-width:620px;

    color:var(--muted);

    line-height:1.9;

    font-size:.95rem;
}

/* =========================================================
   SCORE BOX
========================================================= */

.google-review-score{

    flex-shrink:0;

    display:flex;
    align-items:center;

    gap:20px;

    padding:20px 26px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.96),
            rgba(0,0,0,.96)
        );

    border:1px solid rgba(212,172,90,.14);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);
}

.score-number{

    font-size:4rem;

    line-height:1;

    font-weight:700;

    color:var(--white);
}

.score-stars{

    display:flex;
    gap:4px;

    color:var(--teal-2);

    font-size:.9rem;

    margin-bottom:6px;
}

.score-text{

    color:var(--muted);

    font-size:.85rem;
}

.google-review-section{
    padding:80px 0 0px;
    background:#000;
    position:relative;
    overflow:hidden;
}

.google-review-section::before{
    content:'';

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(212,172,90,.05),
            transparent 35%
        );

    pointer-events:none;
}

/* =========================================================
   SUMMARY
========================================================= */

.google-summary-box{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;

    margin-top:50px;
    padding:40px;

    background:linear-gradient(
        135deg,
        rgba(17,24,29,.96),
        rgba(0,0,0,.96)
    );

    border:1px solid rgba(212,172,90,.15);

    border-radius:28px;
}

.google-rating-value{
    font-size:5rem;
    font-weight:700;
    line-height:1;

    color:var(--white);
}

.google-stars{
    margin-top:15px;

    display:flex;
    gap:6px;
}

.google-stars i{
    color:var(--teal-2);
}

.google-total-review{
    margin-top:14px;

    color:var(--muted);
}

.google-progress-item{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:14px;
}

.google-progress-item span,
.google-progress-item small{
    color:var(--text-light);
}

.google-progress-bar{
    flex:1;

    height:10px;

    background:#1d1d1d;

    border-radius:999px;

    overflow:hidden;
}

.google-progress-fill{
    height:100%;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        var(--teal-2),
        #ffd97a
    );
}

/* =========================================================
   FILTER
========================================================= */

.google-review-filter{
    margin-top:34px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.google-review-filter a{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 18px;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.96),
            rgba(0,0,0,.96)
        );

    border:1px solid rgba(212,172,90,.14);

    color:var(--white);

    text-decoration:none;

    font-size:.85rem;
    font-weight:500;

    transition:var(--transition);
}

.google-review-filter a:hover{

    transform:translateY(-2px);

    border-color:rgba(212,172,90,.4);
}

.google-review-filter a.active{

    background:
        linear-gradient(
            135deg,
            var(--teal-2),
            #f1d08a
        );

    color:#000;

    border-color:transparent;
}

/* =========================================================
   GRID
========================================================= */

.google-review-grid{
    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

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

.google-review-card{

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.98),
            rgba(10,10,10,.98)
        );

    border:1px solid rgba(212,172,90,.12);

    border-radius:22px;

    padding:18px;

    transition:var(--transition);

    opacity:1;
    transform:translateY(0);

    overflow:hidden;
}

.google-review-card.hide{

    opacity:0;

    transform:translateY(10px);

    pointer-events:none;
}

.google-review-card:hover{

    transform:translateY(-5px);

    border-color:rgba(212,172,90,.35);

    box-shadow:
        0 18px 40px rgba(0,0,0,.35);
}

/* =========================================================
   TOP
========================================================= */

.google-review-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;

    gap:10px;

    margin-bottom:14px;
}

.google-review-user{
    display:flex;
    align-items:flex-start;

    gap:10px;

    flex:1;

    min-width:0;
}

.google-review-user img,
.google-review-avatar{

    width:42px;
    height:42px;

    min-width:42px;

    border-radius:50%;
}

.google-review-user img{
    object-fit:cover;
}

.google-review-avatar{

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            var(--teal-2),
            #f4d18a
        );

    color:#000;

    font-weight:700;

    font-size:.82rem;
}

.google-review-user div{
    min-width:0;
}

.google-review-user h4{

    font-size:.82rem;

    line-height:1.4;

    margin-bottom:2px;

    color:var(--white);

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.google-review-user span{

    color:var(--muted);

    font-size:.68rem;
}

.google-review-icon{

    width:34px;
    height:34px;

    min-width:34px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    color:#4285F4;

    font-size:.9rem;
}

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

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

    margin-bottom:10px;
}

.google-review-stars i{
    color:var(--teal-2);

    font-size:.72rem;
}

/* =========================================================
   TEXT
========================================================= */

.google-review-text{

    color:var(--text-light);

    font-size:.78rem;

    line-height:1.8;

    display:-webkit-box;

    -webkit-line-clamp:4;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:88px;
}

/* =========================================================
   READ MORE
========================================================= */

.google-review-more{

    margin-top:12px;

    background:none;
    border:none;

    color:var(--teal-2);

    font-size:.76rem;
    font-weight:600;

    cursor:pointer;

    width:max-content;
}

.google-review-more:hover{
    opacity:.8;
}

/* =========================================================
   IMAGES
========================================================= */

.google-review-images{

    display:flex;

    gap:8px;

    overflow:auto;

    margin-top:16px;

    padding-bottom:4px;
}

.google-review-images::-webkit-scrollbar{
    height:4px;
}

.google-review-images::-webkit-scrollbar-thumb{
    background:rgba(212,172,90,.3);

    border-radius:999px;
}

.google-review-images img{

    width:62px;
    height:62px;

    object-fit:cover;

    border-radius:10px;

    flex-shrink:0;

    transition:.3s ease;
}

.google-review-images img:hover{
    transform:scale(1.05);
}

/* =========================================================
   PAGINATION
========================================================= */

.google-review-pagination{

    margin-top:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    position:relative;

    z-index:5;
}

.google-page-btn{

    width:44px;
    height:44px;

    border-radius:14px;

    border:1px solid rgba(212,172,90,.14);

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.96),
            rgba(0,0,0,.96)
        );

    color:var(--white);

    cursor:pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;

    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.88rem;

    outline:none;

    -webkit-tap-highlight-color:transparent;

    flex-shrink:0;
}

/* HOVER */
.google-page-btn:hover{

    border-color:rgba(212,172,90,.4);

    box-shadow:
        0 8px 20px rgba(0,0,0,.25);
}

/* ACTIVE */
.google-page-btn.active{

    background:
        linear-gradient(
            135deg,
            var(--teal-2),
            #f1d08a
        );

    color:#000;

    border-color:transparent;

    box-shadow:
        0 10px 30px rgba(212,172,90,.18);
}

/* DISABLED */
.google-page-btn:disabled{

    opacity:.4;

    cursor:not-allowed;

    box-shadow:none;
}

/* FOCUS */
.google-page-btn:focus{
    outline:none;
}

.google-filter-dropdown{
    position:relative;
}

.google-filter-dropdown-btn{

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.96),
            rgba(0,0,0,.96)
        );

    border:1px solid rgba(212,172,90,.14);

    color:var(--white);

    font-size:.85rem;
    font-weight:500;
}

.google-filter-dropdown-menu{

    position:absolute;

    top:calc(100% + 10px);
    left:0;

    min-width:220px;

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.98),
            rgba(0,0,0,.98)
        );

    border:1px solid rgba(212,172,90,.14);

    border-radius:18px;

    padding:10px;

    display:flex;
    flex-direction:column;
    gap:8px;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:20;
}

.google-filter-dropdown.active
.google-filter-dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.google-filter-dropdown-menu a{

    padding:12px 14px;

    border-radius:12px;

    color:var(--white);

    text-decoration:none;

    transition:.25s ease;
}

.google-filter-dropdown-menu a:hover{

    background:rgba(255,255,255,.05);
}

/* =========================================================
   MODAL
========================================================= */

.google-review-modal{

    position:fixed;

    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.google-review-modal.active{
    opacity:1;
    visibility:visible;
}

.google-review-modal-backdrop{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(10px);
}

.google-review-modal-content{

    position:relative;

    width:min(720px,92vw);

    max-height:90vh;

    overflow:auto;

    background:
        linear-gradient(
            135deg,
            rgba(17,24,29,.98),
            rgba(0,0,0,.98)
        );

    border:1px solid rgba(212,172,90,.2);

    border-radius:28px;

    padding:40px;

    z-index:2;

    transform:translateY(30px);

    transition:.35s ease;
}

.google-review-modal.active
.google-review-modal-content{

    transform:translateY(0);
}

.google-review-modal-close{

    position:absolute;

    top:20px;
    right:20px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    color:#fff;

    cursor:pointer;
}

.google-review-modal-user{

    display:flex;
    align-items:center;
    gap:16px;

    margin-bottom:24px;
}

.google-review-modal-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--teal-2),
            #f1d08a
        );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#000;

    font-weight:700;

    font-size:1.2rem;
}

.google-review-modal-text{

    color:var(--text-light);

    line-height:2;

    font-size:1rem;
}

.google-page-btn:disabled{

    opacity:.4;

    cursor:not-allowed;

    transform:none !important;
}

.google-image-modal{

    position:fixed;

    inset:0;

    z-index:9999999;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.google-image-modal.active{

    opacity:1;
    visibility:visible;
}

.google-image-backdrop{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(10px);
}

/* =========================================================
   IMAGE
========================================================= */

#googleImagePreview{

    position:relative;

    z-index:2;

    max-width:88vw;
    max-height:86vh;

    object-fit:contain;

    border-radius:20px;

    box-shadow:
        0 20px 80px rgba(0,0,0,.45);

    animation:imageZoom .35s ease;
}

/* =========================================================
   CLOSE
========================================================= */

.google-image-close{

    position:absolute;

    top:24px;
    right:24px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    cursor:pointer;

    z-index:5;

    font-size:1rem;

    transition:.3s ease;
}

.google-image-close:hover{

    background:rgba(255,255,255,.14);
}

/* =========================================================
   NAVIGATION
========================================================= */

.google-image-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;
    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    cursor:pointer;

    z-index:5;

    font-size:1rem;

    transition:.3s ease;
}

.google-image-nav:hover{

    background:rgba(255,255,255,.14);
}

.google-image-nav.prev{
    left:24px;
}

.google-image-nav.next{
    right:24px;
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes imageZoom{

    from{
        opacity:0;
        transform:scale(.92);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

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

@media(max-width:1200px){

    .google-review-heading{
        gap:24px;
        align-items:flex-start;
    }

    .google-review-heading h2{
        font-size:clamp(34px,4vw,50px);
    }

    .google-review-heading p{
        max-width:100%;
    }

    .google-review-score{
        padding:18px 22px;
    }

    .score-number{
        font-size:3.5rem;
    }

    .google-summary-box{
        gap:30px;
    }

    .google-review-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1024px){

    .google-review-section{
        padding:100px 0;
    }

    .google-review-heading{

        flex-direction:column;

        align-items:flex-start;

        gap:22px;

        margin-bottom:34px;
    }

    .google-review-heading h2{
        font-size:clamp(32px,5vw,46px);
    }

    .google-review-heading p{

        font-size:.9rem;

        line-height:1.8;
    }

    .google-review-score{

        width:100%;

        justify-content:space-between;

        padding:18px 22px;

        border-radius:20px;
    }

    .score-number{
        font-size:3.2rem;
    }

    .score-stars{
        font-size:.82rem;
    }

    .score-text{
        font-size:.78rem;
    }

    .google-summary-box{

        grid-template-columns:1fr;

        padding:34px;

        border-radius:24px;
    }

    .google-rating-value{
        font-size:4.5rem;
    }

    .google-review-grid{

        grid-template-columns:repeat(3,1fr);

        gap:16px;
    }

    .google-review-card{
        padding:16px;
    }

    .google-review-filter{
        gap:10px;
    }

    .google-review-filter a,
    .google-filter-dropdown-btn{

        font-size:.82rem;

        padding:11px 16px;
    }

    .google-filter-dropdown-menu{
        min-width:200px;
    }

    .google-review-modal-content{
        padding:34px 28px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .google-review-section{
        padding:30px 0;
    }

    .google-review-heading{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

        margin-bottom:28px;
    }

    .google-review-heading h2{

        font-size:clamp(28px,7vw,40px);

        line-height:1.1;
    }

    .google-review-heading p{

        font-size:.88rem;

        line-height:1.75;
    }

    .google-review-score{

        width:100%;

        justify-content:flex-start;

        gap:16px;

        padding:16px 18px;

        border-radius:18px;
    }

    .score-number{
        font-size:3rem;
    }

    .score-stars{
        font-size:.8rem;
    }

    .score-text{
        font-size:.76rem;
    }

    .google-summary-box{

        padding:28px 22px;

        border-radius:22px;
    }

    .google-rating-value{
        font-size:4rem;
    }

    .google-review-filter{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .google-review-filter a,
    .google-filter-dropdown-btn{

        width:100%;

        min-height:46px;

        padding:12px 14px;

        font-size:.8rem;

        border-radius:12px;

        justify-content:center;

        text-align:center;
    }

    .google-filter-dropdown{
        width:100%;
    }

    .google-filter-dropdown-menu{

        width:100%;

        min-width:100%;
    }

    .google-review-grid{

        grid-template-columns:repeat(2,1fr);

        gap:14px;
    }

    .google-review-card{

        padding:16px;

        border-radius:18px;
    }

    .google-review-top{
        margin-bottom:12px;
    }

    .google-review-user{
        gap:10px;
    }

    .google-review-user img,
    .google-review-avatar{

        width:40px;
        height:40px;

        min-width:40px;
    }

    .google-review-user h4{
        font-size:.78rem;
    }

    .google-review-user span{
        font-size:.65rem;
    }

    .google-review-icon{

        width:32px;
        height:32px;

        min-width:32px;

        font-size:.82rem;
    }

    .google-review-stars{
        margin-bottom:8px;
    }

    .google-review-stars i{
        font-size:.68rem;
    }

    .google-review-text{

        font-size:.74rem;

        min-height:78px;
    }

    .google-review-more{
        font-size:.72rem;
    }

    .google-review-images{
        margin-top:14px;
    }

    .google-review-images img{

        width:56px;
        height:56px;
    }

    .google-page-btn{

        width:40px;
        height:40px;

        border-radius:12px;

        font-size:.82rem;
    }

    .google-review-modal-content{
        padding:30px 24px;
    }

    .google-review-modal-user{
        gap:14px;
    }

    .google-review-modal-avatar{

        width:54px;
        height:54px;

        font-size:1rem;
    }

    .google-review-modal-text{

        font-size:.92rem;

        line-height:1.9;
    }

    .google-image-nav{

        width:48px;
        height:48px;
    }

    .google-image-close{

        width:44px;
        height:44px;
    }

    .google-image-nav.prev{
        left:12px;
    }

    .google-image-nav.next{
        right:12px;
    }

    .google-image-close{

        top:14px;
        right:14px;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .google-review-section{
        padding:30px 0;
    }

    .google-review-heading{
        gap:16px;
    }

    .google-review-heading h2{

        font-size:clamp(24px,8vw,34px);
    }

    .google-review-heading p{

        font-size:.82rem;

        line-height:1.7;
    }

    .google-review-score{

        padding:14px 16px;

        border-radius:16px;

        gap:14px;
    }

    .score-number{
        font-size:2.6rem;
    }

    .score-stars{
        font-size:.74rem;
    }

    .score-text{
        font-size:.72rem;
    }

    .google-summary-box{

        padding:22px 18px;

        border-radius:18px;
    }

    .google-rating-value{
        font-size:3.2rem;
    }

    .google-review-filter{

        grid-template-columns:repeat(2,1fr);

        gap:8px;
    }

    .google-review-filter a,
    .google-filter-dropdown-btn{

        min-height:42px;

        padding:10px 12px;

        font-size:.75rem;

        border-radius:10px;
    }

    .google-filter-dropdown-menu{
        width:100%;
    }

    .google-review-grid{

        grid-template-columns:1fr;

        gap:14px;
    }

    .google-review-card{
        padding:15px;
    }

    .google-review-user img,
    .google-review-avatar{

        width:38px;
        height:38px;

        min-width:38px;
    }

    .google-review-user h4{
        font-size:.76rem;
    }

    .google-review-user span{
        font-size:.62rem;
    }

    .google-review-icon{

        width:30px;
        height:30px;

        min-width:30px;

        border-radius:8px;
    }

    .google-review-text{

        font-size:.72rem;

        line-height:1.75;

        min-height:auto;
    }

    .google-review-images img{

        width:52px;
        height:52px;

        border-radius:8px;
    }

    .google-review-pagination{
        gap:8px;
    }

    .google-page-btn{

        width:38px;
        height:38px;

        border-radius:10px;

        font-size:.76rem;
    }

    .google-review-modal-content{

        padding:24px 18px;

        border-radius:20px;
    }

    .google-review-modal-close{

        width:38px;
        height:38px;

        top:14px;
        right:14px;
    }

    .google-review-modal-avatar{

        width:48px;
        height:48px;

        font-size:.92rem;
    }

    .google-review-modal-text{

        font-size:.84rem;
    }

    .google-image-nav{

        width:42px;
        height:42px;
    }

    .google-image-close{

        width:40px;
        height:40px;
    }

}