/* horizontal-slider.css - الإصدار النهائي */
.horizontal-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    background: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.horizontal-container {
    display: flex;
    height: 100%;
    width: 500vw; /* 5 شرائح */
    margin: 0;
    padding: 0;
    transform: translate3d(0,0,0);
}

.slide {
    width: 100vw;
    height: 100vh;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    background: #000;
    margin: 0;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* تحسينات الجوال */
@media (max-width: 768px) {
    .horizontal-section {
        height: 100vh;
    }
}