@import url('fonts.css');

:root {
    --theme-color: #ff6700;
    --text-color: #2b2b2b;
    --text-muted: #555555;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;

    --fs-xxs: 10px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-xxl: 24px;

    --fw-sm: 400;
    --fw-md: 500;
    --fw-lg: 600;
    --fw-xl: 700;
    --fw-bold: bold;

    --rd-sm: 5px;
    --rd-md: 10px;
    --rd-lg: 15px;

    --border-color: #e0e0e0;

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.header-site {
    background-color: var(--bg-white);
    position: relative;
    top: 0;
    width: 100%;

    .header-bar-desktop {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 10px;

        @media (max-width: 768px) {
            & {
                display: none;
            }
        }

        .container {
            max-width: 1350px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .menu-actions {
                display: flex;
                align-items: center;
                gap: 20px;

                .logo-site {
                    img {
                        height: 35px;
                        width: auto;
                    }
                }

                .menu-site {
                    list-style: none;
                    display: flex;
                    gap: 20px;
                    margin: 0;
                    padding: 0;

                    .menu-item {
                        &.active {
                            .menu-link {
                                color: var(--theme-color);
                            }
                        }

                        .menu-link {
                            text-decoration: none;
                            color: var(--text-color);
                            font-size: var(--fs-md);
                            font-weight: var(--fw-sm);
                            border-radius: var(--rd-sm);
                            padding: 0px 15px;

                            &:hover {
                                color: var(--theme-color);
                            }
                        }
                    }
                }
            }

            .menu-options {
                ul {
                    list-style: none;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    margin: 0;
                    padding: 0;

                    li {
                        .language-switcher {
                            position: relative;

                            .btn-language {
                                background: none;
                                border: none;
                                cursor: pointer;
                                padding: 0;

                                img {
                                    width: 30px;
                                    height: auto;
                                }
                            }

                            .language-options {
                                display: none;
                                position: absolute;
                                top: 35px;
                                right: 0;
                                background-color: var(--bg-white);
                                border: 1px solid #e0e0e0;
                                border-radius: var(--rd-sm);
                                box-shadow: var(--shadow-md);
                                z-index: 1001;
                                width: 170px;
                                padding: 3px;

                                &.active {
                                    display: block;
                                }

                                &:before {
                                    content: "";
                                    position: absolute;
                                    top: -10px;
                                    right: 5.1px;
                                    border-width: 5px;
                                    border-style: solid;
                                    border-color: transparent transparent #ffffff transparent;
                                    z-index: 1;
                                }

                                &:after {
                                    content: "";
                                    position: absolute;
                                    top: -13px;
                                    right: 4px;
                                    border-width: 6px;
                                    border-style: solid;
                                    border-color: transparent transparent #e0e0e0 transparent;
                                    z-index: -1;
                                }

                                a {
                                    text-decoration: none;
                                    display: flex;
                                    align-items: center;
                                    padding: 10px 15px;
                                    gap: 10px;

                                    &:hover {
                                        color: var(--theme-color);
                                    }

                                    img {
                                        width: 20px;
                                        height: auto;
                                    }

                                    span {
                                        color: var(--text-color);
                                        font-size: var(--fs-sm);
                                        font-weight: var(--fw-sm);
                                    }
                                }
                            }
                        }

                        .link-manage-booking {
                            text-decoration: none;
                            color: var(--text-color);
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-sm);
                            padding: 8px 12px;
                            border-radius: var(--rd-sm);

                            &:hover {
                                color: var(--theme-color);
                            }
                        }

                        .btn-login {
                            text-decoration: none;
                            color: var(--theme-color);
                            background-color: var(--bg-white);
                            border: 1px solid var(--theme-color);
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-md);
                            padding: 8px 40px;
                            border-radius: var(--rd-sm);
                            cursor: pointer;

                            &:hover {
                                background-color: var(--theme-color);
                                color: var(--bg-white);
                            }
                        }

                        .card-account {
                            position: relative;

                            .btn-account {
                                background: none;
                                border: none;
                                cursor: pointer;
                                padding: 0;
                                display: flex;
                                align-items: center;
                                gap: 10px;

                                img {
                                    width: 35px;
                                    height: auto;
                                    border-radius: 50%;
                                }

                                strong {
                                    font-size: var(--fs-sm);
                                    font-weight: var(--fw-md);
                                    color: var(--text-color);

                                }

                                i {
                                    font-size: var(--fs-xxs);
                                    color: var(--text-muted);
                                }
                            }

                            .account-options {
                                display: none;
                                position: absolute;
                                top: 45px;
                                right: 0;
                                background-color: var(--bg-white);
                                border: 1px solid #e0e0e0;
                                border-radius: var(--rd-sm);
                                box-shadow: var(--shadow-md);
                                z-index: 1001;
                                width: 290px;
                                height: auto;

                                &.active {
                                    display: block;
                                }

                                &:before {
                                    content: "";
                                    position: absolute;
                                    top: -10px;
                                    right: 15.1px;
                                    border-width: 5px;
                                    border-style: solid;
                                    border-color: transparent transparent #ffffff transparent;
                                    z-index: 1;
                                }

                                &:after {
                                    content: "";
                                    position: absolute;
                                    top: -13px;
                                    right: 14px;
                                    border-width: 6px;
                                    border-style: solid;
                                    border-color: transparent transparent #e0e0e0 transparent;
                                    z-index: -1;
                                }

                                ul {
                                    list-style: none;
                                    margin: 0;
                                    padding: 0;
                                    height: 100%;
                                    overflow-y: auto;
                                    display: flex;
                                    align-items: flex-start;
                                    flex-direction: column;
                                    gap: 5px;
                                    padding: 10px 0;

                                    .account-item {

                                        .account-link-profile {
                                            text-decoration: none;
                                            display: flex;
                                            align-items: center;
                                            gap: 10px;
                                            padding: 10px 15px;
                                            color: var(--text-color);

                                            .account-img {
                                                width: 50px;
                                                height: 50px;
                                                border-radius: 50%;
                                                overflow: hidden;

                                                img {
                                                    width: 100%;
                                                    height: 100%;
                                                }
                                            }

                                            .account-info {
                                                display: flex;
                                                flex-direction: column;

                                                .account-name {
                                                    font-size: var(--fs-sm);
                                                    font-weight: var(--fw-md);
                                                }

                                                .account-role {
                                                    font-size: var(--fs-xxs);
                                                    font-weight: var(--fw-sm);
                                                    color: var(--text-muted);
                                                }
                                            }
                                        }

                                        .account-link {
                                            text-decoration: none;
                                            display: block;
                                            padding: 10px 15px;
                                            color: var(--text-color);
                                            font-size: var(--fs-sm);
                                            font-weight: var(--fw-sm);

                                            &:hover {
                                                color: var(--theme-color);
                                            }
                                        }

                                    }

                                    .account-line {
                                        width: 90%;
                                        height: 1px;
                                        background-color: #e0e0e0;
                                        margin: 5px auto;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        @media (max-width: 1350px) {
            & {
                .container {
                    max-width: 100%;
                    padding: 0 10px;

                    .menu-actions {
                        gap: 15px;

                        .logo-site {
                            img {
                                height: 25px;
                            }
                        }

                        .menu-site {
                            gap: 15px;

                            .menu-item {
                                .menu-link {
                                    padding: 0px 10px;
                                    font-size: var(--fs-xs);
                                }
                            }
                        }
                    }

                    .menu-options {
                        ul {
                            gap: 10px;

                            li {
                                .language-switcher {
                                    .btn-language {
                                        img {
                                            width: 25px;
                                        }
                                    }

                                    .language-options {
                                        width: 140px;

                                        a {
                                            padding: 8px 10px;

                                            img {
                                                width: 16px;
                                            }

                                            span {
                                                font-size: var(--fs-xs);
                                            }
                                        }
                                    }
                                }

                                .link-manage-booking {
                                    font-size: var(--fs-xs);
                                    padding: 6px 10px;
                                }

                                .btn-login {
                                    font-size: var(--fs-xs);
                                    padding: 6px 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .header-bar-mobile {
        display: none;
        flex-direction: column;
        border-bottom: 1px solid #e0e0e0;

        @media (max-width: 768px) {
            & {
                display: flex;
            }
        }

        .container {
            max-width: 100%;
            padding: 15px 30px;
            margin: 0 auto;

            .menu-actions {
                display: flex;
                justify-content: space-between;
                align-items: center;

                .logo-site {
                    img {
                        height: 30px;
                        width: auto;
                    }
                }

                .btn-menu-toggle {
                    background: none;
                    border: none;
                    cursor: pointer;
                    padding: 0;
                    font-size: var(--fs-xxl);
                    color: var(--text-color);
                    outline: none;
                }
            }
        }

        .menu-options {
            position: fixed;
            top: 60px;
            right: -100%;
            width: 100%;
            max-width: 100%;
            height: calc(100% - 60px);
            overflow-y: auto;
            background-color: var(--bg-white);
            transition: right 0.3s ease-in-out;
            box-shadow: var(--shadow-md);
            z-index: 999;

            &.active {
                right: 0;
            }

            .menu-site {
                list-style: none;
                margin: 0;
                padding: 0;

                .menu-item-title {
                    font-size: var(--fs-xxs);
                    font-weight: var(--fw-md);
                    padding: 15px 30px 5px 30px;
                    color: var(--text-muted);
                }

                .menu-item-line {
                    width: 90%;
                    height: 1px;
                    background-color: #e0e0e0;
                    margin: 0 auto;
                }

                .menu-item {
                    .menu-link {
                        text-decoration: none;
                        color: var(--text-color);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);
                        display: block;
                        padding: 10px 30px;

                        &:hover {
                            background-color: var(--bg-white);
                            color: var(--theme-color);
                        }

                        &.language-switcher-mobile {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            background: none;
                            border: none;
                            cursor: pointer;
                            width: 100%;

                            img {
                                width: 30px;
                                height: auto;
                            }
                        }

                        &.btn-login {
                            background-color: var(--bg-white);
                            border: 1px solid var(--theme-color);
                            color: var(--theme-color);
                            font-weight: var(--fw-md);
                            text-align: center;
                            margin: 15px 30px;
                            border-radius: var(--rd-sm);
                            padding: 10px 0;
                            width: 100px;

                            &:hover {
                                background-color: var(--theme-color);
                                color: var(--bg-white);
                            }
                        }

                    }
                }
            }

            .card-account-mobile {
                background-color: var(--bg-white);
                padding: 15px 15px 5px 15px;

                .account-link-profile {
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin: 15px 0;
                    background-color: #ff572217;
                    padding: 15px 15px;
                    border-radius: var(--rd-md);

                    .account-img {
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    .account-info {
                        display: flex;
                        flex-direction: column;

                        .account-name {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-md);
                            color: var(--text-color);
                        }

                        .account-role {
                            font-size: var(--fs-xxs);
                            font-weight: var(--fw-sm);
                            color: var(--text-muted);
                        }
                    }

                    .account-expand-icon {
                        margin-left: auto;

                        i {
                            font-size: var(--fs-lg);
                            color: var(--text-muted);
                        }
                    }
                }

                ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;

                    li {
                        .account-link {
                            text-decoration: none;
                            display: flex;
                            align-items: center;
                            flex-direction: column;
                            gap: 5px;
                            padding: 10px 0;
                            color: var(--theme-color);
                            font-size: var(--fs-xs);
                            font-weight: var(--fw-sm);

                            i {
                                font-size: var(--fs-xxl);
                            }
                        }
                    }
                }
            }
        }

        .modal-lang {
            .modal-header {
                display: flex;
                justify-content: space-between;
                border-bottom: 0;

                .modal-title {
                    font-size: var(--fs-md);
                    font-weight: var(--fw-md);
                }

                .btn-close-modal {
                    background: none;
                    border: none;
                    font-size: var(--fs-xxl);
                    font-weight: var(--fw-lg);
                    color: var(--text-color);
                    cursor: pointer;
                    padding: 0;
                }
            }

            .modal-body {
                padding: 20px 20px 30px 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                a {
                    text-decoration: none;

                    .language-option {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        padding: 10px 15px;
                        color: var(--text-color);
                        border-bottom: 1px solid #e0e0e0;

                        &.active {
                            color: var(--theme-color);

                            i {
                                display: block;
                            }
                        }

                        &:hover {
                            background-color: var(--bg-light);
                            color: var(--theme-color);
                        }

                        img {
                            width: 25px;
                            height: auto;
                        }

                        span {
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-sm);
                        }

                        i {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

.search-container {
    position: relative;

    .wrapper {
        background-image: url('../images/banner.webp');
        background-size: cover;
        background-position: center;
        height: 400px;

        .content-body {
            width: 100%;
            height: 100%;
            padding-top: 100px;

            .title-content {
                margin-bottom: 20px;
                text-align: center;

                h1 {
                    font-size: var(--fs-xxl);
                    font-weight: var(--fw-md);
                    color: var(--bg-white);
                }
            }

            .search-content {
                position: relative;
                max-width: 1000px;
                margin: 0 auto;
                z-index: 100;

                .container-search {
                    .box-centent {
                        max-width: 1100px !important;
                        padding: 30px;
                        background-color: rgba(255, 255, 255, 0.84);

                        .form-search-trip {

                            .card-origin,
                            .card-destination,
                            .card-departure,
                            .card-return,
                            .card-passenger {
                                background-color: #fff;
                                height: 55px;
                            }

                            .card-button {
                                height: 55px;
                            }
                        }
                    }

                    @media (max-width: 576px) {
                        .box-centent {
                            padding: 15px;
                        }
                    }
                }
            }
        }

        @media (max-width: 1200px) {
            & {
                height: 100%;

                .content-body {
                    padding: 40px 20px;

                    .title-content {
                        h1 {
                            font-size: var(--fs-xl);
                        }
                    }

                    .search-content {
                        max-width: 100%;
                    }
                }
            }
        }

    }
}

.promotions-container,
.providers-container,
.popular-routes-container,
.travel-trip-container,
.popular-destinations-container,
.destination-accommodations-container {
    position: relative;
    padding: 40px 0;

    .container {
        max-width: 1200px;
        margin: 0 auto;

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;

            h2 {
                font-size: var(--fs-xxl);
                font-weight: var(--fw-md);
            }

            .more-link {
                a {
                    text-decoration: none;
                    color: var(--theme-color);
                    font-size: var(--fs-sm);
                    font-weight: var(--fw-sm);
                    opacity: 0.8;
                }
            }
        }

        .content {
            .swiper-slide {
                margin: 0 10px !important;
            }
        }
    }

    @media (max-width: 768px) {
        & {
            padding: 30px 0 20px 0;

            .container {
                .header {
                    h2 {
                        font-size: var(--fs-lg);
                    }
                }
            }
        }
    }
}

.promotions-container {
    .content {
        .card-news {
            background-color: var(--bg-white);
            border-radius: var(--rd-md);
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
            overflow: hidden;

            .image-cover {
                width: 100%;
                height: 200px;
                overflow: hidden;

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

            .card-detail {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 15px;

                .card-text {
                    height: 60px;
                    overflow: hidden;

                    h3 {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        margin: 0;
                    }
                }

                .card-cta {
                    width: 100%;

                    a {
                        text-decoration: none;
                        color: var(--theme-color);
                        background-color: var(--bg-white);
                        border: 1px solid var(--theme-color);
                        border-radius: var(--rd-sm);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);
                        padding: 5px 20px;
                        display: inline-block;
                        width: 100%;
                        text-align: center;

                        &:hover {
                            background-color: var(--theme-color);
                            color: var(--bg-white);
                        }
                    }
                }

            }

        }
    }

    @media (max-width: 768px) {
        & {
            .content {
                .card-news {
                    .image-cover {
                        height: 200px;
                    }

                    .card-detail {
                        .card-text {
                            height: 40px;
                            overflow: hidden;

                            h3 {
                                font-size: var(--fs-sm);
                                font-weight: var(--fw-md);
                                margin: 0;
                                text-overflow: ellipsis;
                                display: -webkit-box;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                max-width: 300px;
                                overflow: hidden;
                            }
                        }

                        .card-cta {
                            a {
                                padding: 5px 10px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.providers-container {

    .content {
        .swiper-slide {
            a {
                text-decoration: none;

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

.popular-routes-container {
    .content {
        .card-route {
            display: flex;
            flex-direction: column;
            background-color: var(--bg-white);
            border-radius: var(--rd-md);
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;

            .image-cover {
                width: 100%;
                height: 250px;
                overflow: hidden;
                border-top-left-radius: var(--rd-md);
                border-top-right-radius: var(--rd-md);

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

            .card-text {
                padding: 15px;

                h3 {
                    font-size: var(--fs-md);
                    font-weight: var(--fw-md);
                    margin: 0;
                }
            }

            .card-cta {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 0 15px 15px 15px;

                .price {
                    font-size: var(--fs-md);
                    font-weight: var(--fw-lg);
                    color: var(--theme-color);
                    margin: 0;
                }

                a {
                    text-decoration: none;
                    color: var(--theme-color);
                    background-color: var(--bg-white);
                    border: 1px solid var(--theme-color);
                    border-radius: var(--rd-sm);
                    font-size: var(--fs-sm);
                    font-weight: var(--fw-sm);
                    padding: 5px 10px;

                    &:hover {
                        background-color: var(--theme-color);
                        color: var(--bg-white);
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        & {
            .content {
                .card-route {
                    .image-cover {
                        height: 200px;
                    }
                }
            }
        }
    }
}

.travel-trip-container {
    .content {
        .card-trip {
            background-color: var(--bg-white);
            border-radius: var(--rd-md);
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
            overflow: hidden;

            .image-cover {
                width: 100%;
                height: 200px;
                overflow: hidden;

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

            .card-detail {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 15px;

                .card-text {
                    height: 40px;
                    overflow: hidden;

                    h3 {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        margin: 0;
                    }
                }

                .card-cta {
                    width: 100%;

                    a {
                        text-decoration: none;
                        color: var(--theme-color);
                        background-color: var(--bg-white);
                        border: 1px solid var(--theme-color);
                        border-radius: var(--rd-sm);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);
                        padding: 5px 20px;
                        display: inline-block;
                        width: 100%;
                        text-align: center;

                        &:hover {
                            background-color: var(--theme-color);
                            color: var(--bg-white);
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        & {
            .content {
                .card-trip {
                    .image-cover {
                        height: 200px;
                    }

                    .card-detail {
                        .card-text {
                            height: 30px;

                            h3 {
                                font-size: var(--fs-sm);
                                font-weight: var(--fw-md);
                                margin: 0;
                                text-overflow: ellipsis;
                                display: -webkit-box;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                max-width: 300px;
                                overflow: hidden;
                            }
                        }

                        .card-cta {
                            a {
                                padding: 5px 10px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.popular-destinations-container {
    .content {
        .destination-category {
            padding: 20px;
            margin-bottom: 0px;

            h3 {
                font-size: var(--fs-lg);
                font-weight: var(--fw-md);
                margin-bottom: 15px;
            }

            ul {
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    margin-bottom: 10px;

                    a {
                        text-decoration: none;
                        color: var(--text-color);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);

                        &:hover {
                            color: var(--theme-color);
                        }
                    }
                }
            }
        }

        @media (max-width: 768px) {
            & {
                .destination-category {
                    margin-bottom: 0px;
                    padding: 10px 0 0 0;

                    ul {
                        li {
                            a {
                                font-size: var(--fs-sm);
                            }
                        }
                    }
                }
            }
        }
    }
}

.about-description-container {
    position: relative;
    background-image: url('../images/shop/banner-shop.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 60px 0;

    .overlay-wrapper {
        position: absolute;
        background-color: #000000;
        opacity: 0.6;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;

        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 0 auto;
            text-align: left;
            max-width: 1200px;
            color: var(--bg-white);

            .description-text {
                display: flex;
                flex-direction: column;
                justify-content: center;

                h2 {
                    font-size: var(--fs-xxl);
                    font-weight: var(--fw-md);
                    margin-bottom: 15px;
                }

                p {
                    font-size: var(--fs-md);
                    font-weight: var(--fw-sm);
                    line-height: 1.6;
                    margin: 0;
                }

                .remark {
                    margin-top: 5px;
                    font-size: var(--fs-xxs);
                    font-weight: var(--fw-sm);
                    color: var(--bg-white);
                    opacity: 0.7;
                }
            }

            .highlight-features {
                ul {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin: 0;
                        padding: 15px 10px;
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        border: 1px solid var(--bg-light);
                        border-radius: var(--rd-sm);
                        box-shadow: var(--shadow-sm);
                        background-color: rgba(255, 255, 255, 0.1);
                        text-align: center;

                        strong {
                            font-size: var(--fs-xxl);
                            font-weight: var(--fw-bold);
                            color: var(--theme-color);
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        & {
            padding: 40px 0;

            .container {
                padding: 20px;

                .content {
                    grid-template-columns: 1fr;
                    max-width: 100%;

                    .description-text {
                        h2 {
                            font-size: var(--fs-xl);
                        }

                        p {
                            font-size: var(--fs-sm);
                        }

                        .remark {
                            font-size: var(--fs-xs);
                        }
                    }

                    .highlight-features {
                        ul {
                            grid-template-columns: repeat(2, 2fr);

                            li {
                                font-size: var(--fs-xs);

                                strong {
                                    font-size: var(--fs-lg);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 580px) {
        & {
            padding: 20px 0;

            .container {
                padding: 10px;

                .content {
                    .highlight-features {
                        ul {
                            li {
                                font-size: var(--fs-xs);
                                padding: 10px 5px;

                                strong {
                                    font-size: var(--fs-lg);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.destination-accommodations-container {
    .content {
        .accommodation-route {
            background-color: var(--bg-white);
            box-shadow: var(--shadow-sm);
            padding: 20px;
            margin-bottom: 30px;

            h3 {
                font-size: var(--fs-lg);
                font-weight: var(--fw-md);
                margin-bottom: 15px;
            }

            ul {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    margin-bottom: 10px;

                    a {
                        text-decoration: none;
                        color: var(--text-color);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);

                        &:hover {
                            color: var(--theme-color);
                        }
                    }
                }
            }
        }
    }
}

.download-app-section {
    padding: 40px 0;

    .container {
        background-image: url('../images/download/app-download-bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: var(--rd-lg);
        box-shadow: var(--shadow-md);
        padding: 0;
        margin: 0 auto;
        max-width: 1200px;

        .content {
            display: grid;
            grid-template-columns: auto 1fr;
            padding: 20px 0 0 0;
            height: 400px;
            width: 100%;
            max-width: 1024px;
            margin: 0 auto;

            .content-download-app {
                display: flex;
                flex-direction: column;
                justify-content: center;

                .text-download-app {
                    h2 {
                        font-size: 36px;
                        font-weight: var(--fw-md);
                        color: var(--bg-white);
                        margin-bottom: 15px;
                    }

                    p {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-sm);
                        color: var(--bg-white);
                        line-height: 1.6;
                        margin: 0 0 20px 0;
                    }
                }

                .download-app-details {
                    display: flex;
                    flex-direction: row;
                    gap: 15px;

                    .qr-code-download {
                        img {
                            /* height: 150px; */
                            height: 100%;
                            width: auto;
                        }
                    }

                    .app-download-info {
                        display: grid;
                        grid-template-columns: 1fr;

                        .download-stats {
                            display: flex;
                            flex-direction: row;
                            justify-content: flex-start;
                            gap: 10px;
                            margin-bottom: 15px;

                            .stat-item {
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;
                                text-align: center;
                                gap: 0px;

                                .stat-value {
                                    font-size: var(--fs-xl);
                                    font-weight: var(--fw-bold);
                                    color: var(--bg-white);
                                }

                                .stat-label {
                                    font-size: var(--fs-sm);
                                    font-weight: var(--fw-sm);
                                    color: var(--bg-white);
                                }
                            }

                            .line-item {
                                width: 1px;
                                background-color: var(--bg-white);
                                opacity: 0.5;
                                margin: 0 10px;
                            }
                        }

                        .app-download-links {
                            display: flex;
                            flex-direction: row;
                            justify-content: flex-start;
                            gap: 10px;

                            a {
                                display: inline-block;
                                text-decoration: none;
                                transition: transform 0.2s ease-in-out;

                                img {
                                    height: 35px;
                                    width: auto;
                                }

                                &:hover {
                                    transform: scale(1.05);
                                }
                            }
                        }

                        span {
                            margin-top: 10px;
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-sm);
                            color: var(--bg-white);
                        }
                    }
                }
            }

            .image-cover {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;

                img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    height: auto;
                    width: 333px;
                }
            }

        }

        @media (max-width: 1200px) {
            & {
                max-width: 100%;

                .content {
                    height: auto;
                    max-width: 100%;
                    padding: 20px 20px 0px 20px;
                    gap: 20px;

                    .image-cover {
                        img {
                            width: 250px;
                        }
                    }

                    .content-download-app {
                        padding-bottom: 20px;

                        .text-download-app {
                            h2 {
                                font-size: var(--fs-xl);
                            }

                            p {
                                font-size: var(--fs-sm);
                            }
                        }
                    }
                }
            }
        }

        @media (max-width: 1024px) {
            & {
                margin: 0 20px;
                padding: 0 20px;
                max-width: calc(100% - 40px);

                .content {
                    grid-template-columns: 1fr;
                    height: auto;
                    max-width: 100%;
                    padding: 20px 20px 0px 20px;
                    gap: 20px;

                    .image-cover {
                        display: none;
                    }
                }
            }
        }

        @media (max-width: 650px) {
            & {
                .content {
                    .content-download-app {
                        .text-download-app {
                            h2 {
                                font-size: var(--fs-lg);
                            }

                            p {
                                font-size: var(--fs-xs);
                            }
                        }

                        .download-app-details {
                            .qr-code-download {
                                img {
                                    height: 120px;
                                    width: auto;
                                }
                            }

                            .app-download-info {
                                .download-stats {
                                    .stat-item {
                                        .stat-value {
                                            font-size: var(--fs-lg);
                                        }

                                        .stat-label {
                                            font-size: var(--fs-sm);
                                        }
                                    }
                                }

                                .app-download-links {
                                    display: grid;
                                    grid-template-columns: auto auto;

                                    a {
                                        img {
                                            width: 120px;
                                            height: auto;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        @media (max-width: 500px) {
            & {
                .content {
                    .content-download-app {
                        .download-app-details {
                            flex-direction: column;
                            align-items: center;
                            text-align: center;
                            gap: 20px;

                            .qr-code-download {
                                img {
                                    height: 100px;
                                    width: auto;
                                }
                            }

                            .app-download-info {
                                .download-stats {
                                    flex-direction: row;
                                    justify-content: center;

                                    .line-item {
                                        display: block;
                                    }
                                }

                                .app-download-links {
                                    display: grid;
                                    grid-template-columns: auto auto auto;
                                    justify-items: center;
                                    text-align: center;

                                    a {
                                        img {
                                            width: 100%;
                                            height: auto;
                                        }
                                    }
                                }

                                span {
                                    font-size: var(--fs-xs);
                                }
                            }
                        }
                    }
                }
            }
        }

        @media (max-width: 390px) {
            & {
                .content {
                    display: block;
                    padding: 20px 10px 0px 10px;

                    .content-download-app {
                        .text-download-app {
                            h2 {
                                font-size: var(--fs-md);
                            }

                            p {
                                font-size: var(--fs-xs);
                            }
                        }

                        .download-app-details {
                            gap: 10px;

                            .qr-code-download {
                                img {
                                    height: 100px;
                                    width: auto;
                                }
                            }

                            .app-download-info {
                                .download-stats {
                                    .stat-item {
                                        .stat-value {
                                            font-size: var(--fs-md);
                                        }

                                        .stat-label {
                                            font-size: var(--fs-xs);
                                        }
                                    }
                                }

                                .app-download-links {
                                    a {
                                        img {
                                            width: 100%;
                                            height: auto;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

    }
}

.footer-site {
    background-color: var(--bg-light);
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 0 0;
    font-size: var(--fs-sm);
    color: var(--text-color);

    .container-fluid {
        max-width: 1200px;
        margin: 0 auto;

        .wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;

            .branding-footer {
                .company-info {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;

                    .logo-link {
                        display: inline-block;
                        margin-bottom: 10px;

                        img {
                            width: 150px;
                            height: auto;
                        }
                    }

                    .address {
                        font-size: var(--fs-md);
                        line-height: 1.6;
                        margin: 0;

                        a {
                            text-decoration: none;
                            color: var(--text-color);
                        }
                    }
                }

                .company-call {
                    margin-top: 15px;
                    font-size: var(--fs-lg);

                    a {
                        text-decoration: none;
                        color: var(--text-color);
                    }
                }

                .company-social {
                    margin-top: 15px;

                    ul {
                        list-style: none;
                        display: flex;
                        gap: 10px;
                        padding: 0;
                        margin: 0;

                        li {
                            a {
                                display: inline-block;
                                transition: transform 0.3s ease;

                                img {
                                    width: 26px;
                                    height: 26px;
                                }

                                &:hover {
                                    transform: scale(1.1);
                                }
                            }
                        }
                    }
                }
            }

            .footer-menus {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;

                .footer-menu {
                    flex: 1 1 120px;

                    h3 {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        margin-bottom: 10px;
                    }

                    ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;

                        li {
                            margin-bottom: 8px;

                            a {
                                text-decoration: none;
                                color: var(--text-color);

                                &:hover {
                                    color: var(--theme-color);
                                }
                            }
                        }
                    }
                }
            }

            .footer-extras {
                display: flex;
                flex-direction: column;
                gap: 20px;

                .download-app {
                    h3 {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        margin-bottom: 10px;
                    }

                    .store-links {
                        display: flex;
                        gap: 10px;

                        .store-link {
                            a {
                                display: inline-block;
                                transition: transform 0.3s ease;

                                img {
                                    height: 35px;
                                    width: auto;
                                }

                                &:hover {
                                    transform: scale(1.05);
                                }
                            }
                        }
                    }
                }

                .payment-methods {
                    h3 {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-md);
                        margin-bottom: 10px;
                    }

                    .payment-icons {
                        display: flex;
                        gap: 10px;
                        flex-wrap: wrap;

                        .payment-icon {
                            img {
                                height: 25px;
                                width: auto;
                            }
                        }
                    }
                }
            }
        }

        .container-copyright {
            .wrap {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 20px;
                border-top: 1px solid #e0e0e0;
                margin-top: 20px;

                .copyright {
                    font-size: var(--fs-sm);

                    a {
                        text-decoration: none;
                        color: var(--theme-color);
                        margin: 0 5px;
                    }
                }

                .policies {
                    a {
                        text-decoration: none;
                        color: var(--text-color);
                        margin-left: 15px;

                        &:first-child {
                            margin-left: 0;
                        }

                        &:hover {
                            color: var(--theme-color);
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        & {
            padding: 30px 0 10px 0;

            .container-fluid {
                max-width: 100%;
                padding: 0 20px;

                .wrapper {
                    grid-template-columns: 1fr;
                    gap: 20px;

                    .branding-footer {
                        .company-info {
                            .logo-link {
                                img {
                                    width: 120px;
                                }
                            }
                        }
                    }

                    .footer-menus {
                        flex-wrap: nowrap;
                    }

                    .footer-extras {
                        flex-direction: row;
                        flex-wrap: wrap;
                        gap: 15px;

                        .download-app,
                        .payment-methods {
                            flex: 1 1 45%;
                        }

                        .download-app {
                            .store-links {
                                .store-link {
                                    a {
                                        img {
                                            height: 30px;
                                        }
                                    }
                                }
                            }
                        }

                        .payment-methods {
                            .payment-icons {
                                .payment-icon {
                                    img {
                                        height: 25px;
                                    }
                                }
                            }
                        }
                    }
                }

                .container-copyright {
                    .wrap {
                        flex-direction: row;
                        flex-wrap: wrap;
                        gap: 10px;
                        padding: 10px 0;

                        .copyright,
                        .policies {
                            font-size: var(--fs-xs);
                        }

                        .policies {
                            a {
                                margin-left: 10px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 600px) {
        & {
            .container-fluid {
                .wrapper {
                    .footer-extras {
                        flex-direction: column;
                        flex-wrap: nowrap;
                        gap: 20px;
                    }
                }

                .container-copyright {
                    .wrap {
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                    }
                }
            }
        }
    }

    @media (max-width: 530px) {
        & {
            .container-fluid {
                padding: 0 10px;

                .wrapper {
                    .branding-footer {
                        .company-info {
                            .logo-link {
                                img {
                                    width: 100px;
                                }
                            }

                            .address {
                                font-size: var(--fs-sm);
                            }
                        }

                        .company-call {
                            font-size: var(--fs-md);
                        }
                    }

                    .footer-menus {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 20px;

                        .footer-menu {
                            h3 {
                                font-size: var(--fs-sm);
                            }

                            ul {
                                li {
                                    a {
                                        font-size: var(--fs-sm);
                                    }
                                }
                            }
                        }
                    }

                    .footer-extras {
                        .download-app {
                            h3 {
                                font-size: var(--fs-sm);
                            }

                            .store-links {
                                .store-link {
                                    a {
                                        img {
                                            height: 30px;
                                        }
                                    }
                                }
                            }
                        }

                        .payment-methods {
                            h3 {
                                font-size: var(--fs-sm);
                            }

                            .payment-icons {
                                .payment-icon {
                                    img {
                                        height: 25px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 400px) {
        & {
            .container-fluid {
                .wrapper {
                    .footer-menus {
                        grid-template-columns: 1fr 1fr;

                        .footer-menu {
                            h3 {
                                font-size: var(--fs-sm);
                            }

                            ul {
                                li {
                                    a {
                                        font-size: var(--fs-sm);
                                    }
                                }
                            }
                        }
                    }
                }

                .container-copyright {
                    .wrap {

                        .copyright,
                        .policies {
                            font-size: var(--fs-xs);
                        }

                        .policies {
                            a {
                                margin-left: 5px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.agreement-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #2b2b2be5;

    .wrapper {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
        padding: 5px;

        .body {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 10px;
            line-height: 1.5;

            p {
                padding: 0 10px;
                margin: 0;
                text-align: center;

                span {
                    color: #f9f9f9;
                    margin: 0;
                    padding: 0;
                    font-size: var(--fs-xs);
                }

                a {
                    color: var(--theme-color);
                    text-decoration: none;
                    font-size: var(--fs-xs);
                    font-weight: var(--fw-md);
                }
            }
        }

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

            .btn-close-agreemen {
                display: flex;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                color: #f9f9f9;
                font-size: var(--fs-xxl);
                padding: 0px 10px;
                cursor: pointer;
            }
        }

        @media (max-width: 600px) {
            & {
                .body {
                    justify-content: flex-start;
                    align-items: flex-start;

                    p {
                        text-align: left;

                        font-size: var(--fs-xxs);

                        span {
                            font-size: var(--fs-xxs);
                        }

                        a {
                            font-size: var(--fs-xxs);
                        }
                    }
                }
            }
        }

    }
}

.wrapper-page {
    padding: 40px 0;

    .container {
        max-width: 1200px;
        margin: 0 auto;

        @media (max-width: 1200px) {
            & {
                padding: 20px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            & {
                padding: 10px;
            }
        }

        .header {
            margin-bottom: 30px;

            h2 {
                text-align: center;
                font-size: var(--fs-xxl);
                font-weight: var(--fw-md);
                color: var(--text-color);
                margin: 0 0 10px 0;

                @media (max-width: 768px) {
                    & {
                        font-size: var(--fs-xl);
                    }
                }
            }

            .short-link {
                display: flex;
                justify-content: center;

                ol {
                    list-style: none;
                    display: flex;
                    flex-direction: row;
                    gap: 5px;
                    padding: 0;
                    margin: 0;

                    li {
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-sm);
                        color: var(--text-color);

                        &.active {
                            font-weight: var(--fw-md);
                            color: var(--theme-color);
                        }

                        &.link-main {
                            a {
                                text-decoration: none;
                                color: var(--text-color);

                                &:hover {
                                    color: var(--theme-color);
                                }
                            }
                        }

                        &.separator {
                            margin: 0 5px;
                            color: var(--text-color);
                        }

                        &.link-current {
                            font-weight: var(--fw-md);
                            color: var(--theme-color);
                        }
                    }

                    @media (max-width: 768px) {
                        & {
                            align-items: center;
                            gap: 3px;

                            li {
                                font-size: var(--fs-xs);

                                &.active,
                                &.link-main,
                                &.link-current {
                                    font-size: var(--fs-sm);
                                }

                                &.link-current {
                                    max-width: 200px;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                            }
                        }
                    }

                    @media (max-width: 500px) {
                        & {
                            gap: 2px;

                            li {

                                &.active,
                                &.link-main,
                                &.link-current {
                                    font-size: var(--fs-sm);
                                }

                                &.link-main,
                                &.link-current {
                                    max-width: 100px;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                            }
                        }
                    }

                    @media (max-width: 350px) {
                        & {
                            gap: 1px;

                            li {

                                &.active,
                                &.link-main,
                                &.link-current {
                                    font-size: var(--fs-xs);
                                }

                                &.link-main,
                                &.link-current {
                                    max-width: 80px;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                            }
                        }
                    }
                }
            }
        }

        .content {

            &.providers-page {
                .provider-list {
                    ul {
                        list-style: none;
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 20px;
                        padding: 0;

                        li {
                            a {
                                display: block;
                                padding: 10px 20px;
                                border: 1px solid var(--border-color);
                                border-radius: var(--rd-md);
                                font-size: var(--fs-md);
                                font-weight: var(--fw-md);
                                color: var(--text-color);
                                text-decoration: none;

                                img {
                                    width: 40px;
                                    height: auto;
                                    margin-right: 10px;
                                }

                                &:hover {
                                    color: var(--theme-color);
                                    border-color: var(--theme-color);
                                    background-color: var(--bg-light);
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    & {
                        .provider-list {
                            ul {
                                grid-template-columns: repeat(2, 1fr);
                                gap: 15px;

                                li {
                                    a {
                                        font-size: var(--fs-sm);
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 500px) {
                    & {
                        .provider-list {
                            ul {
                                grid-template-columns: 1fr;
                                gap: 15px;
                            }
                        }
                    }
                }
            }

            &.service-points-page {
                .service-point-list {
                    ul.region-list {
                        list-style: none;
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        padding: 0;

                        li.region-item {

                            h3 {
                                font-size: var(--fs-lg);
                                font-weight: var(--fw-md);
                                color: var(--text-color);
                                margin-bottom: 10px;
                                border-bottom: 1px solid var(--border-color);
                                padding-bottom: 5px;
                            }

                            ul.province-list {
                                list-style: none;
                                display: grid;
                                grid-template-columns: repeat(4, 1fr);
                                gap: 10px;
                                padding: 10px;

                                li.province-item {
                                    a {
                                        display: flex;
                                        justify-content: space-between;
                                        align-items: center;
                                        padding: 15px 20px;
                                        border: 1px solid var(--border-color);
                                        border-radius: var(--rd-md);
                                        text-decoration: none;
                                        color: var(--text-color);

                                        &:hover {
                                            background-color: var(--bg-light);
                                            border-color: var(--theme-color);
                                            color: var(--theme-color);
                                        }

                                        strong {
                                            font-size: var(--fs-md);
                                            font-weight: var(--fw-md);
                                        }

                                        i {
                                            font-size: var(--fs-md);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    & {
                        .service-point-list {
                            ul.region-list {
                                li.region-item {
                                    ul.province-list {
                                        grid-template-columns: repeat(2, 1fr);
                                        gap: 10px;
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 500px) {
                    & {
                        .service-point-list {
                            ul.region-list {
                                li.region-item {
                                    ul.province-list {
                                        grid-template-columns: 1fr;
                                        gap: 10px;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.service-points-province-page {
                .service-point-list {
                    ul.province-list {
                        list-style: none;
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 10px;
                        padding: 10px;

                        li.province-item {
                            position: relative;

                            a {
                                display: flex;
                                align-items: center;
                                border: 1px solid var(--border-color);
                                color: var(--text-color);
                                padding: 15px;
                                margin: 10px 0;
                                border-radius: 5px;
                                cursor: pointer;
                                text-decoration: none;

                                &:hover {
                                    background-color: var(--bg-white);
                                    border-color: var(--theme-color);
                                    color: var(--theme-color);
                                }

                                strong {
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-md);
                                }

                                i {
                                    margin-left: auto;
                                    float: right;
                                    font-size: var(--fs-md);
                                }
                            }

                            &.disabled {
                                a {
                                    pointer-events: none;
                                    color: var(--text-muted);
                                    background-color: var(--bg-white);
                                    border-color: var(--border-color);
                                    opacity: 0.6;
                                }
                            }
                        }
                    }

                    @media (max-width: 1200px) {
                        & {
                            ul.province-list {
                                grid-template-columns: repeat(2, 1fr);
                                gap: 10px;

                                li.province-item {
                                    a {
                                        font-size: var(--fs-sm);
                                    }
                                }
                            }
                        }
                    }

                    @media (max-width: 700px) {
                        & {
                            ul.province-list {
                                grid-template-columns: 1fr;
                                gap: 10px;
                            }
                        }
                    }
                }
            }

            &.providers-detail-page,
            &.service-points-detail-page {
                .content-detail {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;

                    .detail-img {
                        text-align: center;
                        margin-bottom: 0px;

                        img {
                            max-width: 100%;
                            height: auto;
                            border-radius: var(--rd-sm);
                        }
                    }

                    .detail-text {
                        padding: 5px 20px;
                        font-size: var(--fs-md);
                        color: var(--text-color);
                        line-height: 1.6;

                        h1,
                        h2,
                        h3,
                        h4,
                        h5,
                        h6 {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-md);
                        }

                        p,
                        span {
                            font-size: var(--fs-md) !important;
                            margin: 15px 0;

                            em {
                                span {
                                    font-size: var(--fs-sm) !important;
                                    font-style: italic;
                                }
                            }
                        }

                        strong,
                        b {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-md);
                        }

                        a {
                            color: var(--theme-color);
                            text-decoration: none;
                            margin: 0 2px;
                        }

                        img {
                            max-width: 100%;
                            height: auto;
                            border-radius: var(--rd-sm);
                        }

                        ul,
                        ol {
                            list-style: none;
                            padding-left: 20px;
                            margin: 10px 0;
                        }

                        table {
                            border-radius: 5px;
                            font-size: 14px;
                            border-collapse: separate;
                            border-spacing: 0;
                            border: 1px solid var(--border-color);

                            &#timetable {
                                tr {
                                    &:first-child {
                                        background-color: #eeeeee;
                                    }
                                }
                            }

                            tr {
                                border: 1px solid var(--border-color);

                                p {
                                    margin-top: 10px;
                                    margin-bottom: 10px;

                                    span {
                                        font-size: var(--fs-sm) !important;

                                        strong,
                                        b,
                                        a {
                                            font-size: var(--fs-sm) !important;
                                        }
                                    }
                                }

                                a {
                                    font-size: var(--fs-md);
                                    text-decoration: none;
                                    color: var(--text-color);
                                }
                            }

                            td {
                                border: 1px solid var(--border-color);
                            }
                        }
                    }

                    .detail-empty {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                        padding: 50px 0;

                        img {
                            width: 150px;
                            height: auto;
                            margin-bottom: 20px;
                        }

                        h3 {
                            font-size: var(--fs-lg);
                            font-weight: var(--fw-md);
                            color: var(--text-color);
                            margin-bottom: 10px;
                        }
                    }
                }
            }

            &.blog-page {
                .tab-category {
                    border-bottom: 1px solid var(--border-color);
                    padding-bottom: 10px;
                    margin-bottom: 30px;

                    ul {
                        list-style: none;
                        display: flex;
                        flex-direction: row;
                        gap: 10px;
                        padding: 0;
                        margin: 0;

                        li {
                            a {
                                display: block;
                                text-decoration: none;
                                font-size: var(--fs-md);
                                font-weight: var(--fw-md);
                                color: var(--theme-color);
                                background-color: var(--bg-white);
                                border-radius: var(--rd-md);
                                border: 1px solid var(--theme-color);
                                padding: 5px 10px;

                                &.active,
                                &:hover {
                                    background-color: var(--theme-color);
                                    color: var(--bg-white);
                                }
                            }
                        }
                    }
                }

                .blog-content {
                    .blog-list {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 20px;

                        .blog-item {
                            border: 1px solid var(--border-color);
                            border-radius: var(--rd-md);
                            overflow: hidden;
                            background-color: var(--bg-light);

                            a {
                                text-decoration: none;
                                color: var(--text-color);

                                .blog-img {
                                    width: 100%;
                                    height: 250px;
                                    overflow: hidden;

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

                                .blog-info {
                                    padding: 5px 15px 15px 15px;


                                    .blog-meta {
                                        display: flex;
                                        justify-content: space-between;
                                        align-items: center;
                                        font-size: var(--fs-xxs);
                                        color: var(--text-muted);
                                    }

                                    .blog-title {
                                        font-size: var(--fs-lg);
                                        font-weight: var(--fw-md);
                                        margin: 15px 0 0 0;
                                    }
                                }

                                .btn-cta {
                                    display: flex;
                                    justify-content: center;
                                    padding: 10px 0;

                                    button {
                                        text-decoration: none;
                                        border: 1px solid var(--theme-color);
                                        padding: 5px 15px;
                                        text-align: center;
                                        color: var(--theme-color);
                                        border-radius: var(--rd-sm);
                                        background-color: var(--bg-white);
                                        font-size: var(--fs-md);
                                        font-weight: var(--fw-md);

                                        &:hover {
                                            background-color: var(--theme-color);
                                            color: var(--bg-white);
                                        }
                                    }
                                }
                            }
                        }
                    }

                    .pagination {
                        display: flex;
                        justify-content: center;

                        ul {
                            list-style: none;
                            display: flex;
                            gap: 10px;
                            padding: 0;
                            margin: 30px 0 0 0;

                            li {
                                a {
                                    display: block;
                                    text-decoration: none;
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-md);
                                    color: var(--text-color);
                                    border: 1px solid var(--border-color);
                                    padding: 5px 10px;
                                    border-radius: var(--rd-sm);
                                    background-color: var(--bg-white);
                                }

                                &.active {
                                    a {
                                        color: var(--theme-color);
                                        border-color: var(--theme-color);
                                    }
                                }

                            }
                        }
                    }
                }

                @media (max-width: 992px) {
                    & {
                        .blog-content {
                            .blog-list {
                                grid-template-columns: repeat(2, 1fr);
                                gap: 15px;
                            }
                        }
                    }
                }

                @media (max-width: 600px) {
                    & {
                        .tab-category {
                            ul {
                                flex-wrap: wrap;
                                gap: 8px;

                                li {
                                    a {
                                        font-size: var(--fs-sm);
                                        padding: 5px 8px;
                                    }
                                }
                            }
                        }

                        .blog-content {
                            .blog-list {
                                grid-template-columns: 1fr;
                                gap: 15px;
                            }
                        }
                    }
                }

                @media (max-width: 400px) {
                    & {
                        .tab-category {
                            ul {
                                li {
                                    a {
                                        font-size: var(--fs-xs);
                                        padding: 4px 6px;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.blog-detail-page {
                .blog-content {
                    margin-top: 20px;

                    .content-detail {
                        .detail-img {
                            text-align: center;
                            margin-bottom: 20px;

                            img {
                                max-width: 100%;
                                height: auto;
                                border-radius: var(--rd-sm);
                            }
                        }

                        .detail-text {
                            font-size: var(--fs-md);
                            color: var(--text-color);
                            line-height: 1.6;

                            h1,
                            h2,
                            h3,
                            h4,
                            h5,
                            h6 {
                                font-size: var(--fs-md);
                                font-weight: var(--fw-md);
                            }

                            p,
                            span {
                                font-size: var(--fs-md);
                                margin: 10px 0;
                            }

                            strong,
                            b {
                                font-size: var(--fs-md);
                                font-weight: var(--fw-md);
                            }

                            a {
                                color: var(--theme-color);
                                text-decoration: none;
                                margin: 0 2px;
                            }

                            img {
                                max-width: 100%;
                                height: auto;
                                border-radius: var(--rd-sm);
                            }

                            ul,
                            ol {
                                list-style: none;
                                padding-left: 20px;
                                margin: 10px 0;
                            }
                        }
                    }

                    .content-category {
                        margin-top: 20px;

                        span {
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-sm);
                        }
                    }

                    .content-meta {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                        margin-top: 30px;

                        .meta-item {
                            font-size: var(--fs-sm);
                            color: var(--text-muted);

                            span {
                                font-weight: var(--fw-md);
                            }

                            i {
                                margin-left: 5px;
                                color: var(--text-muted);
                            }

                            a {
                                text-decoration: none;
                                font-size: var(--fs-sm);
                                font-weight: var(--fw-md);
                                border: 1px solid var(--theme-color);
                                color: var(--theme-color);
                                border-radius: var(--rd-sm);
                                padding: 5px 10px;
                                margin-left: 5px;

                                &:hover {
                                    background-color: var(--theme-color);
                                    color: var(--bg-white);
                                }
                            }
                        }
                    }
                }
            }

            &.contact-us-page {
                .wrap {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 30px;
                    margin: 50px 0;

                    .contact-info {
                        padding-right: 20px;

                        ul {
                            list-style: none;
                            padding: 0;
                            margin: 0 0 30px 0;

                            li {
                                display: flex;
                                align-items: center;
                                gap: 15px;
                                margin-bottom: 30px;

                                .img-info {
                                    width: 40px;
                                    height: 40px;

                                    img {
                                        width: 100%;
                                        height: auto;
                                    }
                                }

                                .text-info {
                                    h3 {
                                        font-size: var(--fs-md);
                                        font-weight: var(--fw-md);
                                        color: var(--text-color);
                                        margin: 0 0 5px 0;
                                    }

                                    a,
                                    span {
                                        font-size: var(--fs-sm);
                                        font-weight: var(--fw-sm);
                                        color: var(--text-color);
                                        text-decoration: none;

                                        &:hover {
                                            color: var(--theme-color);
                                        }
                                    }
                                }
                            }
                        }

                        .map-location {
                            iframe {
                                width: 100%;
                                height: 350px;
                                border: none;
                                border-radius: var(--rd-md);
                            }
                        }
                    }

                    .contact-form {
                        padding: 0 30px;

                        .form-wrapper {
                            display: flex;
                            flex-direction: column;
                            gap: 20px;
                            background-color: var(--bg-white);
                            border: 1px solid var(--border-color);
                            border-radius: var(--rd-md);
                            padding: 30px 30px 10px 30px;
                            box-shadow: var(--box-shadow);

                            h3 {
                                font-size: var(--fs-xl);
                                font-weight: var(--fw-md);
                                color: var(--text-color);
                                margin-bottom: 20px;
                                text-align: center;
                            }

                            form {
                                .form-floating {

                                    input,
                                    textarea {
                                        font-size: var(--fs-sm);
                                    }

                                    textarea {
                                        height: 100px;
                                        resize: vertical;
                                    }

                                    label {
                                        font-size: var(--fs-sm);
                                    }
                                }

                                .company-form {
                                    margin-bottom: 15px;
                                    position: absolute;
                                    left: -9999px;
                                    top: -9999px;
                                    height: 0;
                                    overflow: hidden;
                                }

                                .form-check {
                                    input[type="checkbox"] {
                                        width: 18px;
                                        height: 18px;
                                        cursor: pointer;

                                        &:checked {
                                            background-color: var(--theme-color);
                                            border-color: var(--theme-color);
                                            box-shadow: none;
                                            outline: none;
                                        }
                                    }

                                    label {
                                        font-size: var(--fs-sm);
                                        font-weight: var(--fw-sm);
                                        color: var(--text-color);
                                        cursor: pointer;
                                    }
                                }

                                .form-control {
                                    &:focus {
                                        border-color: var(--border-color);
                                        box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
                                    }
                                }

                                .btn-contact {
                                    background-color: var(--theme-color);
                                    color: #fff;
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-md);
                                    padding: 10px 40px;
                                    border: none;
                                    border-radius: var(--rd-md);
                                    cursor: pointer;

                                    &:hover {
                                        opacity: 0.9;
                                    }

                                    &.btn-sending {
                                        pointer-events: none;
                                        opacity: 0.7;
                                    }
                                }
                            }
                        }
                    }
                }

                .modalContact {
                    .contact-message {
                        font-size: var(--fs-md);
                        color: var(--text-color);
                        text-align: center;
                        padding: 20px 30px;

                        p {
                            margin: 0;
                        }
                    }
                }

                @media (max-width: 1200px) {
                    .wrap {
                        grid-template-columns: 1fr;
                        padding: 0 20px;

                        .contact-info {
                            padding-right: 0;
                        }

                        .contact-form {
                            padding: 0;

                            .form-wrapper {
                                padding: 20px 20px 10px 20px;
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    .wrap {
                        gap: 20px;

                        .contact-info {
                            ul {
                                li {
                                    display: grid;
                                    grid-template-columns: auto 1fr;
                                    gap: 15px;
                                    align-items: start;

                                    .img-info {
                                        width: 30px;
                                        height: 30px;
                                    }
                                }
                            }

                            .map-location {
                                iframe {
                                    height: 250px;
                                }
                            }
                        }

                        .contact-form {
                            .form-wrapper {
                                h3 {
                                    font-size: var(--fs-lg);
                                }
                            }
                        }
                    }
                }

                @media (max-width: 480px) {
                    .wrap {
                        padding: 0 0px;

                        .contact-info {
                            ul {
                                li {
                                    gap: 10px;

                                    .img-info {
                                        width: 25px;
                                        height: 25px;
                                    }

                                    .text-info {
                                        h3 {
                                            font-size: var(--fs-sm);
                                        }

                                        a,
                                        span {
                                            font-size: var(--fs-xs);
                                        }
                                    }
                                }
                            }
                        }

                        .contact-form {
                            .form-wrapper {
                                h3 {
                                    font-size: var(--fs-md);
                                    margin-bottom: 5px;
                                }

                                form {
                                    .btn-contact {
                                        font-size: var(--fs-sm);
                                        padding: 8px 30px;
                                    }
                                }
                            }
                        }
                    }
                }

            }

            &.ourstory-page {
                .ourstory-content {
                    margin: 50px 0;

                    .identity-section {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 20px;
                        margin-bottom: 30px;

                        .vision,
                        .mission {
                            background-color: var(--bg-while);
                            border: 1px solid var(--border-color);
                            border-radius: var(--rd-sm);
                            padding: 20px;
                            width: 100%;
                            box-shadow: var(--shadow-sm);
                            text-align: center;

                            h3 {
                                font-size: var(--fs-xl);
                                font-weight: var(--fw-lg);
                                color: var(--text-color);
                                margin-bottom: 10px;
                            }

                            p {
                                font-size: var(--fs-lg);
                                font-weight: var(--fw-sm);
                                color: var(--text-color);
                                line-height: 1.6;
                            }
                        }
                    }

                    .image-section {
                        margin-bottom: 30px;
                        text-align: center;

                        img {
                            max-width: 100%;
                            width: 100%;
                            height: 500px;
                            overflow: hidden;
                            object-fit: cover;
                            object-position: top;
                            border-radius: var(--rd-md);
                            box-shadow: var(--shadow-sm);
                        }
                    }

                    .content-section {
                        margin-bottom: 30px;

                        p {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-sm);
                            color: var(--text-color);
                            line-height: 1.6;
                            text-indent: 50px;

                            b {
                                font-weight: var(--fw-lg);
                            }
                        }
                    }

                    .gallery-section {
                        .gallery-grid {
                            display: grid;
                            grid-template-columns: repeat(4, 1fr);
                            gap: 15px;

                            .gallery-item {
                                img {
                                    width: 100%;
                                    height: auto;
                                    border-radius: var(--rd-sm);
                                    box-shadow: var(--shadow-sm);
                                    transition: transform 0.3s ease;
                                }

                                &:hover img {
                                    transform: scale(1.05);
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    & {
                        .ourstory-content {
                            .identity-section {
                                flex-direction: column;

                                .vision,
                                .mission {
                                    width: 100%;
                                    text-align: start;
                                    border: 0;
                                    box-shadow: none;
                                    padding: 0;
                                    margin-bottom: 0px;
                                    gap: 0;
                                    display: grid;
                                    grid-template-columns: auto 1fr;

                                    h3 {
                                        font-size: var(--fs-md);
                                        margin-right: 10px;
                                        margin-bottom: 0;
                                        margin-top: 3px;
                                        width: 65px;
                                    }

                                    p {
                                        font-size: var(--fs-md);
                                        margin: 0;
                                    }
                                }
                            }

                            .gallery-section {
                                .gallery-grid {
                                    grid-template-columns: repeat(2, 1fr);
                                }
                            }
                        }
                    }
                }

                @media (max-width: 550px) {
                    & {
                        .ourstory-content {
                            .identity-section {

                                .vision,
                                .mission {

                                    h3 {
                                        font-size: var(--fs-sm);
                                        width: 55px;
                                    }

                                    p {
                                        font-size: var(--fs-sm);
                                    }
                                }
                            }

                            .image-section {
                                img {
                                    height: auto;
                                }
                            }

                            .content-section {
                                p {
                                    font-size: var(--fs-sm);
                                    text-indent: 0;
                                }
                            }

                            .gallery-section {
                                .gallery-grid {
                                    grid-template-columns: 1fr;
                                }
                            }
                        }
                    }
                }
            }

            &.terms-condition-page,
            &.privacy-policy-page,
            &.cookie-policy-page {
                .content-container {
                    .text-detail {
                        margin-bottom: 30px;

                        h2,
                        h3,
                        h4 {
                            font-size: var(--fs-lg);
                            font-weight: var(--fw-md);
                            color: var(--text-color);
                            margin-bottom: 15px;
                        }

                        p {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-sm);
                            color: var(--text-color);
                            line-height: 1.8;
                            text-indent: 50px;
                            margin-bottom: 15px;
                        }

                        a {
                            text-decoration: none;
                            color: var(--theme-color);
                            margin: 0 3px;
                        }

                        ul.list-1 {
                            list-style: none;
                            padding-left: 20px;
                            margin-bottom: 15px;

                            li {
                                font-size: var(--fs-md);
                                font-weight: var(--fw-sm);
                                color: var(--text-color);
                                line-height: 1.8;
                                margin-bottom: 10px;
                            }

                            ul.list-2 {
                                list-style: none;
                                padding-left: 20px;
                                margin-top: 10px;

                                li {
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-sm);
                                    color: var(--text-color);
                                    line-height: 1.8;
                                    margin-bottom: 10px;
                                }
                            }
                        }
                    }

                    @media screen and (max-width: 767px) {
                        & {
                            .text-detail {

                                h2,
                                h3,
                                h4 {
                                    font-size: var(--fs-md);
                                }

                                p,
                                ul.list-1 li,
                                ul.list-2 li {
                                    font-size: var(--fs-sm);
                                }
                            }
                        }
                    }
                }
            }

            &.how-to-booking-page {
                .steps-list {
                    display: flex;
                    flex-direction: column;
                    gap: 30px;

                    .step-item {
                        display: flex;
                        flex-direction: row;
                        gap: 20px;

                        .step-img {
                            flex: 0 0 300px;

                            img {
                                width: 100%;
                                height: auto;
                                border: 1px solid var(--border-color);
                                border-radius: var(--rd-md);
                                box-shadow: var(--shadow-sm);
                            }
                        }

                        .step-info {
                            flex: 1;

                            h3 {
                                font-size: var(--fs-lg);
                                font-weight: var(--fw-md);
                                color: var(--text-color);
                                margin: 0 0 10px 0;
                            }

                            p {
                                font-size: var(--fs-md);
                                font-weight: var(--fw-sm);
                                color: var(--text-color);
                                line-height: 1.6;
                                margin: 0 0 5px 0;

                                &.remark {
                                    font-size: var(--fs-xs);
                                    font-weight: var(--fw-sm);
                                    color: var(--theme-color);
                                    font-style: italic;
                                }
                            }

                            a {
                                text-decoration: none;
                                color: var(--theme-color);
                                font-size: var(--fs-sm);
                                font-weight: var(--fw-lg);
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    .steps-list {
                        .step-item {
                            flex-direction: column;

                            .step-img {
                                flex: 0 0 auto;
                            }
                        }
                    }
                }

                @media (max-width: 480px) {
                    .steps-list {
                        .step-item {
                            .step-info {
                                h3 {
                                    font-size: var(--fs-md);
                                }

                                p {
                                    font-size: var(--fs-sm);

                                    &.remark {
                                        font-size: var(--fs-xxs);
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.payment-methods-page {
                .methods-wrapper {

                    .description {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-sm);
                        color: var(--text-color);
                        line-height: 1.6;
                        margin-bottom: 30px;
                    }

                    .methods-title {
                        font-size: var(--fs-lg);
                        font-weight: var(--fw-md);
                        color: var(--text-color);
                        margin-bottom: 20px;
                    }

                    .methods-list {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        margin-bottom: 30px;

                        .method-item {
                            display: flex;
                            gap: 20px;
                            align-items: center;

                            .method-img {
                                width: 150px;

                                img {
                                    width: 100%;
                                    height: auto;
                                    border-radius: var(--rd-sm);
                                    box-shadow: var(--shadow-sm);
                                }
                            }

                            .method-info {
                                .method-name {
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-md);
                                    color: var(--text-color);
                                    margin: 0 0 10px 0;
                                }

                                .method-how-to {
                                    font-size: var(--fs-sm);
                                    font-weight: var(--fw-sm);
                                    color: var(--text-secondary-color);
                                    line-height: 1.6;
                                    margin: 0;
                                }
                            }
                        }
                    }

                    .remark {
                        font-size: var(--fs-xs);
                        font-weight: var(--fw-sm);
                        color: var(--theme-color);
                        line-height: 1.6;
                        margin: 0;
                        font-style: italic;

                        a {
                            text-decoration: none;
                            color: var(--theme-color);
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-lg);
                        }
                    }

                    @media (max-width: 768px) {
                        & {
                            .methods-list {
                                .method-item {
                                    flex-direction: column;
                                    align-items: flex-start;

                                    .method-img {
                                        margin: 0 auto;
                                        width: 300px;
                                    }
                                }
                            }
                        }
                    }

                    @media (max-width: 480px) {
                        & {
                            .methods-list {
                                .method-item {

                                    .method-img {
                                        width: 100%;
                                    }

                                    .method-info {
                                        .method-name {
                                            font-size: var(--fs-sm);
                                        }

                                        .method-how-to {
                                            font-size: var(--fs-xs);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.faq-page {
                .faq-list {
                    .faq-section {
                        margin-bottom: 40px;

                        .faq-section-title {
                            font-size: var(--fs-xl);
                            font-weight: var(--fw-md);
                            color: var(--text-color);
                            margin-bottom: 20px;

                            i {
                                margin-right: 10px;
                                color: var(--text-muted);
                            }
                        }

                        .faq-questions {
                            .faq-question-item {
                                background-color: var(--bg-white);
                                border: 1px solid var(--border-color);
                                border-radius: var(--rd-lg);
                                padding: 15px 20px;
                                margin-bottom: 15px;
                                cursor: pointer;
                                display: flex;
                                flex-direction: column;
                                gap: 10px;

                                .faq-question {
                                    font-size: var(--fs-md);
                                    font-weight: var(--fw-md);
                                    color: var(--text-color);

                                    span {
                                        font-weight: var(--fw-bold);
                                        color: var(--theme-color);
                                        margin-right: 5px;
                                    }

                                    &:after {
                                        content: '\002B';
                                        float: right;
                                        transition: transform 0.3s;
                                    }
                                }

                                .faq-answer {
                                    display: none;
                                    font-size: var(--fs-sm);
                                    font-weight: var(--fw-sm);
                                    color: var(--text-color);

                                    span {
                                        font-weight: var(--fw-bold);
                                        color: var(--theme-color);
                                        margin-right: 5px;
                                    }
                                }

                                &.active {
                                    background-color: var(--bg-light);

                                    .faq-question:after {
                                        content: '\2212';
                                        transform: rotate(180deg);
                                    }

                                    .faq-answer {
                                        display: block;
                                    }
                                }
                            }
                        }
                    }
                }

                .faq-remark {
                    font-size: var(--fs-xs);
                    font-weight: var(--fw-sm);
                    color: var(--theme-color);
                    line-height: 1.6;
                    margin-top: 10px;
                    font-style: italic;

                    a {
                        text-decoration: none;
                        color: var(--theme-color);
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-lg);
                    }
                }

                @media (max-width: 768px) {
                    & {
                        .faq-section {
                            .faq-section-title {
                                font-size: var(--fs-lg);
                            }

                            .faq-questions {
                                .faq-question-item {
                                    .faq-question {
                                        font-size: var(--fs-sm);
                                    }

                                    .faq-answer {
                                        font-size: var(--fs-xs);
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 480px) {
                    & {
                        .faq-section {
                            .faq-section-title {
                                font-size: var(--fs-md);
                            }

                            .faq-questions {
                                .faq-question-item {
                                    .faq-question {
                                        font-size: var(--fs-xs);
                                    }

                                    .faq-answer {
                                        font-size: var(--fs-xxs);
                                    }
                                }
                            }
                        }
                    }
                }
            }

        }
    }
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;

    .preloader-inner {
        text-align: center;

        .loading {
            --d: 45px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            color: var(--theme-color);
            box-shadow:
                calc(1*var(--d)) calc(0*var(--d)) 0 0,
                calc(0.707*var(--d)) calc(0.707*var(--d)) 0 1px,
                calc(0*var(--d)) calc(1*var(--d)) 0 2px,
                calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
                calc(-1*var(--d)) calc(0*var(--d)) 0 4px,
                calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
                calc(0*var(--d)) calc(-1*var(--d)) 0 6px;
            animation: l27 1s infinite steps(8);
        }
    }
}

@keyframes l27 {
    100% {
        transform: rotate(1turn)
    }
}