/* Testimonials Section Component */
.testimonials-section {
    background: var(--primary-color);
    color: white;
}

.testimonials-section .section-title {
    color: white;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-section .section-subtitle {
    color: white;
    margin-bottom: 48px;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.slider-arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-prev {
    left: -50px;
}

.slider-arrow-next {
    right: -50px;
}

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    min-height: 300px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.testimonial-name {
    color: var(--text-primary);
    margin: 0;
}

.testimonial-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-social-icon {
    width: 28px;
    height: 28px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.testimonial-social-icon i {
    font-size: 14px;
}

.testimonial-linkedin-icon {
    background: #0077b5;
}

.testimonial-linkedin-icon:hover {
    background: #005885;
    transform: translateY(-2px);
}

.testimonial-youtube-icon {
    background: #FF0000;
}

.testimonial-youtube-icon:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

.testimonial-tiktok-icon {
    background: #000000;
}

.testimonial-tiktok-icon:hover {
    background: #333333;
    transform: translateY(-2px);
}

.testimonial-instagram-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.testimonial-instagram-icon:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.testimonial-role {
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.testimonial-role a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.testimonial-role a:hover {
    text-decoration: underline;
    color: var(--primary-color-dark, #0056b3);
}

.testimonial-quote {
    color: var(--text-primary);
    margin: 0;
    font-style: normal;
}

@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
        text-align: center;
    }
    
    .testimonial-avatar,
    .testimonial-avatar-placeholder {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .testimonial-header {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonial-social-links {
        justify-content: center;
    }
    
    .testimonials-slider {
        padding: 0 50px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow-prev {
        left: -30px;
    }
    
    .slider-arrow-next {
        right: -30px;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: white;
    border-color: white;
}

.slider-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.5);
}

/* Testimonials Grid (for dedicated page) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card-static {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .testimonial-card-static {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }
    
    .testimonial-card-static .testimonial-avatar-placeholder {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .testimonial-card-static .testimonial-header {
        justify-content: center;
    }
}

