/* فيديو ترويجي للعروض - تصميم منفصل */
.promo-video-section {
    width: 100vw;
    height: 60vh;
    margin: 60px 0;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.promo-video-section .video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.promo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
}

.promo-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.video-content-side {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 700px;
    width: 90%;
    padding: 0 20px;
}

.video-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: white;
    letter-spacing: 1px;
}

.video-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
    line-height: 1.4;
    color: #f8fafc;
}

.video-cta-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-cta-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* الاستجابة للشاشات المختلفة */
@media (max-width: 1200px) {
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .promo-video-section {
        height: 50vh;
    }
    
    .promo-video-section .video-container {
        height: 50vh;
    }
    
    .video-title {
        font-size: 2.2rem;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
    }
    
    .video-cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-video-section {
        height: 40vh;
        margin: 40px 0;
    }
    
    .promo-video-section .video-container {
        height: 40vh;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .video-content-side {
        max-width: 500px;
        padding: 0 15px;
    }
    
    .video-cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .promo-video-section {
        height: 35vh;
    }
    
    .promo-video-section .video-container {
        height: 35vh;
    }
    
    .video-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-cta-btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
}