#heroSec {
    height: calc(100vh - var(--nav-height));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    .bgVideo {
        height: 100%;
        width: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
        z-index: 0;
        filter: brightness(0.55);
    }

    .container {
        position: relative;
        z-index: 5;
        text-align: center;

        width: clamp(18rem, 19rem + 35vw, 95%);
        padding: 2rem 1rem;
        line-height: 1.25;

        background-color: var(--blue-25);
        color: var(--text-white);
        border: 0.5px solid var(--blue-80);
        border-radius: 1em;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5em;

        h1 {
            font-size: clamp(2.5em, 3.8vw + 0.5rem, 5.5em);
            font-weight: 700;
        }

        p {
            font-size: clamp(1.3em, 1.1vw + 0.5rem, 5em);
        }

        .cta {
            margin: 0.3em;
            border-radius: 0.7em;

            i {
                margin-left: 1em;
                font-weight: 600;
            }
        }

    }
}

#searchSec {
    .filterForm {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1em;
        background-color: var(--color-gray-low);
        padding: 1.5rem;

        .filterCont {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
            gap: 1em;
        }

    }

    .filterCont .dropdown {
        background: var(--bg-primary);
        position: relative;
        height: 4rem;
        flex-grow: 1;
        border-radius: 0.5em;
        overflow: hidden;

        .dropdown_label {
            height: 100%;
            width: 100%;
            display: flex;
            gap: 0.7em;
            position: absolute;
            left: 0;
            top: 0;
            pointer-events: none;
            padding: 0 1em;

            i {
                font-size: 1.6em;
                margin: auto 0;
                width: 1em;

                &:last-child {
                    margin-left: auto;
                    font-size: 1.1em;
                    color: var(--color-gray-mid);
                }
            }

            p {
                font-weight: 500;
                padding-top: 5px;
                font-size: 1em;
            }
        }

        select {
            padding: 1em 1.5em 0 3em;
            width: 100%;
            height: 100%;
            outline: none;
            border: none;
            font-size: 1.2em;
            cursor: pointer;
            appearance: none;
            background-color: inherit;
            color: var(--color-gray-mid);
        }

    }

}


#destinationSec {
    background-color: var(--bg-cream);

    .container {
        position: relative;
        width: 100%;
        padding: 0 0.5em;

        .slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1em;
            padding: 0 0.5em;

            .card {
                background-color: var(--color-gray-low);
                height: 13rem;
                width: 100%;
                position: relative;
                border-radius: 5px;
                overflow: hidden;
                cursor: pointer;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .textOverlay {
                    position: absolute;
                    inset: 0;
                    display: flex;
                    align-items: flex-end;
                    justify-content: center;
                    background-color: rgba(0, 0, 0, 0.25);

                    p {
                        text-align: center;
                        color: var(--text-white);
                        margin-bottom: 1em;
                        font-size: 1.05em;
                        font-family: var(--font_mochiyPop);
                        transition: all 300ms ease-in-out;
                        ;
                    }
                }

                &:hover .textOverlay p {
                    transform: scale(1.05);
                }
            }

            .card.last {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1em;
            }
        }
    }
}


.splide {
    .splide__track {
        background-color: var(--color-yellow-light);
        padding: 1em 0;
        margin-bottom: 0.7em;
    }

    .splide__arrows {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;

        .navBtn {
            border-radius: 50%;
            height: 4em;
            width: 4em;
            background-color: var(--blue-80);
            outline: none;
            border: 2.5px solid var(--color-blue);
            cursor: pointer;
            color: var(--text-white);
            pointer-events: auto;
            opacity: 1;
            position: relative;
            transform: none;
            top: auto;
            left: auto;
            right: auto;

            i {
                font-size: 2em;
            }

            &:disabled {
                opacity: 0.7;
                cursor: not-allowed;
            }
        }
    }

    .splide__pagination {
        gap: 1em;
        bottom: -1.5em;

        button.splide__pagination__page {
            background-color: var(--color-brown);
            opacity: 1;
            padding: 7px;
            transition: all 300ms ease-in-out;

            &:hover,
            &.is-active {
                background-color: var(--brown-80);
            }

            &.is-active {
                transform: scale(1.2);
            }
        }
    }
}


#whyChooseSec {
    .cardContainer {
        gap: 1rem;
        padding: 2em 6%;
        display: grid;
        grid-auto-rows: 1fr;
    }

    .card {
        padding: 1.5em 2em;
        background-color: var(--color-gray-low);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-self: flex-end;
        width: min(100%, 30em);
        border-radius: 5px;

        .icon {
            border-radius: 50%;
            background-color: var(--blue-80);
            height: 3em;
            width: 3em;
            display: grid;
            place-items: center;
            margin-bottom: 0.5em;

            i {
                font-size: 1.5em;
                font-weight: 600;
            }
        }

        &:nth-child(odd) {
            justify-self: flex-start;

            .icon {
                background-color: var(--color-indianRed);
            }
        }

        h3 {
            font-size: 1.35em;
        }

        p {
            margin-top: 0.7em;
            font-weight: 500;
        }
    }
}


#loginCTASec .container {
    width: min(90%, 45em);
    background-color: var(--blue-25);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
    margin: 1em auto;
    align-items: center;

    p,
    p a {
        color: var(--color-purple);
        font-weight: bold;
    }

    p a {
        display: inline-flex;
    }

    .btn {
        width: min(65%, 20em);
    }
}


#tourSec {
    .container {
        position: relative;
        width: 100%;
        padding: 1em 0.5em;

        .slide {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide .card {
            width: 95%;
            height: 100%;
            min-height: 25rem;
            background-color: var(--color-gray-low);
            overflow: hidden;
            border-radius: 5px;
            display: flex;
            flex-direction: column;

            &.last {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1em;
            }
        }

        .card {
            .imgCont {
                height: 14em;
                flex-shrink: 0;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: fill;
                }
            }

            .tourDetails {
                padding: 0.8em;
                display: flex;
                flex-direction: column;
                flex: 1;
                justify-content: center;
                gap: 1em;
                scale: 0.95;

                .tourTitle {
                    font-size: 1.55em;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    line-clamp: 2;
                    -webkit-box-orient: vertical;
                    text-transform: capitalize;
                }

                p {
                    font-weight: 500;

                    i::before {
                        font-weight: 700 !important;
                    }
                }
            }

            .cardFooter {
                height: 5.5em;
                flex-shrink: 0;
                border-top: 1px solid var(--black-30);
                padding: 1em;
                display: flex;
                justify-content: space-between;
                align-items: center;
                overflow: hidden;

                p {
                    font-weight: 500;
                    font-size: 0.9em;
                }

                .price {
                    text-wrap: nowrap;
                    color: var(--color-purple);
                    font-size: 1.4em;
                }
            }

        }

    }

    .splide__track {
        padding: 0;
        background-color: transparent;
        margin: 0 0.8em;
    }

}



#ktfSec {
    background-color: var(--blue-20);
    margin: 1em 0;

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        text-align: center;
        width: min(80%, 23em);
        margin: 0 auto;
        font-weight: bold;
    }
}


#gallerySec {
    .container {
        display: flex;
        gap: 1.5rem;
        padding: 1.5rem;
        --column-count: 3;

        .column {
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
            gap: 1rem;
            width: calc(100% / var(--column-count));

            img {
                width: 100%;
                height: auto;
                max-height: 35em;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                object-fit: cover;
                object-position: top center;
            }
        }
    }
}


#testimonialSec {

    .container {
        position: relative;
        width: 100%;
        padding: 0 0.5em;
    }

    .card {
        background: var(--color-blue-dark);
        border-radius: 15px;
        padding: 2rem;
        color: #ecf0f1;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: var(--color-cream);
    }

    .user-info {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .user-dp {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 1rem;
        border: 2px solid var(--color-brown);
    }

    .user-name {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .stars {
        .bi-star-fill {
            font-size: 0.9rem;
            color: #7f8c8d; /* Gray color for empty stars */
        }
        .bi-star-fill.filled {
            color: var(--color-yellow); /* Golden color for filled stars */
        }
    }

    .content {
        font-style: italic;
        line-height: 1.6;
        text-align: justify;
    }

    .splide__slide {
        padding: 0.5rem;
    }

    .splide__pagination__page.is-active {
        background: #ff6b6b;
    }
}

@media (max-width: 768px) {

    #searchSec,
    #searchSec .filterForm {
        padding-left: 1em !important;
        padding-right: 1em !important;
    }

    #whyChooseSec {
        .cardContainer {
            padding: 1em;
            gap: 1rem;

            .card {
                justify-self: center;
                padding: 1.5em;
            }
        }
    }

    #gallerySec {
        .container {
            gap: 1rem;
            padding: 1rem;
            --column-count: 2;

            .column.hideMobile {
                display: none;
            }
        }
    }
}

@media (max-width: 600px) {

    #gallerySec {
        .container {
            flex-direction: column;
            --column-count: 1;
        }
    }
}
