.slider-container { display: flex; height: 100%; position: relative; }
.vertical-nav { width: 70px; background: transparent; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; position: relative; z-index: 10; padding-top: 0; }
.nav-item { position: relative; height: 70px; width: 100%; display: flex; justify-content: center; align-items: center; cursor: pointer; }
.nav-line { width: 2px; height: 70px; background: #fe7e19; transition: all 0.3s ease; transform: rotate(90deg); }
.nav-item:hover .nav-line { background: #000; height: 60px; }
.nav-title { position: absolute; left: 70px; white-space: nowrap; background: rgba(0, 0, 0, 0.8); color: white; padding: 5px 15px; border-radius: 4px; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; display: none; }
.nav-item:hover .nav-title { opacity: 1; }
.slider-content { flex: 1; position: relative; top: -220px; z-index: 999; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 500px; opacity: 1; padding: 40px; display: flex; align-items: center; }
.destination-image img { transition: opacity 0.5s ease, transform 0.5s ease; }
.destination-image img.fade { opacity: 0; transform: scale(0.95); }
.destination-content h2 { transition: opacity 0.5s ease; }
.destination-content h2.fade { opacity: 0; }
.destination-count { font-size: 80px; font-weight: 100; margin-bottom: 10px; color: #fff; line-height: 85px; font-family: acta; position: relative; }
.destination-tagline { font-size: 16px; color: #666; margin-bottom: 30px; }
.CustomSlider .destination-content { width: 100%; }
.CustomSlider .destination-image img { width: 85%; }
.CustomSlider .destination-image { text-align: right; }
.destination-content h2 { font-size: 50px; margin-bottom: 20px; color: #FE7E19; font-weight: 400; }
.destination-image { position: absolute; right: 1%; width: 70%; height: 620px; overflow: visible; top: 6px; }
.destination-image img { width: 100%; height: 100%; object-fit: cover; }
.SlideCount { display: flex; gap: 20px; position: absolute; top: 80px; }
@media (max-width:768px) {
    .vertical-nav { width: 50px; }
    .nav-item { height: 50px; }
    .nav-line { height: 50px; }
    .slider-content { top: -150px; }
    .slide { height: 400px; padding: 20px; }
    .destination-content h2 { font-size: 36px; }
    .destination-image { width: 100%; height: 400px; }
}