/* Customer Reviews Section */
.customer-reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.customer-reviews-section .reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-reviews-section .reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.customer-reviews-section .reviews-badge i {
    color: white;
}

.customer-reviews-section .reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.customer-reviews-section .reviews-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.customer-reviews-section .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-reviews-section .review-card {
    flex: 0 1 calc(50% - 15px);
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.customer-reviews-section .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.customer-reviews-section .review-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    max-width: 100%;
}

@media (max-width: 968px) {
    .customer-reviews-section {
        padding: 60px 0;
    }

    .customer-reviews-section .reviews-title {
        font-size: 2rem;
    }

    .customer-reviews-section .reviews-grid {
        flex-direction: column;
        gap: 20px;
    }

    .customer-reviews-section .review-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .customer-reviews-section .reviews-title {
        font-size: 1.75rem;
    }
}
