/* Testimonials Carousel Styles */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 50%, #0f0f2f 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #FF6B35, #F7B731);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.testimonial-wrapper {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--testimonial-color, linear-gradient(90deg, #FF6B35, #F7B731));
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--testimonial-color, #FF6B35), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.15rem 0;
}

.testimonial-company {
    color: var(--testimonial-color, var(--accent)) !important;
    font-weight: 600;
}

.testimonial-rating {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-quote {
    position: relative;
    margin: 2rem 0;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--testimonial-color, var(--accent));
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--testimonial-color, linear-gradient(135deg, #FF6B35, #F7B731));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.testimonial-highlight svg {
    width: 20px;
    height: 20px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

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

.testimonial-dot.active {
    background: var(--accent);
    width: 40px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

#testimonialCounter {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        font-size: 3rem;
        width: 60px;
        height: 60px;
    }

    .testimonial-author h4 {
        font-size: 1.2rem;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    .testimonial-controls {
        gap: 1rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
