/* Müşteri Yorumları Bölümü - Kayan Slider */
.testimonials-section-dark {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(255, 140, 0, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(253, 126, 20, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.testimonials-slider {
    display: flex;
    animation: slideTestimonials 25s linear infinite;
    width: max-content;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slide {
    flex: 0 0 400px;
    padding: 0 15px;
}

.testimonial-card-slider {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 140, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 140, 0, 0.08);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card-slider:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.testimonial-card-slider:hover::before {
    opacity: 1;
}

.testimonial-card-slider > * {
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 50px;
    color: rgba(255, 140, 0, 0.15);
    line-height: 1;
    z-index: 0;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-rating .rating-stars {
    font-size: 22px;
    display: flex;
    align-items: center;
}

.testimonial-rating .rating-score {
    color: #ff8c00;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-rating .star-filled {
    color: #ff8c00;
    margin-right: 2px;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
    animation: starGlow 3s infinite alternate;
}

@keyframes starGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.4);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 140, 0, 1);
        transform: scale(1.1);
    }
}

.testimonial-rating .star-empty {
    color: rgba(255, 255, 255, 0.15);
    margin-right: 2px;
}

.testimonial-card-slider .testimonial-comment {
    margin-bottom: 20px;
    min-height: 100px;
    max-height: 150px;
    overflow: hidden;
}

.testimonial-card-slider .testimonial-comment p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.testimonial-footer-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
}

.testimonial-footer-slider .testimonial-author strong {
    color: #ff8c00;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

.testimonial-footer-slider .testimonial-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.testimonial-footer-slider .testimonial-date i {
    margin-right: 5px;
    color: #ff8c00;
}

@media (max-width: 768px) {
    .testimonials-section-dark {
        padding: 50px 0;
    }

    .testimonial-slide {
        flex: 0 0 300px;
    }

    .testimonial-card-slider {
        padding: 20px;
    }

    .testimonial-card-slider .testimonial-comment {
        min-height: 80px;
    }

    .testimonial-footer-slider {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .testimonial-quote {
        font-size: 35px;
    }
}

/* Tümünü Gör Butonu */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c00, #fd7e14);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5);
    color: white;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}
