/* ===============================
   TOUR LIST LAYOUT
================================ */
#tour-list h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

#tourContainer {
    display: flex;
    flex-wrap: wrap;
}

/* ===============================
   TOUR CARD
================================ */
.tour-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

/* ===============================
   IMAGE
================================ */
.tour-img {
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

/* ===============================
   CARD BODY
================================ */
.card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.card-body h5 {
    font-size: 18px;
    line-height: 1.4;
    min-height: 48px;
    color: #222;
}

/* ===============================
   PRICE
================================ */
.tour-price {
    font-size: 20px;
    font-weight: 700;
    color: #e63946;
}

/* ===============================
   BUTTON
================================ */
.tour-btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 0;
    transition: all .3s ease;
}
.btn-booking {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(223, 169, 116);
    font-weight: 500;
    width: 100%;
    height: 46px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(223, 169, 116);
    border-image: initial;
    border-radius: 2px;
    background: transparent;
}
.btn-booking:hover, .btn-booking:focus {
    background: rgb(223, 169, 116);
    border-color: rgb(223, 169, 116);
    color: white;
    outline: none;
}
.btn-detail:hover {
    background: #198754;
    border-color: #198754;
}

/* ===============================
   BADGE (OPTIONAL)
================================ */
/* .tour-card::before {
    content: "HOT";
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
} */

/* ===============================
   DETAIL PAGE
================================ */
.tour-detail-img {
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.tour-info-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.tour-highlight {
    margin-top: 50px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 18px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    /* .tour-img {
        height: 220px;
    } */
}

@media (max-width: 767px) {
    #tour-list h2 {
        font-size: 28px;
    }

    /* .tour-img {
        height: 200px;
    } */

    .card-body h5 {
        min-height: auto;
    }
    .card-body {
        padding: 10px;
    }
}