/* ============================================
   DESTINATIONS SLIDER
   ============================================ */

.destinations-slider-wrapper {
    padding: 80px 0;
    overflow: hidden;
}

.destinations-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.destinations-title {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.destinations-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Slider Container */
.destinations-slider {
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 10px;
    overflow: hidden;
}

.destinations-slider__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Slide */
.destination-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

@media (max-width: 1024px) {
    .destination-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .destination-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .destinations-slider {
        padding: 0 50px;
    }
}

/* Destination Card */
.destination-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.destination-card__image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-card__image img {
    transform: scale(1.1);
}

.destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

/* Card Content - FIXED */
.destination-card__content {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.destination-card__title {
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.destination-card__season {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-card__season .icon {
    font-size: 16px;
}

.destination-card__yachts {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.destination-card__btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-card__btn {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Arrows */
.destinations-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color:#000;
    padding: 0;
}

.destinations-slider__nav:hover {
    background: #000;
    color: #fff;
}

.destinations-slider__nav svg {
    width: 20px;
    height: 20px;
    stroke: #000;
}

.destinations-slider__prev {
    left: 15px;
}

.destinations-slider__next {
    right: 15px;
}

/* Dots */
.destinations-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.destinations-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.destinations-slider__dot:hover {
    background: #999;
}

.destinations-slider__dot.active {
    background: #000;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .destinations-slider-wrapper {
        padding: 50px 0;
    }
    
    .destinations-title {
        font-size: 32px;
    }
    
    .destinations-subtitle {
        font-size: 16px;
    }
    
    .destination-card__image {
        height: 250px;
    }
    
    .destination-card__title {
        font-size: 22px;
    }
    
    .destinations-slider__nav {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   SINGLE DESTINATION - GALLERY
   ============================================ */

.destination-single__gallery-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.destination-single__gallery-section h2 {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 40px;
}

.destination-single__gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-single__gallery-item {
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
}

.destination-single__gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.destination-single__gallery-item img:hover {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .destination-single__gallery-item {
        flex: 0 0 calc(33.333% - 10px);
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .destination-single__gallery-item {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
    }
    
    .destination-single__gallery-item img {
        height: 150px;
    }
}

/* ============================================
   DESTINATION LIGHTBOX - FIXED
   ============================================ */

#dest-gallery-lightbox {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
}

#dest-gallery-lightbox.active {
    display: flex !important;
}

#dest-gallery-lightbox .dest-lightbox__image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

#dest-gallery-lightbox .dest-lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#dest-gallery-lightbox .dest-lightbox__close:hover {
    background: #fff;
    color: #000;
}

#dest-gallery-lightbox .dest-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dest-gallery-lightbox .dest-lightbox__nav:hover {
    background: #fff;
    color: #000;
}

#dest-gallery-lightbox .dest-lightbox__prev {
    left: 30px;
}

#dest-gallery-lightbox .dest-lightbox__next {
    right: 30px;
}

#dest-gallery-lightbox .dest-lightbox__counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
}


.destination-single__quick-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
    background: #f9f9f9;
}

.quick-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.quick-info-icon {
    font-size: 24px;
}

.quick-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.quick-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 768px) {
    .destination-single__quick-info {
        gap: 20px;
    }
    
    .quick-info-item {
        flex: 0 0 45%;
    }
}