/* Custom Styles for Travel Inquiry Form */
.travel-form-wrap {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    color: #fff;
    width: 100%;
    max-width: 1200px;
}

.form-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.form-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.form-tab i {
    font-size: 18px;
}

.form-tab.active {
    background: #d39f24;
    /* Gold color from image */
    color: #fff;
}

.form-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.trip-type-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radio-group {
    display: flex;
    gap: 25px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
}

.radio-item input {
    accent-color: #C5A059;
    width: 18px;
    height: 18px;
}

.form-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.form-field {
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.form-field:last-of-type {
    border-right: none;
}

.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 700;
}

.form-field input,
.form-field select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    height: auto;
}

.form-field input::placeholder {
    color: #fff;
}

.form-field .sub-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.btn-search {
    background: #d39f24;
    border: none;
    color: #fff;
    padding: 0 40px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    background: #b08d4a;
}

@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-field {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-search {
        grid-column: span 2;
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .btn-search {
        grid-column: span 1;
    }

    .trip-type-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Featured Tours Section */
.featured-tours-sec {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #0B1C2E;
    /* Dark blue from image */
}

.featured-tours-sec#tours-sec {
    margin-top: 100px;
}

.bg-text-featured {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -85%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.tour-card {
    background: #18161d;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    height: 100%;
    margin-bottom: 20px;
    padding: 20px;
}

.tour-card:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 312px;
    height: 312px;
    background: linear-gradient(261.14deg, #0e228f 20.53%, #1c46ff 69.42%);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card:hover:before {
    opacity: 1;
    visibility: visible;
}

.tour-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 13px;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-wishlist:hover {
    background: #ff4d4d;
    color: #fff;
}

.tour-content {
    padding: 20px;
}

.tour-brand {
    display: block;
    margin-bottom: 10px;
    height: 20px;
}

.tour-brand img {
    height: 100%;
}

.tour-location {
    font-size: 12px;
    color: #0066cc;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.tour-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25;
    overflow: hidden;
}

.tour-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    color: #0066cc;
}

.tour-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #0066cc;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.tour-price-wrap .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.tour-price {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.tour-price span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.btn-view-deal {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s;
}

.btn-view-deal:hover {
    background: #d39f24;
    color: #fff;
}

/* Swiper Nav Adjustments */
.featured-tours-sec .swiper-button-next,
.featured-tours-sec .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #d39f24;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.featured-tours-sec .swiper-button-next:after,
.featured-tours-sec .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

/*--------------------------------------------------
    12. Large Featured Deal Card (Monza)
---------------------------------------------------*/

.large-featured-card {
    background-color: #232228;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.large-featured-header {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    overflow: hidden;
}

.large-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 34, 65, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.large-featured-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.large-featured-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.large-featured-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.large-featured-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.duration-badge-big {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-weight: 700;
}

.duration-badge-big .num {
    font-size: 64px;
    line-height: 1;
    margin-right: 10px;
}

.duration-badge-big .text-part {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.duration-badge-big .text-part small {
    font-size: 10px;
    text-transform: uppercase;
}

.price-amount-big {
    font-size: 80px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.price-amount-big .currency {
    font-size: 40px;
    margin-right: 2px;
}

.price-amount-big .pp {
    font-size: 20px;
    margin-left: 2px;
}

.large-featured-tagline {
    font-size: 13px;
    font-weight: 400;
    color: #ccc;
    max-width: 80%;
    margin: 0 auto;
}

.large-featured-body {
    padding: 25px 30px;
    background-color: #232228;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.large-deal-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.large-deal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.large-deal-info p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.large-deal-tags {
    display: flex;
    gap: 10px;
}

.large-deal-tags .deal-tag {
    background-color: #fff;
    color: #0b2241;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.large-deal-tags .deal-tag i {
    color: #0b2241;
}

.large-deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.large-deal-price-col {
    display: flex;
    flex-direction: column;
}

.large-deal-price-col .label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 2px;
}

.large-deal-price-col h4 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.large-deal-price-col h4 small {
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
}

.btn-view-deal-large {
    background-color: #0d284f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-deal-large:hover {
    background-color: #1a427d;
    color: #fff;
}

.btn-view-all-deals {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    height: 2.5rem;
    padding: 0 1rem;
    width: 15rem;
    max-width: calc(100% - 2rem);
    border: 1px solid #18161d5d;
    background: #18161d;
    color: #fcfcff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    outline: none;
}

.btn-view-all-deals:hover {
    background: #18161db0;
    color: #fcfcff;
    border-color: #18161db0;
}

.btn-view-all-deals:focus-visible {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.35);
}

.featured-tours-sec .swiper-button-next:hover,
.featured-tours-sec .swiper-button-prev:hover {
    background: #fff;
    color: #d39f24;
}

/*--------------------------------------------------
    13. Horizontal Travel Inquiry Form (Header)
---------------------------------------------------*/

.travel-form-wrap-horizontal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
}

.form-header-row .form-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.form-tabs-inline {
    display: flex;
    gap: 15px;
}

.form-tabs-inline .tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.form-tabs-inline .tab-btn i {
    font-size: 16px;
}

.form-tabs-inline .tab-btn.active,
.form-tabs-inline .tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.form-grid-horizontal {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.form-field-hz {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.form-field-hz.wide {
    flex: 1.5;
}

.form-field-hz:last-of-type {
    border-right: none;
    padding-right: 0;
}

.form-field-hz label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-with-icon i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.input-with-icon input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    outline: none;
}

.input-with-icon input::placeholder {
    color: #fff;
}

.btn-search-dark {
    background-color: #0b1a30;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 52px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-search-dark:hover {
    background-color: #15315b;
}

@media (max-width: 991px) {
    .form-header-row,
    .hero-search-widget .hero-search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero-search-widget .hero-search-tabs {
        justify-content: flex-start;
        width: 100%;
    }

    .form-grid-horizontal {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .form-field-hz {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .form-field-hz:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@keyframes slideUpFadeForm {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero search widget (home + Disney — same JS, shared panels) */
.hero-3.th-hero-wrapper,
.hero-3 .hero-wrapper,
.hero-3 .hero-style3,
.hero-3 .travel-form-wrap-horizontal,
.hero-3 .hero-search-widget {
    overflow: visible;
}

.hero-3 .hero-style3 {
    position: relative;
    z-index: 10;
    margin-top: 100px;
}

/* Keep hero title/form vertical offset consistent on mobile (no jump vs desktop) */
@media (max-width: 991px) {
    .hero-3 .hero-style3 {
        margin-top: 0px;
    }
}

/* Hero illustration + trusted badge */
.hero-3 .hero-trust-bar--desktop {
    display: none;
}

.hero-3 .hero-image {
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 4;
    pointer-events: none;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}
.hero-3 .hero-image{translate: none; 
    rotate: none; 
    scale: none; 
    margin-top: -65px !important; 
    opacity: 0.905; 
    transform: translate3d(0px, 72.2116px, 0px) !important;
}
.hero-3 .hero-image img {
    display: block;
    width: auto;
    max-width: min(100%, 720px);
    height: auto;
    margin: 0 auto 0;
    margin-bottom: 0 !important;
    padding-bottom: 0;
    vertical-align: bottom;
}

.hero-3 .hero-certified-badge.hero-trust-bar {
    position: relative;
    z-index: 6;
    margin: 0;
    padding: 0 16px;
    text-align: center;
    pointer-events: none;
}

.hero-trust-bar__strip {
    display: block;
    width: min(880px, 100%);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Desktop: original hero stack (title/form, overlapping image, badge at hero foot) */
@media (min-width: 992px) {
    .hero-3.th-hero-wrapper {
        position: relative;
    }

    .hero-3 .hero-trust-bar--mobile {
        display: none;
    }

    .hero-3 .hero-trust-bar--desktop {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 8;
        margin: 0;
        padding: 0 32px clamp(20px, 3vw, 32px);
        text-align: end;
        pointer-events: none;
    }

    .hero-3 .hero-wrapper {
        position: relative;
        display: block;
        overflow: visible;
    }

    .hero-3 .hero-image {
        margin-top: -200px;
        margin-bottom: -218px !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .hero-3 .hero-image img {
        margin-bottom: 0 !important;
    }

    .hero-3 .hero-trust-bar--desktop .hero-trust-bar__strip {
        width: auto;
        max-width: 32%;
        margin: 0 0 0 auto;
    }
}
@media (max-width: 375px) {
    .hero-3 .hero-certified-badge.hero-trust-bar.hero-trust-bar--mobile {
        margin-left: 20px !important;
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-trust-bar--desktop {
        display: none;
    }

    .hero-3 .hero-wrapper {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-3 .hero-style3 {
        order: 1;
    }

    /* Trusted badge above hero photo */
    .hero-3 .hero-certified-badge.hero-trust-bar.hero-trust-bar--mobile {
        order: 2;
        max-width: 300px;
        margin-left: 47px;
        margin-top: -7px;
        margin-bottom: 15px;
        padding: 0 12px;
    }

    .hero-3 .hero-image {
        order: 3;
        margin-top: 0;
        margin-bottom: 0;
        transform: translate3d(0, 0, 0) !important;
    }

    .hero-3 .hero-image img {
        max-width: min(100%, 420px);
    }

    .hero-search-widget .hero-search-menu {
        z-index: 500;
    }

    body.disney-page .travel-form-wrap-horizontal.is-hero-disney-page {
        top: 0px !important;
    }
}

.hero-3 .travel-form-wrap-horizontal.hero-search-widget {
    position: relative;
    z-index: 25;
    pointer-events: auto;
}

.hero-3 .hero-search-widget {
    position: relative;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero search — same fonts on desktop and mobile (no generic cursive fallback) */
.hero-search-widget,
.hero-search-widget .form-title,
.hero-search-widget .hero-search-tab,
.hero-search-widget .hero-search-field > label:not(.visually-hidden),
.hero-search-widget .hero-search-trigger,
.hero-search-widget .hero-search-trigger .trigger-value,
.hero-search-widget .hero-search-select,
.hero-search-widget .hero-search-input,
.hero-search-widget .hero-search-menu-item,
.hero-search-widget .hero-search-menu-search input,
.hero-search-widget .btn-search-dark {
    font-family: var(--body-font, "Urbanist"), sans-serif;
}

/* Wider hero search bar when Flight tab is active */
.hero-search-widget.is-tab-flights {
    max-width: 1240px;
}

@media (min-width: 992px) {
    .hero-3 .travel-form-wrap-horizontal.hero-search-widget.is-tab-flights {
        max-width: min(1240px, calc(100% - 40px));
        width: min(1022px, calc(100% - 40px));
    }
}

.hero-search-widget.is-tab-flights .hero-search-fields--flight {
    flex-wrap: nowrap;
    gap: 8px;
}

.hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field--wide {
    flex: 1.15 1 58px;
    min-width: 100px;
}

.hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field--date {
    flex: 0 1 73px;
    min-width: 118px;
}

.hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field:not(.hero-search-field--wide):not(.hero-search-field--swap):not(.hero-search-field--date):not(.hero-search-field--return) {
    flex: 0 1 67px;
    min-width: 130px;
}

.hero-search-widget.is-tab-flights .hero-flight-end .hero-search-field--class {
    flex: 0 1 120px;
    min-width: 100px;
}

/* Decorative marquee must not block hero search clicks */
.hero-3 .marquee.style2,
.hero-3 .marquee.marquee-extra.style2 {
    pointer-events: none;
    user-select: none;
}

/* Hero decorative marquee — desktop only */
@media (max-width: 991px) {
    .hero-3 .marquee.marquee-extra.style2 {
        display: none !important;
    }
}

/* Hero header: title left, tabs right (Disney + home) */
.hero-search-widget .hero-search-header,
.hero-search-widget > .form-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 20px;
    width: 100%;
    margin: 0 0 16px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-search-widget .hero-search-header .form-title,
.hero-search-widget > .form-header-row .form-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Disney-style tab bar (emoji tabs) */
.hero-search-widget .hero-search-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.hero-search-widget .hero-search-header .hero-search-tabs,
.hero-search-widget > .form-header-row .hero-search-tabs {
    margin-left: auto;
}

.hero-search-widget .hero-search-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.hero-search-widget .hero-search-tab.is-active,
.hero-search-widget .hero-search-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-search-widget .hero-search-panel .form-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.hero-3 .hero-search-widget .form-tabs-inline .hero-search-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.hero-3 .hero-search-widget .form-tabs-inline .hero-search-tab.is-active,
.hero-3 .hero-search-widget .form-tabs-inline .hero-search-tab.active,
.hero-3 .hero-search-widget .form-tabs-inline .hero-search-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-search-widget .hero-search-panel {
    display: none;
    pointer-events: none;
}

.hero-search-widget .hero-search-panel.is-active:not([hidden]) {
    display: block !important;
    pointer-events: auto;
}

.hero-search-widget .hero-search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.hero-search-widget .hero-search-field {
    flex: 1 1 85px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 0;
}

.hero-search-widget .hero-search-field--wide {
    flex: 1.5 1 85px;
    min-width: 180px;
}

.hero-search-widget .hero-search-field--action {
    flex: 0 0 auto;
    min-width: 120px;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-left: auto;
    align-self: flex-start;
    justify-content: flex-end;
    padding-top: 26px;
}

.hero-search-widget .hero-search-field > label:not(.visually-hidden) {
    flex: 0 0 auto;
    width: 100%;
    height: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.hero-search-widget .hero-search-field > input[type="hidden"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-search-widget .hero-search-field > .hero-search-trigger,
.hero-search-widget .hero-search-field > .hero-search-select,
.hero-search-widget .hero-search-field > .hero-search-input {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    height: 32px;
    min-height: 32px;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #8f939b;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    text-align: left;
    box-shadow: none;
}

.hero-search-widget .hero-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
}

.hero-search-widget .hero-search-select {
    appearance: none;
    cursor: pointer;
    line-height: 32px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.hero-search-widget .hero-search-select option {
    background: #0b1a30;
    color: #fff;
}

.hero-search-widget .input-with-icon .hero-search-trigger {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.hero-search-widget .input-with-icon .hero-search-select,
.hero-search-widget .input-with-icon .hero-search-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.hero-search-widget .input-with-icon .hero-search-select {
    appearance: none;
    cursor: pointer;
    padding-right: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.hero-search-widget .input-with-icon .hero-search-select option {
    background: #0b1a30;
    color: #fff;
}

.hero-search-widget .hero-search-input::placeholder {
    color: #fff;
}

/* Date fields: see assets/assets2/css/owtt-date-picker.css (Flatpickr theme) */

.hero-search-widget .hero-search-trigger .trigger-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

.hero-search-widget .hero-search-trigger .trigger-value.is-set {
    color: #8f939b;
}

.hero-search-widget .hero-search-trigger .trigger-caret {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    flex-shrink: 0;
}

.hero-search-widget .hero-search-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 500;
    background: rgba(11, 26, 48, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    max-height: 280px;
    overflow: hidden;
    color: #fff;
}

.hero-search-widget .hero-search-menu.is-open:not(.hero-search-travelers-panel) {
    display: flex;
    flex-direction: column;
    z-index: 600;
}

.hero-search-widget .hero-search-menu:not(.hero-search-travelers-panel) {
    left: 0;
    right: auto;
    min-width: 280px;
    width: max(100%, 280px);
}

.hero-search-widget .hero-search-fields--flight .hero-search-field--wide > .hero-search-menu {
    min-width: 320px;
    width: max(100%, 320px);
}

.hero-search-widget .hero-search-fields--flight .hero-search-menu-item {
    white-space: nowrap;
}

.hero-search-widget .hero-search-menu-search {
    flex: 0 0 auto;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-search-widget .hero-search-menu-search input {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-search-widget .hero-search-menu-search input::placeholder {
    color: #fff;
}

.hero-search-widget .hero-search-menu-list,
.hero-search-widget .hero-search-menu-list.allow-natural-scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-height: min(240px, 45vh);
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y;
    padding: 6px 4px 6px 6px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.1);
}

.hero-search-widget .hero-search-menu-list::-webkit-scrollbar {
    width: 8px;
}

.hero-search-widget .hero-search-menu-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.hero-search-widget .hero-search-menu-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hero-search-widget .hero-search-menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.55);
    background-clip: padding-box;
}

.hero-search-widget .hero-search-menu-item {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
}

.hero-search-widget .hero-search-menu-item:hover,
.hero-search-widget .hero-search-menu-item.is-selected {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-search-widget .hero-search-menu-empty {
    padding: 14px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.hero-search-widget .hero-search-menu.hero-search-travelers-panel {
    max-height: none;
    overflow: visible;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    min-width: 280px;
}

.hero-search-widget .hero-search-menu.hero-search-travelers-panel.is-open {
    display: flex;
}

.hero-search-widget .hero-search-menu[aria-hidden="true"] {
    display: none !important;
}

/* All tabs — Adults | Children side by side (flight-style) */
.hero-search-widget .hero-travelers-counters-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 0;
}

.hero-search-widget .hero-travelers-counters-row .traveler-row {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
}

.hero-search-widget .hero-travelers-counters-row .traveler-row label {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.hero-search-widget .hero-travelers-counters-row .hero-search-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}

.hero-search-widget .hero-search-counter span {
    color: #fff;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.hero-search-widget .hero-search-counter button {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.hero-search-widget .hero-search-apply {
    position: relative;
    z-index: 6;
    width: 100%;
    margin-top: 4px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #15315b 0%, #0f2444 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    flex-shrink: 0;
    pointer-events: auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-search-widget .hero-search-apply:hover {
    background: linear-gradient(135deg, #1a3d6e 0%, #15315b 100%);
}

.hero-search-widget .hero-search-travelers-panel.has-flight-class {
    min-width: 320px;
    padding: 16px;
}

.hero-search-widget .hero-search-travelers-panel.has-flight-class .hero-search-apply {
    display: block;
    position: relative;
    z-index: 10;
    margin-top: 14px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #15315b 0%, #0f2444 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    font-size: 15px;
    letter-spacing: 0.02em;
    pointer-events: auto;
    cursor: pointer;
}

.hero-search-widget .hero-flight-class-section {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-search-widget .hero-flight-class-heading {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-search-widget .hero-flight-class-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Override theme style.css input[type=radio] { display: none } */
.hero-search-widget .hero-flight-class-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hero-search-widget .hero-flight-class-card:hover {
    border-color: rgba(211, 159, 36, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.hero-search-widget .hero-flight-class-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    pointer-events: none;
    display: block !important;
    visibility: visible !important;
    -webkit-appearance: none;
    appearance: none;
}

.hero-search-widget .hero-flight-class-card {
    pointer-events: auto;
}

.hero-search-widget .hero-flight-class-dot {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    box-shadow: inset 0 0 0 4px transparent;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-widget .hero-flight-class-text {
    flex: 1;
    min-width: 0;
}

.hero-search-widget .hero-flight-class-card:has(.hero-flight-class-input:checked) {
    border-color: #d39f24;
    background: linear-gradient(135deg, rgba(211, 159, 36, 0.22) 0%, rgba(21, 49, 91, 0.35) 100%);
    box-shadow: 0 0 0 1px rgba(211, 159, 36, 0.35), 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-search-widget .hero-flight-class-card:has(.hero-flight-class-input:checked) .hero-flight-class-dot {
    border-color: #d39f24;
    background: #d39f24;
    box-shadow: inset 0 0 0 4px #15315b;
}

.hero-search-widget .hero-flight-class-card:has(.hero-flight-class-input:focus-visible) {
    outline: 2px solid rgba(211, 159, 36, 0.85);
    outline-offset: 2px;
}

/* Flight tab extras (same glass row style as holidays/cruises) */
.hero-flight-trip-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.hero-3 .hero-search-widget .form-header-row + .hero-search-panel .hero-flight-trip-bar {
    justify-content: flex-start;
}

.hero-flight-trip-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-flight-trip-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.hero-flight-trip-option input {
    accent-color: #fff;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.hero-search-fields--flight {
    flex-wrap: nowrap;
}

.hero-search-widget .hero-search-fields--flight > .hero-search-field--wide {
    flex: 1.15 1 0;
    min-width: 88px;
}

.hero-search-widget .hero-search-fields--flight > .hero-search-field--date {
    flex: 0 1 118px;
    min-width: 108px;
}

.hero-search-widget .hero-flight-end {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-left: auto;
    min-width: 0;
}

.hero-search-widget .hero-flight-end .hero-search-field--class {
    flex: 0 1 130px;
    min-width: 108px;
}

.hero-search-widget .hero-search-fields--flight .hero-flight-end .hero-search-field--action {
    flex: 0 0 auto;
    min-width: 100px;
    margin-left: 0;
    border-right: none;
}

.hero-search-fields--flight > .hero-search-field--wide:first-of-type {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-search-fields--flight > .hero-search-field--wide:first-of-type:has(+ .hero-search-field--swap) {
    margin-right: 0;
    border-right: none;
}

.hero-search-fields--flight > .hero-search-field--swap + .hero-search-field--wide {
    margin-left: 0;
    padding-left: 15px;
    border-left: none;
}

.hero-search-fields--flight > .hero-search-field--swap {
    flex: 0 0 52px;
    min-width: 52px;
    max-width: 52px;
    width: 52px;
    padding: 26px 0 0;
    margin: 0;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.hero-search-field--swap .hero-flight-swap-btn,
.hero-flight-swap-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08) !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #fff !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-flight-swap-btn i,
.hero-flight-swap-btn .fa-solid {
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
}

.hero-flight-swap-btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background-image: none !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.hero-search-panel[data-hero-panel="flights"].is-one-way .hero-search-field--return {
    display: none !important;
}

@media (max-width: 991px) {
    .hero-search-widget .hero-search-fields {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .hero-search-widget .hero-search-field {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 2px;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 4px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 0;
    }

    .hero-search-widget .hero-search-field:last-child,
    .hero-search-widget .hero-search-field--action {
        margin-left: 0;
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 2px;
    }

    .hero-search-widget .hero-search-field > label:not(.visually-hidden) {
        height: auto !important;
        min-height: 0 !important;
        max-height: none;
        font-size: 12px;
        line-height: 1.1;
        letter-spacing: 0.02em;
        margin: 0 !important;
        padding: 0;
    }

    .hero-search-widget .hero-search-field > .hero-search-trigger,
    .hero-search-widget .hero-search-field > .hero-search-select,
    .hero-search-widget .hero-search-field > .hero-search-input {
        height: 42px;
        min-height: 42px;
        margin-top: 0;
        padding: 0 12px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.08);
        font-size: 15px;
    }

    .hero-search-widget .hero-search-trigger {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-search-widget .hero-search-select {
        line-height: 42px;
        padding-right: 36px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
    }

    .hero-search-widget .hero-search-input[type="date"] {
        padding-right: 10px;
    }

    .hero-search-widget .hero-search-field--action .btn-search-dark {
        margin-top: 2px;
    }

    /* Flight tab — stacked mobile layout */
    .hero-search-widget .hero-search-fields.hero-search-fields--flight,
    .hero-search-widget .hero-search-fields--flight {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0;
    }

    .hero-search-widget .hero-search-fields--flight > .hero-search-field,
    .hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field--wide,
    .hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field--date,
    .hero-search-widget.is-tab-flights .hero-search-fields--flight > .hero-search-field:not(.hero-search-field--wide):not(.hero-search-field--swap):not(.hero-search-field--date):not(.hero-search-field--return) {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .hero-search-fields--flight > .hero-search-field--swap + .hero-search-field--wide {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .hero-search-widget .hero-flight-end {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex: 1 1 auto;
        width: 100%;
        margin-left: 0;
        gap: 0;
    }

    .hero-search-widget .hero-search-field--action,
    .hero-search-fields--flight > .hero-search-field--swap {
        padding-top: 0;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    .hero-search-widget .hero-flight-end .hero-search-field--class,
    .hero-search-widget .hero-flight-end .hero-search-field--action {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-search-fields--flight > .hero-search-field--swap {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4px 0;
        margin: 0;
        border: none;
        border-bottom: none;
        padding-bottom: 4px;
    }

    .hero-search-field--swap .hero-flight-swap-btn,
    .hero-flight-swap-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        flex-shrink: 0;
        border-radius: 8px;
        padding: 0;
    }

    .hero-search-field--swap .hero-flight-swap-btn i,
    .hero-flight-swap-btn i {
        font-size: 14px;
    }

    .hero-search-widget .hero-search-field--action .btn-search-dark {
        width: 100%;
        margin-top: 2px;
    }
}

@media (max-width: 768px) {
    .hero-search-widget > .form-header-row,
    .hero-search-widget .hero-search-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .hero-search-widget > .form-header-row .form-title,
    .hero-search-widget .hero-search-header .form-title {
        font-size: 20px;
        line-height: 1.25;
    }

    .hero-search-widget .hero-search-tabs,
    .hero-search-widget .form-tabs-inline {
        justify-content: stretch;
        width: 100%;
        gap: 8px;
    }

    .hero-search-widget .hero-search-tab,
    .hero-search-widget .form-tabs-inline .tab-btn {
        flex: 1 1 0;
        justify-content: center;
        min-width: 0;
        font-size: 13px;
        padding: 10px 8px;
    }

    .hero-search-widget .hero-search-tab i {
        font-size: 14px;
    }

}

/* Hero search — compact mobile (wins over theme + Disney inline) */
@media (max-width: 991px) {
    #heroSearchWidget.hero-search-widget .hero-search-fields,
    .travel-form-wrap-horizontal.hero-search-widget .hero-search-fields {
        gap: 0 !important;
        row-gap: 0 !important;
    }

    #heroSearchWidget.hero-search-widget .hero-search-field,
    .travel-form-wrap-horizontal.hero-search-widget .hero-search-field {
        gap: 1px !important;
        padding-bottom: 2px !important;
        margin-bottom: 0 !important;
        min-height: 0 !important;
    }

    #heroSearchWidget.hero-search-widget,
    .travel-form-wrap-horizontal.hero-search-widget {
        padding: 14px 16px !important;
    }

    #heroSearchWidget.hero-search-widget .form-header-row,
    #heroSearchWidget.hero-search-widget .hero-search-header {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }

    #heroSearchWidget.hero-search-widget .hero-search-field > label:not(.visually-hidden),
    .travel-form-wrap-horizontal.hero-search-widget .hero-search-field > label:not(.visually-hidden) {
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.1 !important;
    }

    #heroSearchWidget.hero-search-widget .hero-search-field--action,
    .travel-form-wrap-horizontal.hero-search-widget .hero-search-field--action {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 4px !important;
    }

    #heroSearchWidget.hero-search-widget .hero-search-fields.hero-search-fields--flight,
    .travel-form-wrap-horizontal.hero-search-widget .hero-search-fields.hero-search-fields--flight {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    #heroSearchWidget.hero-search-widget .hero-search-fields--flight > .hero-search-field,
    #heroSearchWidget.is-tab-flights .hero-search-fields--flight > .hero-search-field--wide,
    #heroSearchWidget.is-tab-flights .hero-search-fields--flight > .hero-search-field--date,
    .travel-form-wrap-horizontal.is-tab-flights .hero-search-fields--flight > .hero-search-field {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    #heroSearchWidget .hero-search-fields--flight > .hero-search-field--swap,
    .travel-form-wrap-horizontal .hero-search-fields--flight > .hero-search-field--swap {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 4px 0 !important;
        margin: 0 !important;
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    #heroSearchWidget .hero-search-fields--flight > .hero-search-field--swap + .hero-search-field--wide,
    .travel-form-wrap-horizontal .hero-search-fields--flight > .hero-search-field--swap + .hero-search-field--wide {
        padding-left: 0 !important;
        margin-left: 0 !important;
        border-left: none !important;
    }

    #heroSearchWidget .hero-flight-end,
    .travel-form-wrap-horizontal .hero-flight-end {
        flex-direction: column !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    #heroSearchWidget .hero-flight-swap-btn,
    .travel-form-wrap-horizontal .hero-flight-swap-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 8px !important;
        padding: 0 !important;
    }
}

/* Hero search — mobile viewport containment (index + Disney; avoids 100vw clip on some devices) */
@media (max-width: 991px) {
    body.theme2 {
        overflow-x: clip;
    }

    #heroSearchWidget.hero-search-widget,
    .travel-form-wrap-horizontal.hero-search-widget {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        /* Do not use overflow-x: hidden here — it forces overflow-y to clip open menus */
        overflow: visible !important;
    }

    body.disney-page #heroSearchWidget.is-hero-disney-page,
    body.disney-page .travel-form-wrap-horizontal.is-hero-disney-page {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .hero-3 .container-fluid {
        max-width: 100%;
        overflow: visible !important;
    }

    .hero-3.th-hero-wrapper,
    .hero-3 .hero-wrapper,
    .hero-3 .hero-style3 {
        overflow: visible !important;
    }

    .hero-3 .hero-style3 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-3 .hero-search-widget,
    .hero-3 .travel-form-wrap-horizontal.hero-search-widget {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-search-widget .hero-search-header,
    .hero-search-widget > .form-header-row,
    .hero-search-widget .hero-search-panel,
    .hero-search-widget .hero-search-fields {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .hero-search-widget .hero-search-field,
    .hero-search-widget .hero-search-field--wide,
    .hero-search-widget .hero-search-field--action {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
        border-right: none !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .hero-search-widget .hero-search-field:has(.hero-search-menu.is-open) {
        z-index: 80;
    }

    .hero-search-widget .hero-search-menu.is-open {
        z-index: 1200 !important;
    }

    .hero-search-widget .hero-search-menu.hero-search-travelers-panel.is-open {
        display: flex !important;
        overflow: visible !important;
        max-height: none !important;
    }

    .hero-search-widget .hero-search-tabs,
    .hero-search-widget .form-tabs-inline {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-search-widget .hero-search-trigger,
    .hero-search-widget .hero-search-select,
    .hero-search-widget .hero-search-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-search-widget .hero-search-trigger .trigger-value {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    body.disney-page #heroSearchWidget.is-hero-disney-page,
    body.disney-page .travel-form-wrap-horizontal.is-hero-disney-page {
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
}

/* ===== INSTAGRAM FEED GRID ===== */
.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 6px;
}

.insta-item {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-item .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(103, 65, 217, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.3rem;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ===== WE ACCEPT PAYMENT BADGES ===== */
.we-accept-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 14px 0 10px;
}

.we-accept-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 220px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.payment-badge i {
    font-size: 1.3rem;
    color: #222;
}

.payment-badge.visa i       { color: #1a1f71; }
.payment-badge.mastercard i { color: #eb001b; }
.payment-badge.amex i       { color: #007bc1; }
.payment-badge.paypal i     { color: #003087; }
.payment-badge.applepay i   { color: #000; }
.payment-badge.googlepay i  { color: #4285f4; }
.payment-badge.klarna       { background: #ffb3c7; color: #000; }
.payment-badge.clearpay     { background: #b2fce4; color: #000; }
.payment-badge.link         { background: #625afa; color: #fff; }

/* Contact Us Dark Theme Support */
.contact-dark-sec {
    background-color: #0B1C2E;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.contact-dark-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(30,58,138,0.2) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(211,159,36,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.contact-info-wrap {
    padding-right: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-wrap h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.contact-info-wrap h4 {
    color: #d39f24;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.contact-info-wrap p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}
.contact-info-list li:hover {
    transform: translateX(5px);
}
.contact-info-list li:last-child {
    margin-bottom: 0;
}
.contact-info-list .icon {
    width: 65px;
    height: 65px;
    background: rgba(211, 159, 36, 0.1);
    border: 1px solid rgba(211, 159, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d39f24;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.contact-info-list li:hover .icon {
    background: #d39f24;
    color: #fff;
}
.contact-info-list .info-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-list .info-body h5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.contact-info-list .info-body p, 
.contact-info-list .info-body a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-list .info-body a:hover {
    color: #d39f24;
}

/* Contact Form */
.contact-form-dark {
    background: #111e30;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.contact-form-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d39f24, #1c46ff);
}
.contact-form-dark h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.contact-form-dark > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 16px;
}
.contact-form-dark .form-group {
    margin-bottom: 25px;
}
.contact-form-dark .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form-dark .form-group label span {
    color: #ff4d4d;
}
.contact-form-dark .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    height: auto;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}
.contact-form-dark .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d39f24;
    box-shadow: 0 0 0 4px rgba(211, 159, 36, 0.1);
    outline: none;
}
.contact-form-dark textarea.form-control {
    height: 160px;
    resize: none;
}
.contact-form-dark .btn-send {
    background: #d39f24;
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(211, 159, 36, 0.2);
}
.contact-form-dark .btn-send:hover {
    background: #b08d4a;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(211, 159, 36, 0.3);
}

@media (max-width: 991px) {
    .contact-info-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .contact-form-dark {
        padding: 40px 30px;
    }
}

/* Floating contact widget (from assets/css/custom.css) */
#contact-btn {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

#contact-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#contact-btn1 {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

#contact-btn1.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.contact-container {
    position: fixed;
    bottom: 90px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 10000;
}

#contact-btn1 {
    position: absolute;
    right: 56px;
    background-color: #90a0c6;
    color: black;
    width: 100px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    animation: pulse 2.5s infinite;
}

#contact-btn1:hover {
    transform: scale(1.1);
}

#contact-btn {
    background-color: #90a0c6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    animation: pulse 2.5s infinite;
}

#contact-btn:hover {
    transform: scale(1.1);
}

#chat-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.contact-icon {
    padding: 8px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.contact-icon a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.messenger {
    background-color: #0084FF;
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #fccc63, #bc1888, #e1306c);
}

.phone {
    background-color: #0FC24F;
}

.facebook {
    background-color: #1877F2;
}

.tooltip {
    position: absolute;
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
}

.contact-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.contact {
    font-size: 20px;
    margin: 15px auto;
    position: relative;
}

/* Preloader OWTT letters + gold strip: mobile (extra-large) */
@media (max-width: 767.98px) {
    #preloader .loader-wrapper {
        height: auto !important;
        min-height: clamp(6rem, 32vw, 9.5rem) !important;
        margin: 0.75rem !important;
        padding: 0 0.4rem !important;
        font-size: clamp(3rem, 14vw, 4.75rem) !important;
        scale: 1.48 !important;
        max-width: min(100vw - 0.35rem, 34rem);
        box-sizing: border-box;
    }
    #preloader .loader {
        -webkit-mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, var(--theme-color) 6px, var(--theme-color) 10px);
        mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, var(--theme-color) 6px, var(--theme-color) 10px);
    }
}
@media (max-width: 480px) {
    #preloader .loader-wrapper {
        min-height: clamp(5rem, 28vw, 7.5rem) !important;
        margin: 0.55rem !important;
        font-size: clamp(2.65rem, 12.5vw, 4rem) !important;
        scale: 1.38 !important;
    }
    #preloader .loader {
        -webkit-mask: repeating-linear-gradient(90deg, transparent 0, transparent 5px, var(--theme-color) 5px, var(--theme-color) 8px);
        mask: repeating-linear-gradient(90deg, transparent 0, transparent 5px, var(--theme-color) 5px, var(--theme-color) 8px);
    }
}
@media (max-width: 360px) {
    #preloader .loader-wrapper {
        font-size: clamp(2.35rem, 11vw, 3.35rem) !important;
        min-height: clamp(4.5rem, 24vw, 6rem) !important;
        scale: 1.28 !important;
    }
}

/* Hero search enquiry modal — matches OWTT dark glass theme */
html.hs-enquiry-scroll-lock,
html.hs-enquiry-scroll-lock body.hs-enquiry-scroll-lock {
    overflow: hidden !important;
    height: 100%;
    overscroll-behavior: none;
}

body.hs-enquiry-scroll-lock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

body.hs-enquiry-scroll-lock .th-hero-wrapper,
body.hs-enquiry-scroll-lock .marquee,
body.hs-enquiry-scroll-lock .header-layout3 {
    z-index: 0 !important;
}

.hs-enquiry-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100050;
    background: rgba(5, 8, 20, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    overscroll-behavior: contain;
}

.hs-enquiry-overlay.is-open {
    display: flex;
}

.hs-enquiry-overlay[hidden] {
    display: none !important;
}

.hs-enquiry-overlay.is-open[hidden] {
    display: flex !important;
}

.hs-enquiry-dialog {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 1040px;
    min-height: 0;
    max-height: calc(100dvh - 32px);
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: rgba(10, 27, 54, 0.94);
    color: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 32px 36px 36px;
}

.hs-enquiry-dialog.is-flights {
    max-width: 1100px;
}

.hs-enquiry-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hs-enquiry-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.hs-enquiry-header {
    padding-right: 44px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hs-enquiry-header h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-align: left;
}

.hs-enquiry-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.hs-enquiry-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    min-height: 420px;
}

.hs-enquiry-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 8px;
}

.hs-enquiry-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 12px 0;
}

.hs-enquiry-summary-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(211, 159, 36, 0.15);
    color: #d39f24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hs-enquiry-summary-text h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #d39f24;
}

.hs-enquiry-summary-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hs-enquiry-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#hsEnquiryForm {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hs-enquiry-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-enquiry-field {
    margin-bottom: 14px;
}

.hs-enquiry-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hs-enquiry-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.hs-enquiry-field input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 15px;
    background-color: #0a1b36;
    color: #fff;
    color-scheme: dark;
}

.hs-enquiry-field input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

.hs-enquiry-field input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

.hs-enquiry-field input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

.hs-enquiry-field input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

.hs-enquiry-field input:focus {
    outline: none;
    border-color: #d39f24;
    box-shadow: 0 0 0 3px rgba(211, 159, 36, 0.2);
}

.hs-enquiry-field input.hs-input-error {
    border-color: #f87171;
}

.hs-enquiry-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.hs-enquiry-btn {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hs-enquiry-actions .hs-enquiry-btn.btn-search-dark {
    padding: 0 16px;
    height: 42px;
}

.hs-enquiry-btn-primary {
    background: #0b1a30;
    color: #fff;
    border: none;
}

.hs-enquiry-btn-primary:hover:not(:disabled) {
    background: #15315b;
}

.hs-enquiry-btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.hs-enquiry-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hs-enquiry-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hs-enquiry-message {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.hs-enquiry-message.is-success {
    color: #86efac;
}

.hs-enquiry-message.is-error {
    color: #fca5a5;
}

/* Perfect Cruise — destination image cards (4-up slider) */
.owtt-cruise-dest-slider-wrap {
    position: relative;
    padding: 0 48px;
}

.owtt-cruise-dest-slider-wrap .cruise-prev,
.owtt-cruise-dest-slider-wrap .cruise-next {
    color: #fff;
}

.owtt-cruise-dest-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    min-height: 480px;
    aspect-ratio: 3 / 4.2;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.owtt-cruise-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    color: #fff;
}

.owtt-cruise-dest-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.owtt-cruise-dest-media.is-placeholder {
    background: linear-gradient(145deg, #1a3a6b 0%, #0d1f3f 55%, #050510 100%);
}

.owtt-cruise-dest-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.owtt-cruise-dest-card:hover .owtt-cruise-dest-media img {
    transform: scale(1.06);
}

.owtt-cruise-dest-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 10, 25, 0.05) 35%,
        rgba(5, 10, 25, 0.45) 65%,
        rgba(5, 10, 25, 0.82) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.owtt-cruise-dest-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.owtt-cruise-dest-body--minimal {
    padding: 18px 20px 20px;
    gap: 0;
}

.owtt-cruise-dest-card--minimal .owtt-cruise-dest-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.owtt-cruise-dest-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.owtt-cruise-dest-title {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.owtt-cruise-dest-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #e85d5d;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.owtt-cruise-dest-card:hover .owtt-cruise-dest-explore {
    opacity: 1;
    transform: translateY(0);
}

.owtt-cruise-dest-explore i {
    font-size: 12px;
}

#cruiseSlide1 .swiper-slide {
    height: auto;
}

@media (max-width: 991px) {
    .owtt-cruise-dest-slider-wrap {
        padding: 0 36px;
    }

    .owtt-cruise-dest-card {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .owtt-cruise-dest-slider-wrap {
        padding: 0 8px;
    }

    .owtt-cruise-dest-explore {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .hs-enquiry-body {
        grid-template-columns: 1fr;
    }

    .hs-enquiry-field-row {
        grid-template-columns: 1fr;
    }
}

/* Index + Disney: white placeholders (exclude results/legal pages) */
body.theme2:not(.owtt-results-body) input::placeholder,
body.theme2:not(.owtt-results-body) textarea::placeholder,
body.theme2:not(.owtt-results-body) .form-control::placeholder,
body.theme2:not(.owtt-results-body) select::placeholder {
    color: #ffffff !important;
    opacity: 1;
}

body.theme2:not(.owtt-results-body) input::-webkit-input-placeholder,
body.theme2:not(.owtt-results-body) textarea::-webkit-input-placeholder,
body.theme2:not(.owtt-results-body) .form-control::-webkit-input-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

body.theme2:not(.owtt-results-body) input::-moz-placeholder,
body.theme2:not(.owtt-results-body) textarea::-moz-placeholder,
body.theme2:not(.owtt-results-body) .form-control::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

/* Enquiry modal — muted gray placeholders (overrides theme2 white rule above) */
body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field input::placeholder,
body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field input::-webkit-input-placeholder,
body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field input::-moz-placeholder,
body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field input:-ms-input-placeholder,
body.theme2:not(.owtt-results-body) .hs-enquiry-dialog .hs-enquiry-field textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

body.theme2:not(.owtt-results-body) .hero-search-widget .hero-search-trigger .trigger-value:not(.is-set) {
    color: #ffffff !important;
}

/* ==========================================================================
   Home index — mobile layout fixes (broken tilted grid, 100vh black gaps)
   ========================================================================== */
@media (max-width: 991px) {
    body.theme2 {
        overflow-x: hidden;
    }

    .hero-3.th-hero-wrapper,
    .hero-3 .hero-wrapper {
        overflow: visible !important;
    }

    .featured-tours-sec#tours-sec {
        margin-top: 0;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    /* Destination photo grid below hero — flat 2-column grid */
    .space-top.overflow-hidden .cta-wrapp {
        perspective: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .space-top.overflow-hidden .cta-wrapp .cta-item {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Highlights — one viewport section on mobile (carousel, not stacked cards) */
    #features-sec.th-feature-revealing-slider,
    #features-sec.th-feature-revealing-slider.owtt-feature-slider--mobile-carousel {
        height: min(68vh, 480px) !important;
        min-height: 300px !important;
        max-height: 520px !important;
        overflow: hidden !important;
        margin: 0 12px 24px !important;
        border-radius: 16px !important;
        background: #050510;
    }

    #features-sec .th-feature-revealing-slider-slides {
        height: 100% !important;
        display: block !important;
        position: relative !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    #features-sec .th-feature-revealing-slide {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        transform: none !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 16px !important;
        margin: 0 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1;
    }

    #features-sec .th-feature-revealing-slide.s-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2;
    }

    #features-sec .th-feature-revealing-slide-inner {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
        margin: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    #features-sec .th-feature-revealing-slide-inner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #features-sec .th-feature-revealing-slide-content {
        padding: 0 48px;
    }

    #features-sec .th-feature-revealing-slider-control {
        display: block !important;
        --controlSize: 44px;
        top: 50% !important;
        left: 10px !important;
        margin-left: 0 !important;
        margin-top: calc(var(--controlSize) / -2) !important;
        z-index: 10;
    }

    #features-sec .th-feature-revealing-slider-control-right {
        left: auto !important;
        right: 10px !important;
    }

    /* Center chevrons in circle (theme lines use fixed px for 60px controls) */
    #features-sec .th-feature-revealing-slider-control .th-feature-revealing-slider-control-line {
        display: none !important;
    }

    #features-sec .th-feature-revealing-slider-control::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 9px;
        height: 9px;
        margin: 0;
        border-top: 2.5px solid var(--title-color, #1a1a1a);
        border-right: 2.5px solid var(--title-color, #1a1a1a);
        box-sizing: border-box;
        pointer-events: none;
    }

    #features-sec .th-feature-revealing-slider-control:not(.th-feature-revealing-slider-control-right)::after {
        transform: translate(-50%, -50%) rotate(-135deg);
    }

    #features-sec .th-feature-revealing-slider-control-right::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #features-sec .th-feature-revealing-slider-control:hover::after {
        border-color: var(--title-color, #1a1a1a);
    }

    /* Stats row after premium section */
    .counter-area.bounce_animation,
    .counter-area .bounce__anim,
    .counter-area .counter-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .mouseCursor {
        display: none !important;
    }

    #case-studies-sec.space {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }
}

@media (max-width: 767px) {
    body.theme2 .footer-bottom {
        margin-bottom: 48px !important;
    }
}