.video-testimonial {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    padding: 5rem 0;
}

.video-testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-testimonial .section-title {
    line-height: 1.2;
    font-size: 2rem;
    color: var(--primary);
}

.video-testimonial .section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.video-testimonial-text {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-quote i {
    color: var(--accent);
    font-size: 1.5rem;
}

.testimonial-quote i:first-child {
    align-self: flex-start;
}

.testimonial-quote i:last-child {
    align-self: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
    .video-testimonial {
        padding: 3rem 0;
    }

    .video-testimonial .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .video-container {
        margin-bottom: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .testimonial-quote i {
        font-size: 1.2rem;
    }
}
