/* Modern Testimonials Section - قسم الاقتباسات الحديث */

.testimonials-modern-section {
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #004D40;
    opacity: 0.12;
}

.quote-icon i {
    display: block;
}

.testimonial-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 3px solid rgba(231, 76, 60, 0.3);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-navigation {
    position: absolute;
    top: 40%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-arrow:hover {
    background: #004D40;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.nav-arrow i {
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-left {
    margin-left: -50px;
}

.nav-right {
    margin-right: -50px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.testimonial-dots .dot.active {
    background: #ffffff;
    width: 40px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-slider-wrapper {
        max-width: 600px;
    }
    
    .nav-left {
        margin-left: -45px;
    }
    
    .nav-right {
        margin-right: -45px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        max-width: 90%;
    }
    
    .testimonials-container {
        min-height: 230px;
    }
    
    .testimonial-card {
        padding: 20px 18px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow i {
        font-size: 15px;
    }
    
    .nav-left {
        margin-left: 10px;
    }
    
    .nav-right {
        margin-right: 10px;
    }
    
    .testimonial-name {
        font-size: 17px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        min-height: 220px;
    }
    
    .testimonial-card {
        padding: 18px 15px;
    }
    
    .testimonial-image {
        width: 65px;
        height: 65px;
        margin-bottom: 10px;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .nav-arrow i {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .quote-icon {
        font-size: 25px;
        top: 12px;
        right: 12px;
    }
}
