.breadcrumb {
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    padding-left: 30px;
    background: linear-gradient(132deg, #614d4d, #f2f2f200);
    z-index: 1;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb li {
    font-size: 14px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    font-weight: 600;
}

.destination-banner {
    background-image: url(../../images/contact/contact-banner.webp);
    height: 300px;
    position: relative;
    z-index: 1;

}

.destination-banner .container {
    height: 100%;
}

.bg-control::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 37%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.about-banner .container {
    height: 100%;
}

h1 {
    font-size: 70px;
    background: linear-gradient(45deg, #ffffff, #0000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
    z-index: 2;
}

.tour-section {
    width: 100%;
    padding: 70px 0;
}

.tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: #ddd;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.tab-btn.active {
    background: #ff5a5f;
    color: white;
}

.tab-content {
    display: none;
    gap: 20px;
}

.tab-content.active {
    display: grid;
}

.tour-wrapper .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.package-img {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.package-img .img-text {
    position: absolute;
    top: 10px;
    height: 30px;
    right: 10px;
    border-radius: 26px;
    width: max-content;
    background-color: #1a6fc4;
    color: #fff;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
}

.package-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    transition: all .4s ease-in-out;
}

.package-img:hover img,
.package-card:hover .package-img img {
    transform: scale(1.4);
}

.tour-guide-line {
    font-size: 0.75rem;
    color: #1a6fc4;
    margin: 8px 0;
    font-weight: 500;
    background: rgba(26, 111, 196, 0.08);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 10px 0;
}

.tour-guide-line i {
    margin-right: 6px;
}

.package-card .text {
    padding: 16px 20px;
    background: #fff;
    border-radius: 11px;
}

.package-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}


.rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
}

.rating i {
    font-size: 12px;
    color: #fad502;
}

.package-card .package-destination {
    font-size: 13px;
    color: #a0a0a0;
    margin: 10px 0 4px;
    letter-spacing: 0.5px;
}

.package-card .package-destination i {
    color: #1a6fc4;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.package-price .price {
    color: #1a6fc4;
    font-size: 22px;
    font-weight: bold;
}

.package-price .price span {
    font-size: 14px;
    color: #b6b6b6;
    font-weight: 600;
}

.package-price .btn {
    padding: 7px 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.btn_wrapper .btn {
    margin: 0 auto;
}

@media (max-width:992px) {
    h1 {
        font-size: 46px;
    }

    .tour-wrapper .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 34px;
    }

    .destination-banner {
        height: 220px;
    }

    .tour-wrapper .row {
        grid-template-columns: repeat(1, 1fr);
    }

    .package-price .price {
        font-size: 18px;
    }

    .package-price .btn {
        padding: 7px 15px;
    }
}