/* قسم الفيديو الترويجي - عرض كامل من اليمين لليسار */
.promo-video-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.8), rgba(57, 73, 171, 0.6));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px;
}

.video-content-side {
    text-align: right;
    color: white;
    max-width: 500px;
    padding: 20px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.video-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.video-cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.video-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* تجاوب الشاشات الصغيرة */
@media (max-width: 768px) {
    .promo-video-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}