/* ========================================
   Testimonials Section - Site Renkleri ile Uyumlu
   ======================================== */

.testimonial-area-2025 {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

/* Header Section */
.testimonial-header-2025 {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 94, 21, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 21, 0.2);
    margin-bottom: 20px;
}

.header-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: #ff5e15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-badge .badge-icon i {
    color: #ffffff;
    font-size: 16px;
}

.header-badge .badge-text {
    color: #ff5e15;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.main-title .highlight {
    color: #ff5e15;
}

.subtitle-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Testimonials Slider */
.testimonials-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    transition: none;
}

/* Testimonial Card */
.testimonial-card-2025 {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

/* Animated Border on Hover */
.testimonial-card-2025::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff5e15, 
        #ff8c42, 
        #ff5e15, 
        #002052, 
        #ff5e15
    );
    background-size: 400% 400%;
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
}

.testimonial-card-2025::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px;
    z-index: -1;
}

.testimonial-card-2025:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 94, 21, 0.25);
}

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

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* User Avatar */
.user-avatar-2025 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002052 0%, #003a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar-2025 .avatar-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* User Info */
.user-info-2025 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: #002052;
    margin: 0;
}

.rating-stars-2025 {
    display: flex;
    gap: 4px;
}

.rating-stars-2025 i {
    color: #ffc107;
    font-size: 16px;
}

/* Review Text */
.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* CTA Button */
.testimonial-cta-2025 {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.google-btn-2025 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff5e15;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 21, 0.3);
    position: relative;
}

.google-btn-2025:hover {
    background: #e54d0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 21, 0.4);
    color: #fff;
}

.google-btn-2025 i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.google-btn-2025:hover i {
    transform: scale(1.1);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
    .testimonial-area-2025 {
        padding: 80px 0;
    }

    .main-title {
        font-size: 38px;
    }

    .testimonial-card-2025 {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-area-2025 {
        padding: 60px 0;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle-text {
        font-size: 14px;
    }

    .testimonial-card-2025 {
        min-width: 320px;
        max-width: 320px;
        padding: 25px;
    }

    .testimonials-slider {
        gap: 20px;
    }

    .google-btn-2025 {
        width: calc(100% - 40px);
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonial-area-2025 {
        padding: 50px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .header-badge {
        padding: 10px 20px;
    }

    .header-badge span {
        font-size: 12px;
    }

    .testimonial-card-2025 {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .user-avatar-2025 {
        width: 50px;
        height: 50px;
    }

    .user-avatar-2025 .avatar-text {
        font-size: 18px;
    }

    .user-name {
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
    }

    .google-btn-2025 {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .testimonial-area-2025 {
        background: #fff;
        padding: 20px 0;
    }

    .testimonials-slider {
        animation: none;
        flex-wrap: wrap;
    }

    .testimonial-card-2025 {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .google-btn-2025 {
        display: none;
    }
}
