/* ============================================ */
/* 🌟 GOOGLE REVIEWS - CLEAN RESPONSIVE DESIGN   */
/* ============================================ */

.google-reviews-section {
    background: #ffffff;
    padding: 65px 24px 50px;
    position: relative;
}

.reviews-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Header */
.reviews-main-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.reviews-google-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-brand-icon {
    color: #4285f4;
    font-size: 1.3rem;
}

.google-brand-text {
    font-weight: 500;
    color: #5f6368;
    font-size: 0.95rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-big {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
}

.stars-group {
    display: flex;
    gap: 2px;
}

.stars-group i {
    color: #ffb300;
    font-size: 14px;
}

.review-total {
    color: #5f6368;
    font-size: 0.85rem;
}
/* Desktop - Infinite Auto-Scroll */
.reviews-infinite-slider {
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.reviews-slider-track {
    display: flex;
    gap: 18px;
    animation: infiniteSlide 40s linear infinite;
    width: max-content;
}

.reviews-slider-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card */
.review-item-card {
    flex: 0 0 320px;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 14px;
    padding: 18px 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.review-item-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    border-color: #dadce0;
    transform: translateY(-2px);
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.7rem;
    color: #5f6368;
    display: none;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars i {
    color: #ffb300;
    font-size: 12px;
}

.review-body {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #3c4043;
    margin: 0;
    flex: 1;
}

/* Footer CTA */
.reviews-footer-action {
    text-align: center;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #1a73e8;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-all-reviews-btn:hover {
    background: #1557b0;
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

/* Hide old horizontal scroll */
.reviews-horizontal-scroll {
    display: none;
}

/* ============================================ */
/* MOBILE SLIDER                                 */
/* ============================================ */
.reviews-mobile-section {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .reviews-infinite-slider {
        display: block;
    }
    
    .reviews-slider-track {
        animation: mobileSlide 25s linear infinite;
        gap: 16px;
    }
    
    @keyframes mobileSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }
    
    .review-item-card {
        flex: 0 0 80vw;
    }
    
    .reviews-mobile-section,
    .slider-dots {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 40px 16px 35px;
    }
    

    
    /* Show mobile slider */
    .reviews-mobile-section {
        display: block;
    }
    
    .reviews-main-header {
        margin-bottom: 20px;
    }
    
    .reviews-section-title {
        font-size: 1.4rem;
    }
    
    .reviews-google-branding {
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-slider-container {
        overflow: hidden;
        border-radius: 14px;
    }
    
    .mobile-slider-track {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .mobile-review-card {
        flex: 0 0 100%;
        background: #f8f9fa;
        border: 1px solid #e8eaed;
        border-radius: 14px;
        padding: 18px 16px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
        background: #dadce0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .slider-dot.active {
        width: 20px;
        background: #1a73e8;
        border-radius: 10px;
    }
    
    .view-all-reviews-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: 30px 12px 25px;
    }
    
    .review-item-card,
    .mobile-review-card {
        padding: 14px 12px;
    }
    
    .review-body {
        font-size: 0.8rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.85rem;
    }
}