/* Customer Reviews Section Styles */
.customer-reviews-section {
    background: #f8f9fa;
    padding: 100px 20px;
    margin: 0;
}

.customer-reviews-section .container {
    max-width: 1450px;
    margin: 0 auto;
}

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

.customer-reviews-badge {
    display: inline-block;
    background: var(--primary, #1abdb8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.customer-reviews-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.customer-reviews-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.customer-reviews-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.customer-reviews-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
}

.customer-review-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.customer-review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary, #1abdb8);
    box-shadow: 0 8px 24px rgba(26, 189, 184, 0.15);
}

.customer-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.customer-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary, #1abdb8);
    color: #ffffff;
}

.customer-review-avatar-letter {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.customer-review-info {
    flex: 1;
    min-width: 0;
}

.customer-review-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.customer-review-date {
    font-size: 13px;
    color: #6b7280;
    display: block;
}

.customer-review-rating {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.customer-review-rating i {
    font-size: 16px;
    color: #fbbf24;
}

.customer-review-rating .bi-star {
    color: #d1d5db;
}

.customer-review-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Carousel Navigation */
.customer-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary, #1abdb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.customer-reviews-section:hover .customer-reviews-nav {
    opacity: 1;
}

.customer-reviews-nav:hover {
    background: var(--primary, #1abdb8);
    transform: translateY(-50%) scale(1.1);
}

.customer-reviews-nav:hover i {
    color: #ffffff;
}

.customer-reviews-nav i {
    font-size: 20px;
    color: var(--primary, #1abdb8);
    transition: color 0.3s ease;
}

.customer-reviews-nav-prev {
    left: 20px;
}

.customer-reviews-nav-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .customer-reviews-section {
        padding: 80px 20px;
    }
    
    .customer-reviews-wrapper {
        padding: 0;
    }
    
    .customer-review-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    
    .customer-reviews-nav {
        width: 40px;
        height: 40px;
    }
    
    .customer-reviews-nav i {
        font-size: 18px;
    }
    
    .customer-reviews-nav-prev {
        left: 10px;
    }
    
    .customer-reviews-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 70px 20px;
    }
    
    .customer-reviews-wrapper {
        padding: 0;
    }
    
    .customer-reviews-header {
        margin-bottom: 40px;
    }
    
    .customer-reviews-title {
        font-size: 26px;
    }
    
    .customer-reviews-description {
        font-size: 15px;
    }
    
    .customer-review-card {
        flex: 0 0 100%;
        padding: 20px;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .customer-reviews-nav {
        width: 36px;
        height: 36px;
    }
    
    .customer-reviews-nav i {
        font-size: 16px;
    }
    
    .customer-reviews-nav-prev {
        left: 5px;
    }
    
    .customer-reviews-nav-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .customer-reviews-section {
        padding: 40px 20px;
    }
    
    .customer-review-header {
        flex-wrap: wrap;
    }
    
    .customer-review-rating {
        width: 100%;
        margin-top: 8px;
    }
}

