/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(to bottom, #007CA6 0%, #00A69B 100%);
    padding: 80px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Vazirmatn', sans-serif;
}

.testimonials-header p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
}

.testimonials-container {
    position: relative;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.side-card {
    width: 300px;
    min-height: 350px;
    transform: scale(0.9);
    opacity: 0.8;
}

.center-card {
    width: 350px;
    min-height: 380px;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.service-tag {
    background: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    margin-bottom: 25px;
    display: inline-block;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: 'Vazirmatn', sans-serif;
}

.author-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-family: 'Vazirmatn', sans-serif;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    direction: ltr;
}

.star {
    color: #FF8C00;
    font-size: 18px;
}

.star-empty {
    color: #E0E0E0;
    font-size: 18px;
}

/* Navigation Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .side-card,
    .center-card {
        width: 100%;
        max-width: 400px;
        transform: none;
        opacity: 1;
    }

    .testimonials-controls {
        gap: 20px;
        margin-top: 40px;
    }

    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}