/* Package card */
.card-package {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: auto 100% !important;
    transition: background-size 0.7s ease-in-out !important;
}

/* Keadaan Saat Hover */
.card-package:hover {
    background-size: auto 115% !important;
}


.badge-package {
    width: fit-content !important;
}


/* TOUR PACKAGE */

/* GRID – FIXED 6 COLUMNS */
.tour-card_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* TABLET */
@media (max-width: 1200px) {
    .tour-card_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .tour-card_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* CARD */
.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    background: #000;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

/* IMAGE */
.tour-card_image {
    position: absolute;
    inset: 0;
}

.tour-card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tour-card:hover .tour-card_image img {
    transform: scale(1.1);
}

.tour-card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6), transparent);
}

/* BADGE */
.tour-card_badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .2);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* CONTENT */
.tour-card_content {
    position: relative;
    padding: 24px;
    margin-top: 240px;
    color: #fff;
    flex-grow: 1;
}

.tour-card_content a h3 {
	color: #ffffff;
}

.tour-card_content a h3:hover {
	color: #ecebe4;
}

.tour-card_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tour-card_subtitle {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tour-card_route {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-card_route-icon {
    width: 18px;
}

/* FOOTER */
.tour-card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 16px;
    margin-top: auto;
}

.tour-card_price-label {
    font-size: 12px;
    opacity: .7;
}

.tour-card_price-value {
    font-size: 18px;
}

.tour-card_price-value strong {
    font-size: 22px;
}

/* BUTTON */
.tour-card_button {
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s ease;
}

.tour-card_button:hover {
    background: #eaeaea;
}

/* Tour Notfound */

.tour-card_empty-state {
    max-width: 420px;
    margin: 80px auto;
    padding: 32px 24px;
    text-align: center;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
}

.tour-card_empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.tour-card_empty-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.tour-card_empty-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


/*Caousel */

.tour-carousel {
    padding: 20px 0 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.tour-carousel .swiper-slide {
    height: auto;
    display: flex;
    flex-shrink: 0; 
    width: auto;
}

.tour-card {
    height: 100% !important; /* Agar semua card tingginya sama */
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Mengatur warna navigasi agar terlihat */
.tour-carousel .swiper-button-next, 
.tour-carousel .swiper-button-prev {
    color: #ffffff;
    transform: scale(0.7);
}

.tour-carousel .swiper-pagination-bullet-active {
    background: #301014;
}