/* ===================================================================
   CUSTOMER REVIEWS SHOWCASE
   =================================================================== */

.reviews-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    margin: 0 0 15px 0;
}

.reviews-header p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.google-logo {
    font-size: 2em;
}

.rating-info {
    text-align: left;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.2em;
}

.rating-text {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.9em;
}

.rating-count {
    color: #64748b;
    font-size: 0.85em;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    margin-top: 50px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    min-width: 350px;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3em;
    color: #e2e8f0;
    opacity: 0.5;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.review-date {
    color: #64748b;
    font-size: 0.85em;
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-rating i {
    color: #fbbc04;
    font-size: 1.1em;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95em;
    margin: 0;
}

.review-service {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0ea5e9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 15px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.carousel-btn:hover {
    background: white;
    color: #0ea5e9;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Stats Row */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3em;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-header h2 {
        font-size: 1.8em;
    }

    .review-card {
        min-width: 280px;
    }

    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .google-rating-badge {
        flex-direction: column;
        text-align: center;
    }

    .rating-info {
        text-align: center;
    }
}