/* ================= Sticky Selector ================= */
.sticky-selector {
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

@media (max-width: 767px) {
    .sticky-selector {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    }

    .sticky-selector ul {
        margin-bottom: 0;
    }
}

.stick-top {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ================= Nav Pills ================= */
.nav-pills .nav-link {
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    background: transparent;
    text-align: center;
}

.nav-pills .nav-link img {
    display: block;
    margin: 0 auto 5px;
}

.nav-pills .nav-link.active {
    background-color: #DEAD69;
    color: #000;
}

/* ================= Cards ================= */
.tour_container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.img_container {
    position: relative;
    overflow: hidden;
}

.img_container img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.tour_container:hover img {
    transform: scale(1.05);
}

/* ================= Location Badge ================= */
.short_info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================= Card Content ================= */
.tour_title {
    padding: 15px;
    text-align: right;
}

.category-list {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.startFrom {
    font-size: 13px;
    color: #777;
}

.prices {
    color: #DEAD69;
    font-weight: 700;
    font-size: 20px;
}

/* ================= Section Title ================= */
.RL-Line {
    background-color: #DEAD69;
}
