/* السلايدر الرئيسي */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 26, 45, 0.85) 0%, rgba(10, 26, 45, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 50px;
    animation: fadeInUp 1s ease forwards;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* عناصر التحكم في السلايدر */
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: white;
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    transform: scale(1.3);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--gold);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.2);
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold-light);
}

/* قسم الفيديو */
.video-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0a1a2d, #1a3a6c);
    position: relative;
    overflow: hidden;
}

.video-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover;
    opacity: 0.2;
}

.video-section .section-title h2 {
    color: white;
}

.video-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: var(--transition);
    border: 5px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(233, 185, 73, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 26, 45, 0.9), rgba(233, 185, 73, 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 15px;
}

.video-overlay:hover {
    opacity: 0;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(233, 185, 73, 0.7);
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .video-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .slide-content {
        text-align: center;
        padding: 0 30px;
    }

    .slide-content h2 {
        font-size: 2.3rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
    
    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 1.2rem;
    }
    
    .play-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}