:root {
    --bs-neutral-main: #27368b;
    --bs-background-card: #ffffff;
    --bs-button-bg-2: #f0f5ff;
}

.box-destination-list {
    background-color: white;
    padding: 30px 150px;
}

.box-destination-list .tour-sub-title {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #d02129;
    text-align: center;
    margin-bottom: 15px;
}

.box-destination-list .tour-main-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #444444;
    max-width: 800px;
    margin: 0 auto 10px;
}

.box-destination-list .tour-description {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #444444;
    max-width: 800px !important;
    margin: 0 auto 40px;
}

.box-destination-list .tour-main-title .brand {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: var(--bs-neutral-main);
}

.box-destination-list .container-slider {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

@media (min-width: 1400px) {
    .box-destination-list {
        padding: 30px 100px;
    }

    .box-destination-list .container-slider {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.card-destination-simple {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}

.card-destination-simple .card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-destination-simple .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Dark Overlay on Hover */
.card-destination-simple .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.card-destination-simple:hover .card-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Label Container */
.card-destination-simple .card-label {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.45s ease;
}

.card-destination-simple:hover .card-label {
    bottom: 50%;
    transform: translateY(50%);
}

.card-destination-simple .card-label span {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* Read More Button - Full Width at Bottom */
.card-destination-simple .btn-readmore {
    position: absolute;
    bottom: -60px; /* Hide below the card */
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bs-neutral-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 4;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.card-destination-simple:hover .btn-readmore {
    bottom: 0;
}

.card-destination-simple .btn-readmore span {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
}

.card-destination-simple .btn-readmore svg {
    transition: transform 0.3s ease;
}

.card-destination-simple .btn-readmore:hover svg {
    transform: translateX(5px);
}

/* Pagination spacing */
.swiper-pagination-destination {
    position: relative;
    text-align: center;
    margin-top: 40px !important;
    padding-bottom: 20px;
}

.swiper-pagination-destination .swiper-pagination-bullet {
    width: 72px;
    height: 6.5px;
    border-radius: 36px;
    background: #d9d9d9;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-destination .swiper-pagination-bullet-active {
    background: var(--bs-neutral-main);
}

.card-destination-simple .card-image {
    height: 300px;
}

/* Destination Navigation */
.box-swiper {
    position: relative;
}

.dest-btn-prev,
.dest-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
    font-size: 32px;
    font-weight: 700;
    color: #2e3ea8;
    user-select: none;
    line-height: 1;
    -webkit-text-stroke: 1.5px #2e3ea8;
    paint-order: stroke fill;
}

.dest-btn-prev:hover,
.dest-btn-next:hover {
    background: #2e3ea8;
    box-shadow: 0 14px 36px rgba(46, 62, 168, 0.28);
    color: #fff;
}

.dest-btn-prev {
    left: -76px;
}

.dest-btn-next {
    right: -76px;
}

@media (max-width: 1400px) {
    .dest-btn-prev {
        left: 10px;
    }
    .dest-btn-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .dest-btn-prev,
    .dest-btn-next {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .dest-btn-prev,
    .dest-btn-next {
        display: none;
    }
}

@media (max-width: 991px) {
    .box-destination-list {
        padding: 30px 20px;
    }
}
