/* ==========================================
   Video Testimonials Section (AG1 Style)
   ========================================== */

.testimonials-section {
    padding: 6rem 4rem;
    background: #ffffff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.testimonials-left {
    padding-top: 2rem;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.testimonials-rating .stars {
    color: #4a8f4a;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonials-rating .rating-text {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 400;
}

.testimonials-headline {
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.see-reviews-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid #1a1a1a;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.see-reviews-btn:hover {
    background: #1a1a1a;
    color: white;
}

.testimonials-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    margin-bottom: 1rem;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
    margin-left: 3px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.video-info {
    padding: 0 0.25rem;
}

.video-category {
    display: block;
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.video-divider {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    margin-bottom: 0.75rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.reviewer-name {
    color: #888;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonials-disclaimer {
    max-width: 1400px;
    margin: 2rem auto 0;
    text-align: center;
    color: #888;
    font-size: 0.75rem;
    font-style: italic;
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-left {
        text-align: center;
        padding-top: 0;
    }

    .testimonials-rating {
        justify-content: center;
    }

    .testimonials-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 2rem;
    }

    .testimonials-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .testimonials-headline {
        font-size: 2rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }

    .video-title {
        font-size: 0.95rem;
    }

    .video-category {
        font-size: 0.7rem;
    }

    .reviewer-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .testimonials-right {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .video-thumbnail {
        aspect-ratio: 9/12;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-headline {
        font-size: 1.6rem;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .play-button svg {
        width: 16px;
        height: 16px;
    }
}