/* Müşteri Yorumları Bölümü Stilleri */
.testimonials {
    background-color: #F9FAFB;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\f10d'; /* FontAwesome quote icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 120px;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
}

.testimonials::after {
    content: '\f10e'; /* FontAwesome quote icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 120px;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title {
    color: #1A1A1A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials .section-subtitle {
    color: #FF6B35;
    font-size: 18px;
    font-style: italic;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-top: 5px solid #FF6B35;
    transform: translateY(0);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-text {
    color: #1A1A1A;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #FF6B35;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
