

.promo-video-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #0d0d0d;
}

.promo-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.promo-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    filter: grayscale(100%);
}

.promo-video-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.promo-video-section .container-xxl {
    position: relative;
    z-index: 3;
}

.promo-video-card {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 30px 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    background: #f58220a3;
}

.promo-video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.promo-play-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-video-play:hover .promo-play-circle {
    transform: scale(1.06);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.promo-play-circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: promoPulse 1.8s infinite;
}

.promo-play-triangle {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-inline-start: 22px solid white;
    margin-inline-start: 5px;
}

.promo-video-divider {
    width: 1px;
    height: 72px;
    background: rgba(255, 255, 255, 0.22);
}

.promo-video-content h3 {
    margin: 0 0 6px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.promo-video-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 400;
}

/* Modal */
.promo-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.promo-video-modal.active {
    display: flex;
}

.promo-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.promo-video-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    animation: promoVideoFadeUp 0.28s ease;
}

.promo-video-close {
    position: absolute;
    top: -50px;
    inset-inline-end: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.promo-video-close:hover {
    transform: scale(1.08);
}

.promo-video-frame {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.promo-video-frame video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    background: #000;
}

/* Animasyonlar */
@keyframes promoPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.10);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes promoVideoFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Duyarlı */
@media (max-width: 991px) {
    .promo-video-section {
        padding: 90px 0;
    }

    .promo-video-card {
        gap: 20px;
        padding: 24px 22px;
        max-width: 100%;
    }

    .promo-play-circle {
        width: 74px;
        height: 74px;
    }

    .promo-play-triangle {
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        border-inline-start: 18px solid #111;
    }

    .promo-video-content h3 {
        font-size: 24px;
    }

    .promo-video-content p {
        font-size: 16px;
    }

    .promo-video-divider {
        height: 58px;
    }
}

@media (max-width: 767px) {
    .promo-video-section {
        padding: 70px 0;
    }

    .promo-video-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .promo-play-circle {
        width: 64px;
        height: 64px;
    }

    .promo-play-triangle {
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-inline-start: 16px solid #111;
        margin-inline-start: 4px;
    }

    .promo-video-divider {
        height: 46px;
    }

    .promo-video-content h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .promo-video-content p {
        font-size: 14px;
    }

    .promo-video-modal {
        padding: 12px;
    }

    .promo-video-close {
        top: -42px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .promo-video-frame {
        border-radius: 14px;
    }

    .promo-video-frame video {
        max-height: 70vh;
    }
}
