#book-your-next-trip {
    background-color: #DBDBDBB8;
    padding: 0px 50px 50px 50px
}

#book-your-next-trip h1 {
    font-weight: 600;
    font-size: 32px;
    color: #000000;
}

#trip-tabs {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #0000001A;
    width: fit-content;
}

#trip-tabs button {
    background: transparent;
    border: none;
    margin-bottom: -1px;
    padding-bottom: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #00000080;
}

#trip-tabs button.active {
    color: #2B65C9;
    border-bottom: 1px solid #608BD7B2;
}

.carousel-container {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    flex-shrink: 0;
    overflow: hidden;
    width: 399px;
    height: auto;
    margin-bottom: 5px;
    border: 1px solid #00000033;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.card-content {
    padding: 10px;
}

.card h3 {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

.card p {
    font-weight: bold;
    font-size: 13px;
    color: #00000052;
}

.card-image-container {
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

@media (max-width: 768px) {
    #book-your-next-trip {
        padding: 20px;
    }

    #trip-tabs {
        width: 100%;
        height: auto;
        overflow: hidden;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    #trip-tabs button {
        white-space: nowrap;
    }

    #trip-tabs::-webkit-scrollbar {
        display: none;
    }
}