/* ════════════════════════════════════════════════
TESTIMONIALS SECTION
════════════════════════════════════════════════ */

.testimonials-section {
    padding: 4rem 0 5rem;
    /* background: #0d0d0d; */
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Section Header ── */
.testimonials-header {
    text-align: center;
    /* margin-bottom: 3rem; */
}

.testimonials-header .tag {
    display: inline-block;
    background: rgba(186, 23, 40, 0.15);
    color: #ba1728;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(186, 23, 40, 0.2);
    margin-bottom: 0.8rem;
}

.testimonials-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d0d0d;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.testimonials-header h2 span {
    color: #ba1728;
}

.testimonials-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Video Grid 2×2 ── */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

/* ── Video Card ── */
.video-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(186, 23, 40, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(186, 23, 40, 0.06);
}

/* ── Video Wrapper & Thumbnail ── */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #111;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.03);
}

/* ── Play Button Overlay ── */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ba1728;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(186, 23, 40, 0.4);
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(186, 23, 40, 0.55);
}

.play-btn i {
    margin-left: 4px;
}

/* ── Video Info ── */
.video-info {
    padding: 1.2rem 1.5rem 1.5rem;
}

.video-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.video-info .client-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

/* ── Video Modal ── */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 880px;
    background: #0d0d0d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(186, 23, 40, 0.15);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ba1728;
    border-color: #ba1728;
    transform: rotate(90deg);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ── Responsive ── */

/* Tablet: 2 columns still, smaller gap */
@media (max-width: 992px) {
    /* .testimonials-header h2 {
        font-size: 2.2rem;
    } */
    .video-grid {
        gap: 1.4rem;
    }
    .play-btn {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
    /* .testimonials-section {
        padding: 3rem 0 4rem;
    }
    .testimonials-section .container {
        padding: 0 1.2rem;
    } */
    /* .testimonials-header h2 {
        font-size: 1.8rem;
    } */
    .testimonials-header p {
        font-size: 0.95rem;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .video-info h4 {
        font-size: 0.95rem;
    }
    .play-btn {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    .video-modal {
        padding: 1rem;
    }
    .video-modal-content {
        border-radius: 14px;
    }
    .modal-close {
        top: 0.6rem;
        right: 0.6rem;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 400px) {
    /* .testimonials-header h2 {
        font-size: 1.5rem;
    } */
    .video-info {
        padding: 1rem 1.2rem 1.2rem;
    }
    .video-info h4 {
        font-size: 0.85rem;
    }
}