/* ===== MODERN ENHANCED SLIDER ===== */

/* Hero Section Reset */
.hero-image {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    max-height: 800px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(8, 25, 40, 0.95) 0%,
        rgba(11, 60, 93, 0.85) 50%,
        rgba(15, 82, 128, 0.75) 100%);
    border-radius: 0;
    display: flex;
    align-items: stretch;
}

.premium-swiper {
    width: calc(100% - 120px); /* تعديل: تصغير عرض الشريط من 150px إلى 120px */
    height: 100%;
    position: relative;
}

/* Glass Morphism Effect Enhanced */
.slide-glass {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        inset 0 0 100px rgba(255, 255, 255, 0.05),
        0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Modern Slide Number */
.slide-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.8);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Elegant Title */
.slide-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #D4AF37, 
        transparent);
    border-radius: 2px;
    opacity: 1;
    visibility: visible;
}

/* التأكد أن الخط ظاهر في جميع السلايدات */
.swiper-slide .slide-title::after {
    opacity: 1;
    visibility: visible;
}

/* Premium Icon Design */
.slide-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%,
        rgba(242, 209, 107, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #D4AF37;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.25),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.slide-icon::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    z-index: -1;
}

/* Sophisticated Text */
.slide-text {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

/* Premium Badges */
.slide-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    padding: 10px 24px;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: #D4AF37;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.8s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #D4AF37;
}

/* Modern Stats */
.slide-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    min-width: 160px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F2D16B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
}

.stat-label {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced Morph Shapes */
.morph-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.4) 0%, 
        rgba(212, 175, 55, 0.1) 50%,
        transparent 80%);
    animation: floatShapes 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    right: -125px;
    animation-delay: 5s;
    background: radial-gradient(circle, 
        rgba(26, 111, 166, 0.3) 0%, 
        rgba(26, 111, 166, 0.1) 50%,
        transparent 80%);
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1) rotate(5deg);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9) rotate(-5deg);
    }
}

/* Premium Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 70px !important;
    height: 70px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    color: white !important;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
}

.swiper-button-prev {
    left: 40px !important;
}

.swiper-button-next {
    right: calc(40px + 10px) !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: linear-gradient(135deg, 
        #D4AF37 0%, 
        #F2D16B 100%) !important;
    border-color: #D4AF37 !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.2) !important;
}

/* Modern Pagination Dots */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid transparent !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.swiper-pagination-bullet-active {
    background: #D4AF37 !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.5) !important;
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
}

/* ===== PREMIUM SIDEBAR NAVIGATION ===== */
.slider-sidebar-container {
    width: 120px; /* تعديل: تصغير عرض الشريط من 150px إلى 120px */
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-sidebar {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(8, 25, 40, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px 0 0 20px;
    padding: 20px 10px; /* تعديل: تقليل padding من 25px 15px */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    box-shadow: 
        -15px 0 30px rgba(0, 0, 0, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Progress Section */
.sidebar-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-bottom: 30px;
    height: auto;
}

.progress-track {
    width: 4px;
    height: 100px; /* تعديل: تصغير من 120px إلى 100px */
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, 
        #D4AF37, 
        #F2D16B, 
        rgba(242, 209, 107, 0.8));
    border-radius: 2px;
    transition: height 0.5s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.progress-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.current-slide {
    font-size: 1.8rem;
    font-weight: 900;
    color: #D4AF37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.separator {
    opacity: 0.5;
    font-weight: 300;
    font-size: 1.1rem;
}

.total-slides {
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 600;
}

/* Navigation Buttons */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
}

.sidebar-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 6px; /* تعديل: تقليل padding من 10px 8px */
    border-radius: 10px; /* تعديل: تقليل من 12px */
    transition: all 0.3s ease;
    width: 100%;
    min-height: 70px; /* تعديل: تصغير من 75px */
    position: relative;
    overflow: hidden;
}

.sidebar-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-nav-btn.active::before {
    opacity: 1;
}

.nav-label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem; /* تعديل: تصغير من 0.9rem */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    writing-mode: horizontal-tb; /* تعديل: تغيير من vertical-rl إلى horizontal-tb */
    transform: none; /* تعديل: إزالة rotate(180deg) */
    transition: all 0.3s ease;
    letter-spacing: 0.3px; /* تعديل: تقليل من 0.5px */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px; /* تعديل: تصغير من 50px */
    line-height: 1.2; /* تعديل: تقليل من 1.3 */
    text-align: center; /* إضافة: محاذاة النص */
    width: 100%; /* إضافة: عرض كامل */
    margin-left: 15px;
}

.sidebar-nav-btn.active .nav-label {
    color: #D4AF37;
    font-weight: 800;
}

.nav-indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-nav-btn.active .nav-indicator {
    background: #D4AF37;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sidebar-nav-btn:hover {
    transform: translateX(-3px);
}

.sidebar-nav-btn:hover .nav-label {
    color: white;
}

.sidebar-nav-btn:hover .nav-indicator {
    background: #D4AF37;
    transform: scale(1.2);
}

/* Entry Animations */
.swiper-slide-active .slide-content > * {
    animation: premiumFadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes premiumFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .slide-icon {
    animation-delay: 0.1s;
}

.swiper-slide-active .slide-title {
    animation-delay: 0.2s;
}

.swiper-slide-active .slide-text {
    animation-delay: 0.3s;
}

.swiper-slide-active .slide-badges,
.swiper-slide-active .slide-stats {
    animation-delay: 0.4s;
}

/* منع أي تأثيرات تخفي الخط */
.slide-title::after {
    animation: none;
    transition: none;
}

/* تحسين شكل الخط */
.slide-title::after {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 50%, 
        transparent 100%);
    border-radius: 1.5px;
}

/* ===== تحسينات حجم المحتوى من 994px إلى 1318px ===== */
@media (min-width: 994px) and (max-width: 1322px) {
    .hero-image {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    /* تصغير المحتوى داخل السلايد */
    .slide-glass {
        padding: 40px 30px !important;
    }
    
    .slide-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .slide-title {
        font-size: 2.3rem; /* تصغير من 2.8rem */
        margin-bottom: 20px; /* تصغير من 25px */
    }
    
    .slide-title::after {
        width: 70px; /* تصغير من 80px */
        height: 3px;
        bottom: -12px; /* تصغير من -15px */
    }
    
    .slide-icon {
        width: 85px; /* تصغير من 100px */
        height: 85px; /* تصغير من 100px */
        margin-bottom: 30px; /* تصغير من 40px */
        font-size: 2rem; /* تصغير من 2.5rem */
    }
    
    .slide-text {
        font-size: 1.15rem; /* تصغير من 1.3rem */
        margin-bottom: 30px; /* تصغير من 40px */
        line-height: 1.7; /* تصغير من 1.8 */
    }
    
    /* تحسين البادجات */
    .slide-badges {
        gap: 12px; /* تصغير من 15px */
        margin-top: 25px; /* تصغير من 30px */
    }
    
    .badge {
        padding: 8px 18px; /* تصغير من 10px 24px */
        font-size: 0.9rem; /* تصغير من 0.95rem */
    }
    
    /* تحسين الإحصائيات */
    .slide-stats {
        gap: 25px; /* تصغير من 40px */
        margin-top: 30px; /* تصغير من 40px */
    }
    
    .stat {
        padding: 20px 25px; /* تصغير من 25px 30px */
        min-width: 140px; /* تصغير من 160px */
    }
    
    .stat-value {
        font-size: 2.5rem; /* تصغير من 3rem */
    }
    
    .stat-label {
        font-size: 0.9rem; /* تصغير من 1rem */
    }
    
    /* تحسين الأزرار */
    .swiper-button-prev,
    .swiper-button-next {
        width: 60px !important; /* تصغير من 70px */
        height: 60px !important; /* تصغير من 70px */
    }
    
    .swiper-button-prev {
        left: 20px !important; /* تصغير من 40px */
    }
    
    .swiper-button-next {
        right: 20px !important; /* تصغير من calc(40px + 10px) */
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Large */
@media (min-width: 1400px) {
    .hero-image {
        height: 80vh;
        min-height: 600px;
        max-height: 850px;
    }
    
    .slide-content {
        max-width: 700px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slider-sidebar-container {
        width: 160px; /* تعديل للشاشات الكبيرة */
    }
    
    .slider-sidebar {
        padding: 30px 20px;
    }
    
    .sidebar-nav-btn {
        min-height: 80px;
    }
    
    .nav-label {
        font-size: 1rem;
        max-height: 60px;
    }
}

/* Desktop Medium - 1025px إلى 1399px */
@media (max-width: 1399px) and (min-width: 1025px) {
    .hero-image {
        height: 75vh;
        min-height: 550px;
    }
    
    .premium-swiper {
        width: calc(100% - 120px); /* تعديل: تصغير من 150px */
    }
    
    .slider-sidebar-container {
        width: 120px; /* تعديل: تصغير من 150px */
    }
    
    .nav-label {
        font-size: 0.8rem; /* تعديل: تصغير من 0.85rem */
    }
}

/* تحسينات للشاشات 1025px إلى 1317px */
@media (min-width: 1025px) and (max-width: 1317px) {
    .premium-swiper {
        width: calc(100% - 120px);
    }
    
    .slider-sidebar-container {
        width: 120px;
    }
    
    .nav-label {
        font-size: 0.8rem;
    }
}

/* تحسينات للشاشات 994px إلى 1024px */
@media (min-width: 994px) and (max-width: 1024px) {
    .premium-swiper {
        width: calc(100% - 110px); /* تصغير إضافي */
    }
    
    .slider-sidebar-container {
        width: 110px; /* تصغير إضافي */
    }
    
    .slider-sidebar {
        padding: 15px 8px; /* تصغير padding */
    }
    
    .sidebar-nav-btn {
        min-height: 65px; /* تصغير إضافي */
        padding: 6px 4px; /* تصغير إضافي */
    }
    
    .nav-label {
        font-size: 0.75rem; /* تصغير إضافي */
    }
    
    .progress-track {
        height: 90px; /* تصغير إضافي */
    }
    
    .current-slide {
        font-size: 1.6rem; /* تصغير إضافي */
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-image {
        height: 65vh;
        min-height: 500px;
        flex-direction: column;
    }
    
    .premium-swiper {
        width: 100%;
        height: calc(100% - 100px);
    }
    
    .slide-glass {
        padding: 40px 30px;
    }
    
    .slider-sidebar-container {
        width: 100%;
        height: 100px;
        order: 2;
    }
    
    .slider-sidebar {
        width: 100%;
        height: 100%;
        flex-direction: row;
        border-radius: 15px 15px 0 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        padding: 15px 20px;
        gap: 20px;
        justify-content: space-between;
    }
    
    .sidebar-progress {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .progress-track {
        width: 150px;
        height: 5px;
    }
    
    .progress-bar {
        width: 25%;
        height: 100%;
        background: linear-gradient(to right, 
            #D4AF37, 
            #F2D16B, 
            rgba(242, 209, 107, 0.8));
    }
    
    .progress-numbers {
        flex-direction: row;
        gap: 10px;
    }
    
    .sidebar-nav {
        flex-direction: row;
        gap: 15px;
        flex-grow: 0;
    }
    
    .sidebar-nav-btn {
        flex-direction: row;
        gap: 8px;
        padding: 10px 15px;
        min-height: auto;
        width: auto;
    }
    
    .nav-label {
        writing-mode: horizontal-tb;
        transform: none;
        max-height: none;
        font-size: 0.85rem;
    }
    
    .sidebar-nav-btn:hover {
        transform: translateY(-3px);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-image {
        height: 70vh;
        min-height: 550px;
        flex-direction: column;
    }
    
    .premium-swiper {
        width: 100%;
        height: calc(100% - 90px);
    }
    
    .slide-glass {
        padding: 40px 20px !important;
    }
    
    .slide-title {
        font-size: 2.3rem;
    }
    
    .slider-sidebar-container {
        width: 100%;
        height: 90px;
        order: 2;
    }
    
    .slider-sidebar {
        width: 100%;
        height: 100%;
        flex-direction: row;
        border-radius: 15px 15px 0 0;
        padding: 12px 15px;
        gap: 15px;
        justify-content: space-between;
    }
    
    .sidebar-progress {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 0;
    }
    
    .progress-track {
        width: 120px;
        height: 4px;
    }
    
    .current-slide {
        font-size: 1.5rem;
    }
    
    .sidebar-nav {
        flex-direction: row;
        gap: 10px;
        flex-grow: 0;
    }
    
    .sidebar-nav-btn {
        flex-direction: row;
        gap: 6px;
        padding: 8px 10px;
        min-height: auto;
        width: auto;
    }
    
    .nav-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.8rem;
        max-height: none;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 55px !important;
        height: 55px !important;
    }
}

/* Mobile Landscape */
@media (max-width: 667px) and (min-width: 376px) {
    .hero-image {
        height: 65vh;
        min-height: 500px;
    }
    
    .slide-glass {
        padding: 30px 20px !important;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slider-sidebar-container {
        height: 80px;
    }
    
    .slider-sidebar {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .progress-track {
        width: 100px;
    }
    
    .nav-label {
        font-size: 0.75rem;
    }
    
    .sidebar-nav-btn {
        padding: 6px 8px;
        gap: 4px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-image {
        height: 70vh;
        min-height: 550px;
        flex-direction: column;
    }
    
    .premium-swiper {
        width: 100%;
        height: calc(100% - 70px);
    }
    
    .slide-glass {
        padding: 30px 15px 40px !important;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .slide-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .slider-sidebar-container {
        height: 70px;
    }
    
    .slider-sidebar {
        padding: 8px 10px;
        gap: 8px;
        border-radius: 12px 12px 0 0;
    }
    
    .progress-track {
        width: 80px;
        height: 3px;
    }
    
    .current-slide {
        font-size: 1.3rem;
    }
    
    .total-slides {
        font-size: 1rem;
    }
    
    .sidebar-nav {
        gap: 5px;
    }
    
    .sidebar-nav-btn {
        padding: 5px 6px;
        gap: 3px;
        min-height: 50px;
    }
    
    .nav-label {
        font-size: 0.7rem;
    }
    
    .nav-indicator {
        width: 6px;
        height: 6px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-image {
        height: 65vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slider-sidebar {
        padding: 6px 8px;
    }
    
    .nav-label {
        font-size: 0.65rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-image {
        background: linear-gradient(135deg, 
            rgba(5, 15, 25, 0.95) 0%,
            rgba(8, 40, 65, 0.85) 100%);
    }
    
    .slider-sidebar {
        background: rgba(5, 15, 25, 0.95);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .slide-title {
        color: #ffffff;
    }
    
    .nav-label {
        color: #ffffff;
    }
    
    .sidebar-nav-btn.active .nav-label {
        color: #ffd700;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .swiper-slide-active .slide-content > *,
    .swiper-slide-active .slide-icon,
    .shape,
    .badge:hover,
    .stat:hover,
    .swiper-button-prev:hover,
    .swiper-button-next:hover,
    .sidebar-nav-btn:hover {
        animation: none;
        transition: none;
    }
    
    .shape {
        animation: none;
    }
}