/* Happy Customers Section - Dark Theme Matching Login Page */
.happy-customers-section {
    position: relative;
    overflow: hidden;
    background-color: #121212 !important; /* var(--bg-color) from login */
    padding: 80px 0;
}

.happy-customers-section h2.section-title {
    font-family: 'Cairo', sans-serif !important;
}

/* Slider Arrows */
.arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    background: transparent;
    color: #d4af37;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: #d4af37;
    color: #000;
}

.arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #555;
    color: #555;
}

/* Review Cards - Dark Theme */
.review-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

/* Stars */
.stars i {
    color: #d4af37 !important; /* Gold */
    font-size: 1rem;
    margin-left: 4px; /* Fix margin for RTL */
    margin-right: 0;
}

/* Reviewer Name */
.reviewer-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0 !important;
}

/* Verified Badge */
.verified-badge {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.verified-badge i {
    color: #01AB31; /* Green check */
}

/* Review Text */
.review-text p {
    font-family: 'Cairo', sans-serif;
    color: #aaaaaa !important; /* var(--text-muted) from login */
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper Fixes */
.swiper-wrapper {
    height: auto !important;
}

.swiper-slide {
    height: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px !important;
    }
    
    .review-card {
        padding: 20px;
    }
}
