/* ظ‚ط³ظ… ط¢ط±ط§ط، ط§ظ„ط¹ظ…ظ„ط§ط، */
.reviews-section {
    background: url('../images/bg-pattern.png') no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.35);
    z-index: 0;
    border-radius: 24px 24px 0 0;
}
.reviews-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 64px 24px;
}
.reviews-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #F4BC00;
    margin-bottom: 48px;
    text-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
    position: relative;
}
.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd24d, transparent);
    border-radius: 2px;
}
.reviews-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}
.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}
.review-card {
    min-width: 350px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(244, 188, 0, 0.2);
    border: 1px solid rgba(244, 188, 0, 0.4);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 188, 0, 0.05) 0%, rgba(128, 128, 128, 0.03) 50%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}
.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(244, 188, 0, 0.4);
    border-color: rgba(244, 188, 0, 0.8);
}
.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: flex-start;
}
.star {
    color: #ffd24d;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(244, 188, 0, 0.8);
    filter: drop-shadow(0 0 5px rgba(244, 188, 0, 0.9));
}
.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
}
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 188, 0, 0.4);
}
.customer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd24d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(244, 188, 0, 0.4);
}
.customer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.verified-icon {
    color: #00b894;
    font-size: 1rem;
    filter: drop-shadow(0 0 2px rgba(0, 184, 148, 0.5));
}
.customer-location {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 5px;
}
.location-icon {
    color: #ffd24d;
}
.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.nav-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(244, 188, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c2c2c;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.nav-arrow:hover {
    background: #ffd24d;
    color: #2c2c2c;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(244, 188, 0, 0.4);
}
.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}
.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(244, 188, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(244, 188, 0, 0.2);
}
.indicator.active {
    background: #ffd24d;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(244, 188, 0, 0.5);
}
@media (max-width: 900px) {
    .reviews-section .container {
        padding: 40px 10px;
    }
    .review-card {
        min-width: 260px;
        padding: 20px;
    }
    .reviews-title {
        font-size: 1.5rem;
    }
}

/* Brand palette overrides */
.reviews-section::before {
    background: rgba(255, 249, 236, 0.55);
}

.reviews-title {
    color: #111827;
    text-shadow: none;
}

.reviews-title::after {
    background: linear-gradient(90deg, transparent, #F4BC00, transparent);
}

.review-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #E8DCC2;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.review-card::before {
    background: linear-gradient(135deg, rgba(244, 188, 0, 0.05) 0%, rgba(247, 241, 228, 0.6) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.review-card:hover {
    box-shadow: 0 18px 34px rgba(244, 188, 0, 0.14);
    border-color: #F4BC00;
}

.star,
.location-icon {
    color: #F4BC00;
    text-shadow: none;
    filter: none;
}

.review-text,
.customer-details h4 {
    color: #1F2937;
}

.customer-location {
    color: #6B7280;
}

.customer-info {
    border-top: 1px solid #E8DCC2;
}

.customer-avatar {
    background: linear-gradient(45deg, #F4BC00, #F4BC00);
    color: #111827;
    box-shadow: 0 4px 15px rgba(244, 188, 0, 0.2);
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E8DCC2;
    color: #1F2937;
}

.nav-arrow:hover {
    background: #FFF3BF;
    color: #111827;
    box-shadow: 0 10px 22px rgba(244, 188, 0, 0.16);
}

.indicator {
    background: rgba(244, 188, 0, 0.22);
    box-shadow: none;
}

.indicator.active {
    background: #F4BC00;
    box-shadow: 0 4px 12px rgba(244, 188, 0, 0.24);
}

@media (max-width: 640px) {
    .reviews-section {
        overflow-x: clip;
    }

    .reviews-section .container {
        width: min(100% - 20px, 1200px);
        padding-inline: 0;
    }

    .reviews-container {
        gap: 16px;
        scroll-padding-inline: 10px;
    }

    .review-card {
        min-width: min(88vw, 320px);
        max-width: min(88vw, 320px);
        padding: 18px;
    }

    .nav-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .review-card {
        min-width: min(92vw, 300px);
        max-width: min(92vw, 300px);
    }

    .reviews-title {
        font-size: clamp(1.6rem, 9vw, 2.1rem);
    }
}
