:root {
    --home-blue: #073b8f;
    --home-blue-dark: #03265f;
    --home-blue-soft: #edf4ff;
    --home-yellow: #ffc400;
    --home-white: #fff;
    --home-ink: #10213f;
    --home-muted: #64748b;
    --home-section-title-size: 37px;
    --home-section-eyebrow-size: 12px;
    --home-card-title-size: 16px;
    --home-card-copy-size: 13px;
    --home-card-meta-size: 12px;
    --home-card-price-size: 16px;
    --home-action-size: 12px;
}

/* Retired legacy homepage sections */
.home-section-removed[hidden] {
    display: none !important;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.home-legacy-slider {
    display: none !important;
}

.home-hero {
    position: relative;
    z-index: 1;
    min-height: 640px;
    margin-top: 0 !important;
    overflow: visible;
    background: var(--home-blue-dark);
    color: var(--home-white);
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    float: none;
    background-image:
        linear-gradient(90deg, rgba(2, 25, 66, .93) 0%, rgba(2, 31, 76, .67) 38%, rgba(2, 31, 76, .12) 72%),
        linear-gradient(0deg, rgba(2, 23, 57, .28), transparent 55%),
        url('../images/home-hero-v2.png');
    background-position: center;
    background-size: cover;
}

.home-hero .wrap {
    max-width: 1320px;
    padding: 0 24px;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 630px;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    float: none;
    width: min(660px, 58%);
    padding-top: 105px;
}

.home-hero__eyebrow {
    display: inline-flex;
    float: none;
    width: auto;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(6, 48, 110, .4);
    color: #eaf3ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    backdrop-filter: blur(6px);
}

.home-hero h1 {
    float: none;
    width: auto;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .22);
}

.home-hero h1 span {
    display: inline-block;
    margin-top: 10px;
    color: var(--home-yellow);
}

.home-hero__lead {
    float: none;
    max-width: 580px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
    line-height: 1.6;
}

.home-hero__actions {
    display: flex;
    float: none;
    gap: 12px;
    width: auto;
    margin-top: 30px;
}

.home-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn--yellow {
    background: var(--home-yellow);
    color: var(--home-blue-dark);
    box-shadow: 0 10px 30px rgba(255, 196, 0, .24);
}

.home-btn--outline {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(6px);
}

.home-search {
    position: absolute;
    right: 24px;
    bottom: -57px;
    left: 24px;
    z-index: 3;
    display: grid;
    float: none;
    grid-template-columns: 1.15fr 1.6fr 1fr .75fr auto;
    gap: 12px;
    width: auto;
    padding: 18px;
    border: 1px solid #e1e9f5;
    border-radius: 18px;
    background: #fff;
    color: var(--home-ink);
    box-shadow: 0 20px 55px rgba(3, 38, 95, .2);
}

.home-search__heading {
    display: flex;
    float: none;
    flex-direction: column;
    justify-content: center;
    width: auto;
    padding: 0 10px 0 4px;
}

.home-search__heading strong {
    color: var(--home-blue-dark);
    font-size: 16px;
}

.home-search__heading span {
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 12px;
}

.home-search__field {
    display: grid;
    gap: 6px;
    min-width: 0;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
}

.home-search__field input,
.home-search__field select {
    width: 100%;
    min-width: 0;
    height: 47px;
    padding: 0 13px;
    border: 1px solid #dbe3ef;
    border-radius: 9px;
    outline: 0;
    background: #f8fafc;
    color: #1e293b;
    font: inherit;
    font-size: 14px;
}

.home-search__field input:focus,
.home-search__field select:focus {
    border-color: var(--home-blue);
    box-shadow: 0 0 0 3px rgba(7, 59, 143, .1);
}

.home-search__submit {
    align-self: end;
    float: none;
    width: auto;
    height: 47px;
    padding: 0 25px;
    border-radius: 9px;
    background: var(--home-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.home-search__submit:hover {
    background: var(--home-blue-dark);
}

.home-benefits {
    padding: 79px 0 24px;
    background: #fff;
}

.home-benefits .wrap,
.home-featured .wrap {
    max-width: 1320px;
    padding: 0 24px;
}

.home-benefits__grid {
    display: grid;
    float: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-benefits__grid > div {
    display: flex;
    float: none;
    gap: 9px;
    width: auto;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 14px;
}

.home-benefits__grid span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf2ff;
    color: var(--home-blue);
    font-weight: 900;
}

.home-featured {
    padding: 55px 0 70px;
    background: #fff;
}

.home-section-heading {
    display: flex;
    float: none;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.home-section-heading > div {
    float: none;
    width: auto;
}

.home-section-heading__eyebrow {
    margin-bottom: 5px;
    color: var(--home-blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.home-section-heading h2 {
    color: var(--home-ink);
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.home-section-heading > a {
    color: var(--home-blue);
    font-size: 14px;
    font-weight: 800;
}

.home-section-heading > a span {
    color: #d59f00;
}

.home-destination-grid {
    display: grid;
    float: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.home-destination-card {
    position: relative;
    display: block;
    min-width: 0;
    height: 260px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--home-blue-dark);
    box-shadow: 0 10px 25px rgba(6, 42, 96, .13);
}

.home-destination-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 24, 59, .88), transparent 58%);
    content: '';
}

.home-destination-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-destination-card:hover img {
    transform: scale(1.06);
}

.home-destination-card__body {
    position: absolute;
    right: 17px;
    bottom: 17px;
    left: 17px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #fff;
}

.home-destination-card__body strong {
    font-size: 18px;
}

.home-destination-card__body small {
    color: var(--home-yellow);
    font-size: 12px;
    font-weight: 800;
}

.home-recommended-tours {
    padding: 58px 0 68px;
    background: #f5f8fd;
}

.home-recommended-tours .title_wrap .title {
    color: var(--home-ink);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.home-recommended-tours .title_wrap .title::after,
.home-featured h2::after {
    display: block;
    width: 55px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--home-yellow);
    content: '';
}

.home-recommended-tours .controls .link {
    color: var(--home-blue) !important;
    font-weight: 800;
}

.home-recommended-tours .tour_item,
.home-recommended-tours .tour_item:hover {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(3, 38, 95, .12);
}

.home-recommended-tours .button,
.home-recommended-tours .btn {
    background: var(--home-blue) !important;
}

.home-trust {
    display: flow-root;
    float: none;
    clear: both;
    width: 100%;
    margin: 0 !important;
    padding: 44px 0 48px;
    border-top: 1px solid #e5eaf3;
    background: #f8faff;
}

.home-trust .statistics {
    float: none;
    clear: both;
    margin: 0;
}

.home-trust .wrap {
    max-width: 1040px;
    padding: 0 24px;
}

.home-trust .team-head {
    margin-bottom: 26px;
}

.home-trust .team-head .title {
    color: var(--home-ink);
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.home-trust .team-head .subtitle {
    max-width: 760px;
    float: none;
    margin: 10px auto 0 !important;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.55;
}

.home-trust .statistics_item {
    display: flex;
    float: left;
    width: calc((100% - 28px) / 3);
    min-height: 155px;
    margin: 0 14px 0 0;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid #e2e8f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(3, 38, 95, .055);
}

.home-trust .statistics_item:last-child {
    margin-right: 0;
}

.home-trust .statistics_item a {
    display: grid;
    gap: 9px;
    justify-items: center;
}

.home-trust .statistics_item ._value,
.home-trust .statistics_item ._value[style] {
    width: auto !important;
    height: 58px;
    margin: 0;
    line-height: 1;
    background: transparent;
}

.home-trust .statistics_item ._value img {
    width: auto;
    max-width: 130px;
    height: 58px;
    object-fit: contain;
}

.home-trust .statistics_item ._title {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
}

.home-trust .statistics_item ._title span {
    color: var(--home-blue);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .home-search {
        grid-template-columns: 1.35fr 1.7fr 1fr .8fr;
    }

    .home-search__heading {
        display: none;
    }

    .home-destination-grid {
        grid-template-columns: repeat(5, 220px);
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .home-destination-grid::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 800px) {
    .home-hero {
        min-height: 660px;
        margin-top: 70px;
    }

    .home-hero__backdrop {
        background-image:
            linear-gradient(90deg, rgba(2, 25, 66, .9), rgba(2, 31, 76, .32)),
            linear-gradient(0deg, rgba(2, 23, 57, .45), transparent 60%),
            url('../images/home-hero-v2.png');
        background-position: 60% center;
    }

    .home-hero__inner {
        min-height: 660px;
    }

    .home-hero__content {
        width: 78%;
        padding-top: 85px;
    }

    .home-search {
        bottom: -142px;
        grid-template-columns: 1fr 1fr;
    }

    .home-search__field--destination,
    .home-search__submit {
        grid-column: 1 / -1;
    }

    .home-benefits {
        padding-top: 168px;
    }

    .home-benefits__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .home-trust .statistics_item {
        min-height: 170px;
    }
}

@media (max-width: 600px) {
    .home-hero,
    .home-hero__inner {
        min-height: 670px;
    }

    .home-hero .wrap,
    .home-benefits .wrap,
    .home-featured .wrap,
    .home-trust .wrap {
        box-sizing: border-box;
        width: 100% !important;
        padding-right: 16px;
        padding-left: 16px;
    }

    .home-hero__content {
        width: 100%;
        padding-top: 58px;
    }

    .home-hero__eyebrow {
        font-size: 11px;
    }

    .home-hero h1 {
        font-size: clamp(40px, 13vw, 55px);
    }

    .home-hero__lead {
        max-width: 92%;
        font-size: 16px;
    }

    .home-hero__actions {
        flex-wrap: wrap;
    }

    .home-btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 14px;
    }

    .home-search {
        right: 16px;
        bottom: -180px;
        left: 16px;
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .home-search__field,
    .home-search__field--destination,
    .home-search__submit {
        grid-column: 1;
    }

    .home-search__field input,
    .home-search__field select,
    .home-search__submit {
        height: 43px;
    }

    .home-benefits {
        padding-top: 208px;
    }

    .home-benefits__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-benefits__grid > div {
        justify-content: flex-start;
    }

    .home-featured {
        padding: 38px 0 50px;
    }

    .home-section-heading {
        display: block;
    }

    .home-section-heading h2 {
        font-size: 28px;
    }

    .home-section-heading > a {
        display: inline-block;
        margin-top: 15px;
    }

    .home-destination-grid {
        grid-template-columns: repeat(5, 190px);
        gap: 12px;
        width: calc(100% + 16px);
    }

    .home-destination-card {
        height: 230px;
    }

    .home-recommended-tours {
        padding: 42px 0 52px;
    }

    .home-trust {
        padding: 36px 0;
    }

    .home-trust .team-head .title {
        font-size: 26px;
    }

    .home-trust .team-head .subtitle {
        font-size: 14px;
    }

    .home-trust .statistics_item,
    .home-trust .statistics_item:last-child {
        width: 100%;
        min-height: 0;
        margin: 0 0 10px;
        padding: 15px;
    }

    .home-trust .statistics_item a {
        grid-template-columns: 90px 1fr;
        align-items: center;
        text-align: left;
    }

    .home-trust .statistics_item ._title {
        text-align: left;
    }
}

/* Hero/header alignment with the approved homepage reference */
.top_panel {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    max-width: 100vw;
    border-bottom: 1px solid rgba(255, 196, 0, .72) !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.top_panel .wrap {
    max-width: 1320px;
}

.top_panel:not(.home-header--solid) .center .menu > ul > li > a,
.top_panel:not(.home-header--solid) .right .tel a,
.top_panel:not(.home-header--solid) .right .tel a span {
    color: #fff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.top_panel:not(.home-header--solid) .center .menu > ul > li > a::before {
    background: var(--home-yellow) !important;
}

.top_panel:not(.home-header--solid) .right .tel img {
    filter: brightness(0) invert(1);
}

.top_panel:not(.home-header--solid) .search_btn {
    border-color: rgba(255, 255, 255, .35);
    background-color: rgba(255, 255, 255, .18);
}

.top_panel.home-header--solid,
body.menu-open .top_panel {
    border-bottom-color: var(--home-yellow) !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 8px 28px rgba(3, 38, 95, .1) !important;
}

.top_panel.home-header--solid .center .menu > ul > li > a,
.top_panel.home-header--solid .right .tel a,
.top_panel.home-header--solid .right .tel a span,
body.menu-open .top_panel .center .menu > ul > li > a {
    color: #092e72 !important;
    text-shadow: none;
}

.top_panel.home-header--solid .right .tel img {
    filter: none;
}

.home-hero {
    min-height: 610px;
    margin-top: 0;
}

.home-hero__inner {
    min-height: 610px;
}

.home-hero__backdrop {
    background-image:
        linear-gradient(90deg, rgba(2, 25, 66, .9) 0%, rgba(2, 31, 76, .58) 38%, rgba(2, 31, 76, .08) 73%),
        linear-gradient(0deg, rgba(2, 23, 57, .2), transparent 55%),
        url('../images/home-hero-v2.png');
}

.home-hero__content {
    width: min(780px, 67%);
    padding-top: 146px;
}

.home-hero h1 {
    font-family: 'Arial Black', 'Nunito', sans-serif;
    font-size: clamp(51px, 5.3vw, 78px);
    font-style: italic;
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.055em;
}

.home-hero h1 span {
    margin-top: 12px;
    color: var(--home-yellow);
}

.home-hero__lead {
    margin-top: 24px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.42;
}

.home-search {
    bottom: -48px;
    grid-template-columns: 1.85fr 1fr .82fr auto;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
}

.home-search__tabs {
    position: absolute;
    bottom: 100%;
    left: 12px;
    display: flex;
    float: none;
    gap: 2px;
    width: auto;
}

.home-search__tab {
    display: inline-flex;
    float: none;
    width: auto;
    height: 43px;
    align-items: center;
    gap: 8px;
    padding: 0 19px;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 31, 76, .82);
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    backdrop-filter: blur(7px);
}

.home-search__tab span {
    color: var(--home-yellow);
    font-size: 15px;
}

.home-search__tab.is-active {
    background: #fff;
    color: var(--home-blue-dark);
}

.home-search__tab.is-active::after {
    position: absolute;
    right: 18px;
    bottom: 5px;
    left: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-yellow);
    content: '';
}

.home-search__tab {
    position: relative;
}

.home-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.home-search__field {
    display: block;
    align-self: end;
}

.home-search__field input,
.home-search__field select,
.home-search__submit {
    height: 50px;
}

.home-search__field input {
    color: #1e293b !important;
    font-size: 15px;
}

.home-search__field input::placeholder {
    color: #64748b !important;
    opacity: 1;
}

.home-benefits {
    padding-top: 70px;
}

@media (max-width: 1000px) {
    .home-hero__content {
        width: 76%;
    }

    .home-search__tab {
        padding: 0 13px;
        font-size: 13px;
    }
}

@media (max-width: 800px) {
    .home-hero,
    .home-hero__inner {
        min-height: 650px;
    }

    .home-hero__content {
        width: 86%;
        padding-top: 128px;
    }

    .home-search {
        bottom: -103px;
        grid-template-columns: 1.45fr 1fr .75fr;
    }

    .home-search__submit {
        grid-column: 1 / -1;
    }

    .home-search__tabs {
        right: 0;
        left: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .home-search__tabs::-webkit-scrollbar {
        display: none;
    }

    .home-benefits {
        padding-top: 126px;
    }
}

@media (max-width: 600px) {
    .top_panel:not(.home-header--solid) .mobile_btn span {
        background: #fff !important;
    }

    .home-hero,
    .home-hero__inner {
        min-height: 625px;
    }

    .home-hero__backdrop {
        background-image:
            linear-gradient(90deg, rgba(2, 25, 66, .88), rgba(2, 31, 76, .25)),
            linear-gradient(0deg, rgba(2, 23, 57, .42), transparent 60%),
            url('../images/home-hero-v2.png');
    }

    .home-hero__content {
        width: 100%;
        padding-top: 130px;
    }

    .home-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: .98;
    }

    .home-hero__lead {
        max-width: 100%;
        font-size: 15px;
    }

    .home-search {
        bottom: -164px;
        grid-template-columns: 1fr;
    }

    .home-search__field,
    .home-search__submit {
        grid-column: 1;
    }

    .home-search__tab {
        flex: 0 0 auto;
        height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

    .home-search__field input,
    .home-search__submit {
        height: 44px;
    }

    .home-benefits {
        padding-top: 190px;
    }
}

@media (min-width: 1201px) {
    .top_panel {
        padding: 7px 0;
    }

    .top_panel .wrap {
        box-sizing: border-box;
        width: 100%;
        max-width: 1760px;
        padding: 0 34px;
    }

    .top_panel .wrap_float {
        display: flex;
        float: none;
        width: 100%;
        min-width: 0;
        align-items: center;
        padding: 0 !important;
    }

    .top_panel .currency {
        position: static;
        flex: 0 0 112px;
        width: 112px;
        height: 40px;
        margin: 0 26px 0 0;
    }

    .top_panel .left {
        flex: 0 0 auto;
        width: auto;
        padding: 0;
        margin-right: clamp(34px, 4vw, 72px);
    }

    .top_panel .left .logo {
        float: none;
        display: inline-flex;
        align-items: center;
        height: auto;
        max-height: 54px;
        width: auto;
        max-width: 240px;
    }

    .top_panel .left .logo img {
        top: 0;
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 54px;
        object-fit: contain;
    }

    .top_panel .menu_wrap {
        display: block !important;
        float: none;
        flex: 1 1 auto;
        width: auto !important;
        min-width: 0;
    }

    .top_panel .menu_wrap > .scroll {
        display: flex;
        float: none;
        width: 100%;
        min-width: 0;
        align-items: center;
        justify-content: space-between;
    }

    .top_panel .center,
    .top_panel .center .menu,
    .top_panel .center .menu > ul {
        display: flex;
        float: none;
        width: auto;
        min-width: 0;
        align-items: center;
    }

    .top_panel .center .menu > ul > li {
        float: none;
        flex: 0 0 auto;
        width: auto;
        margin-right: clamp(20px, 2.2vw, 48px) !important;
    }

    .top_panel .center .menu > ul > li:last-child {
        margin-right: 0 !important;
    }

    .top_panel .right {
        display: flex;
        float: none;
        flex: 0 0 auto;
        width: auto;
        align-items: center;
        margin-left: clamp(28px, 3vw, 58px);
    }
}

/* Featured destinations carousel — aligned with the approved homepage reference */
.home-featured {
    overflow: hidden;
    padding: 22px 0 44px;
}

.home-benefits {
    padding-bottom: 10px;
}

.home-featured .wrap {
    width: min(1180px, calc(100% - 72px));
    max-width: 1180px;
    padding: 0;
}

.home-featured .home-section-heading {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 18px;
    text-align: center;
}

.home-featured .home-section-heading > div {
    width: 100%;
}

.home-featured .home-section-heading__eyebrow {
    float: none;
    width: 100%;
    margin: 0 0 3px;
    font-size: var(--home-section-eyebrow-size);
    letter-spacing: .08em;
}

.home-featured .home-section-heading h2 {
    float: none;
    width: 100%;
    margin: 0;
    font-size: var(--home-section-title-size);
    font-weight: 800;
}

.home-featured .home-section-heading h2::after {
    width: 54px;
    height: 3px;
    margin: 7px auto 0;
}

.home-destination-carousel {
    position: relative;
    display: block;
    float: none;
    clear: both;
    width: 100%;
}

.home-destination-viewport {
    float: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.home-destination-viewport::-webkit-scrollbar {
    display: none;
}

.home-destination-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: max-content;
    overflow: visible;
    padding: 0;
}

.home-destination-card {
    flex: 0 0 calc((1180px - 56px) / 5);
    width: calc((1180px - 56px) / 5);
    height: 242px;
    border-radius: 14px;
    scroll-snap-align: start;
}

.home-destination-card__body {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
}

.home-destination-card__body strong,
.home-destination-card__body small {
    display: block;
}

.home-destination-card__body strong {
    font-size: var(--home-card-title-size);
    font-weight: 800;
    line-height: 1.2;
}

.home-destination-card__body small {
    margin-top: 3px;
    font-size: var(--home-card-meta-size);
}

.home-destination-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    padding: 0;
    place-items: center;
    border: 1px solid #e3e9f2;
    border-radius: 50%;
    background: #fff;
    color: #092e72;
    box-shadow: 0 5px 18px rgba(3, 38, 95, .14);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.home-destination-arrow:hover {
    border-color: #ffc400;
    background: #ffc400;
}

.home-destination-arrow--prev {
    left: -50px;
}

.home-destination-arrow--next {
    right: -50px;
}

.home-destination-all {
    display: flex;
    float: none;
    clear: both;
    width: max-content;
    min-width: 190px;
    height: 38px;
    margin: 22px auto 0;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #9aa8bb;
    border-radius: 999px;
    color: #092e72;
    font-size: var(--home-action-size);
    font-weight: 800;
}

.home-destination-all:hover {
    border-color: #ffc400;
    background: #ffc400;
}

.home-destination-all span {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 1260px) {
    .home-featured .wrap {
        width: calc(100% - 112px);
    }

    .home-destination-card {
        flex-basis: calc((100vw - 168px) / 5);
        width: calc((100vw - 168px) / 5);
    }
}

@media (max-width: 900px) {
    .home-featured .wrap {
        width: calc(100% - 64px);
    }

    .home-destination-card {
        flex-basis: calc((100vw - 106px) / 3);
        width: calc((100vw - 106px) / 3);
    }

    .home-destination-arrow--prev { left: -46px; }
    .home-destination-arrow--next { right: -46px; }
}

@media (max-width: 600px) {
    .home-featured {
        padding: 26px 0 40px;
    }

    .home-featured .wrap {
        width: 100% !important;
        padding: 0 16px;
    }

    .home-featured .home-section-heading h2 {
        font-size: var(--home-section-title-size);
    }

    .home-destination-viewport {
        width: calc(100% + 16px);
    }

    .home-destination-card {
        flex-basis: min(70vw, 245px);
        width: min(70vw, 245px);
        height: 238px;
    }

    .home-destination-arrow {
        display: none;
    }

    .home-destination-all {
        margin-top: 18px;
    }
}

/* Recommended domestic tours */
.home-tour-showcase {
    display: flow-root;
    float: none;
    clear: both;
    width: 100%;
    padding: 46px 0 54px;
    background: #f5f7fb;
}

.home-tour-showcase__wrap {
    box-sizing: border-box;
    float: none;
    width: min(1180px, calc(100% - 72px));
    max-width: 1180px;
    padding: 0;
}

.home-tour-showcase__head {
    display: flex;
    float: none;
    width: 100%;
    margin-bottom: 18px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-tour-showcase__head > div {
    float: none;
    width: auto;
}

.home-tour-showcase__head p,
.home-tour-showcase__head h2 {
    float: none;
    width: auto;
    margin: 0;
}

.home-tour-showcase__head p {
    margin-bottom: 3px;
    color: #5a6b84;
    font-size: var(--home-section-eyebrow-size);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-tour-showcase__head h2 {
    color: #08285f;
    font-family: 'Nunito', sans-serif;
    font-size: var(--home-section-title-size);
    font-weight: 800;
    line-height: 1.15;
}

.home-tour-showcase__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-tour-showcase__actions > a {
    display: inline-flex;
    float: none;
    height: 34px;
    margin-right: 4px;
    padding: 0 18px;
    align-items: center;
    border: 1px solid #a7b2c2;
    border-radius: 9px;
    color: #08285f;
    font-size: var(--home-action-size);
    font-weight: 900;
}

.home-tour-showcase__actions > a:hover {
    border-color: #ffc400;
    background: #ffc400;
}

.home-tour-arrow {
    display: grid;
    float: none;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 1px solid #a7b2c2;
    border-radius: 9px;
    background: #fff;
    color: #08285f;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.home-tour-arrow:hover {
    border-color: #ffc400;
    background: #ffc400;
}

.home-tour-viewport {
    float: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.home-tour-viewport::-webkit-scrollbar {
    display: none;
}

.home-tour-track {
    display: flex;
    float: none;
    gap: 14px;
    width: max-content;
}

.home-tour-card {
    display: flex;
    float: none;
    flex: 0 0 calc((1180px - 42px) / 4);
    width: calc((1180px - 42px) / 4);
    min-width: 0;
    min-height: 352px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e0e6ef;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(3, 38, 95, .07);
    scroll-snap-align: start;
}

.home-tour-card__image {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    height: 148px;
    flex: 0 0 148px;
    overflow: hidden;
}

.home-tour-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-tour-card:hover .home-tour-card__image img {
    transform: scale(1.045);
}

.home-tour-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.home-tour-card__badge--yellow {
    background: #ffc400;
    color: #08285f;
}

.home-tour-card__badge--red {
    background: #ed2637;
}

.home-tour-card__content {
    display: flex;
    float: none;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 13px 14px 12px;
    flex-direction: column;
}

.home-tour-card__content h3,
.home-tour-card__content p {
    float: none;
    width: 100%;
    margin: 0;
}

.home-tour-card__content h3 {
    min-height: 22px;
    color: #12213b;
    font-family: 'Nunito', sans-serif;
    font-size: var(--home-card-title-size);
    font-weight: 800;
    line-height: 1.25;
}

.home-tour-card__content h3 a {
    color: inherit;
}

.home-tour-card__content > p {
    display: -webkit-box;
    min-height: 52px;
    margin-top: 7px;
    overflow: hidden;
    color: #4e5c70;
    font-size: var(--home-card-copy-size);
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-tour-card__meta {
    display: flex;
    float: none;
    width: 100%;
    margin-top: auto;
    padding: 10px 0 9px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #e8edf4;
    color: #526079;
    font-size: var(--home-card-meta-size);
    font-weight: 800;
}

.home-tour-card__footer {
    display: flex;
    float: none;
    width: 100%;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-tour-card__footer strong {
    color: #08285f;
    font-size: var(--home-card-price-size);
    font-weight: 900;
    white-space: nowrap;
}

.home-tour-card__footer a {
    display: inline-flex;
    float: none;
    min-width: 92px;
    height: 31px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #0750a8;
    color: #fff;
    font-size: var(--home-action-size);
    font-weight: 900;
    white-space: nowrap;
}

.home-tour-card__footer a:hover {
    background: #ffc400;
    color: #08285f;
}

@media (max-width: 1260px) {
    .home-tour-showcase__wrap {
        width: calc(100% - 72px);
    }

    .home-tour-card {
        flex-basis: calc((100vw - 114px) / 4);
        width: calc((100vw - 114px) / 4);
    }
}

@media (max-width: 900px) {
    .home-tour-card {
        flex-basis: calc((100vw - 94px) / 2.35);
        width: calc((100vw - 94px) / 2.35);
    }
}

@media (max-width: 1400px) {
    :root {
        --home-section-title-size: 42px;
    }
}

@media (max-width: 760px) {
    :root {
        --home-section-title-size: 32px;
    }
}

@media (max-width: 600px) {
    :root {
        --home-section-title-size: 32px;
        --home-card-copy-size: 13px;
    }

    .home-tour-showcase {
        padding: 34px 0 42px;
    }

    .home-tour-showcase__wrap {
        width: 100%;
        padding: 0 16px;
    }

    .home-tour-showcase__head {
        align-items: flex-end;
        gap: 12px;
    }

    .home-tour-showcase__head h2 {
        font-size: var(--home-section-title-size);
    }

    .home-tour-showcase__actions > a {
        display: none;
    }

    .home-tour-arrow {
        width: 32px;
        height: 32px;
    }

    .home-tour-viewport {
        width: calc(100% + 16px);
    }

    .home-tour-card {
        flex-basis: min(82vw, 300px);
        width: min(82vw, 300px);
        min-height: 350px;
    }
}
/* The reference homepage header sits transparently over the hero, then turns solid on scroll. */
.top_panel:not(.home-header--solid) {
    background: transparent !important;
    border-bottom-color: rgba(255, 196, 0, .78) !important;
    box-shadow: none !important;
}

@media (min-width: 1201px) {
    .top_panel.header-many-items .menu_wrap > .scroll { gap: 14px !important; }
    .top_panel.header-many-items .center .menu > ul > li { margin: 0 7px !important; }
    .top_panel.header-many-items .center .menu > ul > li > a {
        padding: 0 2px !important;
        font-size: 13px !important;
    }
    .top_panel.header-many-items .right .tel a {
        padding-right: 12px !important;
        padding-left: 12px !important;
        font-size: 14px !important;
    }
}

@media (min-width: 1201px) and (max-width: 1320px) {
    .top_panel.header-many-items .currency { display: none !important; }
}
