/* ================= VIDEO SHOWCASE SECTION ================= */
.video-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-block: calc(var(--space-xl) * 1.5);
    background:
        radial-gradient(circle at 15% 20%, rgba(226, 186, 130, 0.12), transparent 45%),
        linear-gradient(160deg, #0d0d0d 0%, #1a1611 55%, #0d0d0d 100%);
    color: var(--clr-light);
    direction: rtl;
}

/* خطوط ذهبية أعلى وأسفل السيكشن */
.video-showcase::before,
.video-showcase::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 3px;
    background: var(--clr-btn-gradient);
}

.video-showcase::before {
    top: 0;
}

.video-showcase::after {
    bottom: 0;
}

/* دوائر إضاءة خلفية */
.video-showcase__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.video-showcase__glow--one {
    width: 380px;
    height: 380px;
    background: rgba(148, 110, 49, 0.35);
    top: -120px;
    left: -100px;
}

.video-showcase__glow--two {
    width: 300px;
    height: 300px;
    background: rgba(226, 186, 130, 0.18);
    bottom: -100px;
    right: -80px;
}

.video-showcase__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

/* ================= CONTENT ================= */
.video-showcase__content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    animation: slideFromLeft 0.9s ease both;
}

.video-showcase__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid rgba(226, 186, 130, 0.4);
    border-radius: var(--br-lg);
    background: rgba(226, 186, 130, 0.08);
    color: var(--clr-gold);
    font-size: var(--fs-sm);
    font-weight: 700;
}

.video-showcase__title {
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.3;
}

.video-showcase__title-items {
    display: block;
    margin-block: var(--space-xs);
    font-size: 0.55em;
    font-weight: 700;
    color: var(--clr-light);
    opacity: 0.9;
}

.video-showcase__title .text-primary {
    display: block;
    background: var(--clr-btn-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-showcase__desc {
    color: var(--clr-gray-text);
    font-size: var(--fs-md);
    line-height: 1.8;
    max-width: 560px;
}

.video-showcase__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.video-showcase__list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--br-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(226, 186, 130, 0.18);
    font-weight: 700;
    transition: var(--transition);
}

.video-showcase__list li i {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--clr-btn-gradient);
    color: var(--clr-light);
    font-size: 1rem;
}

.video-showcase__list li:hover {
    transform: translateY(-4px);
    border-color: var(--clr-gold);
    background: rgba(226, 186, 130, 0.1);
    box-shadow: var(--shadow-gold);
}

.video-showcase__cta {
    align-self: flex-start;
}

/* ================= VIDEO ================= */
.video-showcase__media {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    animation: popIn 0.9s ease both;
}

.video-showcase__frame {
    position: relative;
    width: min(340px, 80vw);
    aspect-ratio: 478 / 850;
    padding: 10px;
    border-radius: 36px;
    background: var(--clr-btn-gradient);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 45px rgba(226, 186, 130, 0.3);
    animation: videoFloat 5s ease-in-out infinite;
}

/* حلقة متوهجة حول الإطار */
.video-showcase__frame::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 44px;
    border: 2px dashed rgba(226, 186, 130, 0.35);
    animation: videoGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
}

.video-showcase__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    background: #000;
}

.video-showcase__sound {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.55);
    color: var(--clr-gold);
    border: 1px solid rgba(226, 186, 130, 0.5);
    backdrop-filter: blur(6px);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-showcase__sound:hover {
    background: var(--clr-primary);
    color: var(--clr-light);
    transform: scale(1.08);
}

.video-showcase__floating {
    position: absolute;
    bottom: 40px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--br-sm);
    background: var(--clr-light);
    color: var(--clr-dark);
    font-weight: 800;
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-card-hover);
    animation: videoFloat 5s ease-in-out infinite reverse;
}

.video-showcase__floating i {
    color: var(--clr-primary);
    font-size: 1.3rem;
}

@keyframes videoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes videoGlow {
    to {
        border-color: rgba(148, 110, 49, 0.6);
    }
}

@media (prefers-reduced-motion: reduce) {

    .video-showcase__frame,
    .video-showcase__floating,
    .video-showcase__frame::before {
        animation: none;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .video-showcase__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .video-showcase__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .video-showcase__badge,
    .video-showcase__cta {
        align-self: center;
    }

    .video-showcase__desc {
        margin-inline: auto;
    }

    .video-showcase__floating {
        right: -10px;
    }
}

@media (max-width: 425px) {
    .video-showcase__list {
        gap: var(--space-sm);
    }

    .video-showcase__list li {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--fs-sm);
    }

    .video-showcase__list li i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .video-showcase__floating {
        right: 0;
        bottom: 20px;
    }
}
