/*
 * Homepage Enhancements — BOWP1 Theme
 * Scoped to body.home (WordPress adds this class on the front page).
 * Booking, payment, and member pages are NOT affected.
 */

/* =============================================
   HERO SECTION — split layout
   Search form left (~33%), rotating banner right (~67%)
   Mirrors original col-lg-4 / col-lg-8 proportions
   ============================================= */

.home .hp-hero {
    background: #f3f1ff;
    margin: 0 !important;
    padding: 0 !important;
}

.home .hp-hero__container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Two-column flex row — both columns stretch to the tallest one */
.home .hp-hero__inner {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

/* LEFT column — search card (~33%) */
.home .hp-hero__left {
    flex: 0 0 33%;
    max-width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Search card fills the full height of the left column */
.home .hp-search-card {
    flex: 1 1 auto;
}

/* Tagline above search card */
.home .hp-hero__tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme, #1e3a8e);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 0.7;
}
.home .hp-hero__tagline-line {
    flex: 0 0 20px;
    height: 1px;
    background: var(--theme, #1e3a8e);
    display: block;
    opacity: 0.4;
}

/* RIGHT column — banner (~67%) */
.home .hp-hero__right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.home .hp-hero__right #image_holder,
.home .hp-hero__right .imgSlider,
.home .hp-hero__right #content_paneletc {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Banner carousel — stretch to match the search card height */
.home .hp-hero__right #myGallery {
    border-radius: 12px;
    overflow: hidden;
    height: 100% !important;
    min-height: 372px;
    width: 100% !important;
    flex: 1 1 auto;
}

.home .hp-hero__right .carousel-inner,
.home .hp-hero__right .carousel-inner > .item {
    height: 100% !important;
}

.home .hp-hero__right .carousel-inner > .item > img,
.home .hp-hero__right .carousel-inner > .item > a > img {
    width: 100% !important;
    height: 100% !important;
    min-height: 372px;
    object-fit: cover !important;
    object-position: center center;
}

/* Carousel arrows */
.home .hp-hero__right .carousel-control {
    border-radius: 12px;
}

/* =============================================
   SEARCH CARD
   ============================================= */

.home .hp-search-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(30,58,142,0.12);
    padding: 20px 18px 18px;
    border: 1px solid #e8eeff;
}

.home .hp-search-card .tab-bus {
    background: transparent !important;
    padding: 0 !important;
}

/* Search card title */
.home .hp-search-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme, #1e3a8e);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home .hp-search-title i {
    font-size: 15px;
    opacity: 0.8;
}

.home .hp-trip-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    background: #f0f2f8;
    border-radius: 10px;
    padding: 4px;
    width: 100%;
}

.home .hp-trip-toggle input[type="radio"] {
    display: none;
}

/* Each toggle item wraps input+label and takes exactly 50% */
.home .hp-toggle-item {
    flex: 1 1 50%;
    display: flex;
}

.home .hp-trip-toggle input[type="radio"] + label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    width: 100%;
    padding: 10px 8px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: #888;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    height: auto;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.home .hp-trip-toggle input[type="radio"]:checked + label,
.home .hp-trip-toggle input[type="radio"][checked] + label {
    background: #fff;
    color: var(--theme, #1e3a8e) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(30,58,142,0.12);
}

/* Each field stacks vertically inside the card — full width */
.home .hp-field-group {
    width: 100%;
    margin-bottom: 8px;
}

.home .hp-search-inner,
.home .hp-search-card .tab-bus {
    width: 100% !important;
}

/* Dates sit side by side */
.home .hp-dates-row {
    display: flex;
    gap: 8px;
}
.home .hp-dates-row .hp-field-group {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 8px;
}

/* Label — no margin bottom, sits flush above input */
.home .hp-field-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #999 !important;
    margin-bottom: 0;
    padding-bottom: 4px;
    line-height: 1;
}

.home .hp-field-icon {
    color: var(--theme, #1e3a8e);
    font-size: 11px;
}

.home .hp-field-icon--dest {
    color: var(--theme, #1e3a8e);
}

/* Book Now button row */
.home .hp-btn-wrap {
    margin-top: 4px;
}

.home .hp-input-group .hp-input {
    height: 48px !important;
    width: 100% !important;
    border: 1.5px solid #dde3f5 !important;
    border-right: none !important;
    border-radius: 10px 0 0 10px !important;
    font-size: 14px !important;
    color: #2d2d2d !important;
    background: #fafbff !important;
    padding-left: 14px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    min-width: 0;
}

/* Use flexbox so input + addon are always same height */
.home .hp-search-card .input-group,
.home .hp-input-group {
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
}

.home .hp-search-card .input-group .form-control {
    width: 100% !important;
    flex: 1;
}

.home .hp-input-group .hp-input:focus {
    border-color: var(--theme, #1e3a8e) !important;
    box-shadow: 0 0 0 3px rgba(30,58,142,0.1) !important;
    outline: none !important;
    background: #fff !important;
}

.home .hp-input-group .hp-input::placeholder {
    color: #bbb;
    font-size: 13px;
}

.home .hp-input-addon {
    background: #f0f3ff !important;
    border: 1.5px solid #dde3f5 !important;
    border-left: none !important;
    border-radius: 0 10px 10px 0 !important;
    color: var(--theme, #1e3a8e) !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 11px !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    width: 35px !important;
    /* Override Bootstrap table-cell */
    float: none !important;
    vertical-align: middle !important;
    line-height: normal !important;
}

.home .hp-swap-icon {
    flex: 0 0 auto;
    align-self: flex-end;
    margin-bottom: 10px;
    color: #bbb;
    font-size: 16px;
}

.home .hp-search-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100% !important;
    height: 52px !important;
    background: #FA2B31 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 14px rgba(250,43,49,0.35);
}

.home .hp-search-btn:hover {
    background: #d9232a !important;
    transform: translateY(-1px);
}

/* =============================================
   TRUST BADGES
   ============================================= */

.home .hp-trust {
    background: #fff;
    border-bottom: 1px solid #eef0f8;
    margin: 0 !important;
    padding: 0 !important;
}

.home .hp-trust .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.home .hp-trust__grid {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #eef0f8;
}

.home .hp-trust__item {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid #eef0f8;
    border-bottom: 1px solid #eef0f8;
}

.home .hp-trust__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home .hp-trust__icon i {
    font-size: 18px;
    color: var(--theme, #1e3a8e);
}

.home .hp-trust__text strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}

.home .hp-trust__text span {
    font-size: 12px;
    color: #888;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.home .hp-steps {
    background: #f5f7ff;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 16px !important;
}

.home .hp-steps .container {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}

.home .hp-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.home .hp-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme, #1e3a8e);
    margin: 0 0 6px;
}

.home .hp-section-sub {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.home .hp-steps__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.home .hp-steps__item {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.home .hp-steps__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(30,58,142,0.07);
    line-height: 1;
    pointer-events: none;
}

.home .hp-steps__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--theme, #1e3a8e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 6px 20px rgba(30,58,142,0.25);
}

.home .hp-steps__icon i {
    font-size: 24px;
    color: #fff;
}

.home .hp-steps__item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.home .hp-steps__item p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.home .hp-steps__connector {
    width: 50px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--theme,#1e3a8e) 0, var(--theme,#1e3a8e) 6px, transparent 6px, transparent 12px);
    flex-shrink: 0;
    margin-bottom: 20px;
}

/* =============================================
   MOBILE
   ============================================= */

/* =============================================
   MOBILE — compact, no wasted space
   ============================================= */

@media (max-width: 767px) {

    /* Hero — no extra padding */
    .home .hp-hero { background: #fff; }
    .home .hp-hero__container {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .home .hp-hero__inner { flex-direction: column; gap: 0; }
    .home .hp-hero__left  { flex: 1 1 100%; max-width: 100%; }

    /* Tagline — hide on mobile, saves space */
    .home .hp-hero__tagline { display: none; }

    /* Search card — tight padding */
    .home .hp-search-card {
        padding: 12px 12px 12px;
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(30,58,142,0.10);
    }

    /* Search title smaller */
    .home .hp-search-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Toggle — same tab style, slightly smaller text on mobile */
    .home .hp-trip-toggle { margin-bottom: 10px; }
    .home .hp-trip-toggle input[type="radio"] + label {
        padding: 9px 8px;
        font-size: 13px;
    }

    /* Fields — bigger touch targets */
    .home .hp-field-group { margin-bottom: 10px; }
    .home .hp-field-label { margin-bottom: 0; padding-bottom: 4px; font-size: 11px !important; }

    .home .hp-input-group .hp-input {
        height: 52px !important;
        font-size: 15px !important;
        padding-left: 14px !important;
    }
    .home .hp-input-addon {
        height: auto !important;
        line-height: normal !important;
        padding: 0 11px;
        font-size: 16px;
        width: 35px;
    }

    /* Dates side by side on mobile too */
    .home .hp-dates-row { flex-direction: row; gap: 8px; }
    .home .hp-dates-row .hp-field-group { margin-bottom: 10px; }

    /* Button — bigger tap target */
    .home .hp-search-btn {
        height: 52px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    .home .hp-btn-wrap { margin-top: 4px; }

    /* Trust badges — zero out container margins, 2x2 grid, compact items */
    .home .hp-trust .container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .home .hp-trust__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        border-left: none;
    }
    .home .hp-trust__item {
        padding: 10px 12px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        border-bottom: 1px solid #eef0f8;
        border-right: 1px solid #eef0f8;
    }
    .home .hp-trust__icon {
        width: 30px; height: 30px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .home .hp-trust__icon i { font-size: 13px; }
    .home .hp-trust__text strong { font-size: 13px; }
    .home .hp-trust__text span { font-size: 12px; }

    /* How it works — full width, no scroll, 3 compact items in a row */
    .home .hp-steps .container {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        overflow: visible;
    }
    .home .hp-section-header { margin-bottom: 12px; }
    .home .hp-section-title  { font-size: 18px; }
    .home .hp-section-sub    { font-size: 13px; }

    .home .hp-steps__grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 4px;
        padding-bottom: 0;
    }
    .home .hp-steps__item {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 10px 4px;
    }
    .home .hp-steps__num { font-size: 24px; top: 6px; right: 4px; }
    .home .hp-steps__icon {
        width: 36px; height: 36px;
        margin-bottom: 6px;
    }
    .home .hp-steps__icon i { font-size: 14px; }
    .home .hp-steps__item h4 { font-size: 13px; margin-bottom: 3px; }
    .home .hp-steps__item p  { font-size: 12px; line-height: 1.4; }
    .home .hp-steps__connector { display: none; }

    /* WP page sections — tighter padding */
    .ht-section { padding: 24px 12px 12px; }
    .ht-section__title { font-size: 18px; }
    .ht-section__sub   { font-size: 13px; }

    .ht-routes__grid,
    .ht-promos__grid,
    .ht-why__grid { grid-template-columns: 1fr; gap: 10px; }

    .ht-reviews__grid { grid-template-columns: 1fr; gap: 10px; }
    .ht-reviews__score { font-size: 36px; }
    .ht-promo-card__discount { font-size: 22px; }

    /* Why cards — horizontal compact row */
    .ht-why__item { padding: 14px 12px; }
    .ht-why__icon { width: 44px; height: 44px; font-size: 18px; }

    /* FAQ */
    .ht-faq__q { font-size: 14px; padding: 12px 0; }
    .ht-faq__a { font-size: 13px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .hp-hero__left { flex: 0 0 38%; max-width: 38%; }
    .home .hp-hero__right #myGallery { height: 320px !important; }
    .home .hp-hero__right .carousel-inner > .item > img,
    .home .hp-hero__right .carousel-inner > .item > a > img { height: 320px !important; }
}


/* ==============================================
   SINGLE-ROW HEADER (site-wide)
   ============================================== */

/* Override old stacked layout */
#header .header-wrap {
    /* background: #ffffff !important; */
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nh-bar {
    width: 100%;
    /* background: #ffffff; */
}

.nh-container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 68px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    gap: 0;
}

/* Logo */
.nh-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nh-logo .logo {
    max-height: 52px !important;
    width: auto;
    display: block !important;
    padding: 4px 0 !important;
}

/* Centre nav */
.nh-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nh-nav #nav {
    display: flex;
    align-items: center;
}

/* Override Bootstrap collapse so nav shows inline on desktop */
@media (min-width: 1200px) {
    .nh-nav .navbar-collapse {
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nh-nav .nh-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    .nh-nav .nh-menu > li {
        float: none !important;
    }

    .nh-nav .nh-menu > li > a {
        padding: 8px 14px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #333 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 6px !important;
        line-height: 1.4 !important;
        transition: color 0.2s, background 0.2s;
    }

    .nh-nav .nh-menu > li > a:hover,
    .nh-nav .nh-menu > li.current-menu-item > a {
        color: var(--theme, #1e3a8e) !important;
        background: #f0f4ff !important;
    }
}

/* Right section */
.nh-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Utility links */
.nh-utils {
    display: flex;
    align-items: center;
}

.nh-utils ul {
    display: flex !important;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nh-utils li {
    display: flex !important;
    align-items: center;
}

.nh-utils a {
    color: #444 !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px !important;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    background: transparent !important;
}

.nh-utils a:hover {
    color: var(--theme, #1e3a8e) !important;
    background: #f0f4ff !important;
}

/* Currency selector */
.nh-currency {
    background: transparent !important;
    border: 1.5px solid #dde3f5 !important;
    border-radius: 6px !important;
    color: #444 !important;
    font-size: 13px !important;
    padding: 4px 8px !important;
    outline: none !important;
    cursor: pointer;
}

/* Login button — slightly styled */
.nh-login-btn {
    border: 1.5px solid #dde3f5 !important;
    border-radius: 6px !important;
}

/* CTA Button */
.nh-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    background: var(--btndefault, #1e3a8e);
    color: var(--btntext, #fff);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.1s;
    margin-left: 8px;
    box-shadow: 0 3px 10px rgba(30,58,142,0.25);
}

.nh-cta-btn:hover {
    background: var(--btndefault, #1e3a8e);
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

/* Hamburger */
.nh-hamburger {
    display: none;
    margin: 0 !important;
    border: none !important;
}

.nh-hamburger .navbar-toggle {
    background: var(--theme, #1e3a8e) !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0;
}

.nh-hamburger .navbar-toggle i {
    color: #fff !important;
}

/* Mobile collapse menu */
@media (max-width: 1200px) {
    .nh-container {
        flex-wrap: wrap;
        padding-left: 16px !important;
        padding-right: 16px !important;
        min-height: 56px;
    }

    .nh-logo { flex: 1 1 auto; }
    .nh-logo .logo { max-height: 40px !important; }

    .nh-nav {
        flex: 0 0 100%;
        order: 3;
        justify-content: flex-start;
    }

    .nh-nav .navbar-collapse {
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #eef0f8;
        padding: 8px 0;
    }

    .nh-nav .nh-menu {
        flex-direction: column !important;
        width: 100%;
    }

    .nh-nav .nh-menu > li > a {
        padding: 10px 16px !important;
        font-size: 15px !important;
        color: #333 !important;
        display: block;
        border-radius: 0 !important;
    }

    .nh-right {
        flex: 0 0 auto;
        gap: 6px;
    }

    .nh-utils { display: none; }

    .nh-cta-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .nh-hamburger {
        display: flex !important;
        align-items: center;
    }
    
    .nh-nav,
    .liMemberLoginSignup-desktop{display: none;}
}

/* Hide old stacked layout elements that are now baked into nh-bar */
#divTopHeader {
    display: none !important;
}


/* ==============================================
   MOBILE DRAWER — full-screen slide from right
   ============================================== */

/* Hide Bootstrap collapse nav on mobile — drawer handles it */
@media (max-width: 1200px) {
    .nh-nav .navbar-collapse,
    .nh-nav { display: none !important; }
    .nh-utils { display: none !important; }
    .nh-cta-btn { display: none !important; }
}

/* Hamburger button */
.nh-hamburger {
    display: none;
}
@media (max-width: 1200px) {
    .nh-hamburger {
        display: flex !important;
        align-items: center;
        margin-left: 8px;
    }
}

.nh-hamburger-btn {
    background: var(--btndefault, #1e3a8e);
    color: var(--btntext, #333);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

/* Drawer root — covers full screen, hidden by default */
.nh-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
@media (max-width: 767px) {
    .nh-drawer { display: block; pointer-events: none; }
    .nh-drawer.is-open { pointer-events: auto; }
}

/* Semi-transparent backdrop */
.nh-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nh-drawer.is-open .nh-drawer__backdrop {
    opacity: 1;
}

/* Slide panel */
.nh-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.nh-drawer.is-open .nh-drawer__panel {
    transform: translateX(0);
}

/* Drawer header row */
.nh-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eef0f8;
    flex-shrink: 0;
}

.nh-drawer__logo {
    max-height: 40px;
    width: auto;
}

.nh-drawer__close {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #444;
    cursor: pointer;
}

.nh-drawer__close:hover {
    background: #ffe5e5;
    color: #e53935;
}

/* Nav links */
.nh-drawer__nav {
    padding: 8px 0;
    flex-shrink: 0;
}

.nh-drawer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nh-drawer__menu > li > a {
    display: flex;
    align-items: center;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #222 !important;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    background: transparent !important;
    border-radius: 0 !important;
}

.nh-drawer__menu > li > a:hover,
.nh-drawer__menu > li.current-menu-item > a {
    background: #f0f4ff !important;
    color: var(--theme, #1e3a8e) !important;
}

/* Divider */
.nh-drawer__divider {
    height: 6px;
    background: #f5f7ff;
    flex-shrink: 0;
}

/* Utility items */
.nh-drawer__utils {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex-shrink: 0;
}

.nh-drawer__util-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
    color: #333;
}

/* Hide the whole row when the link inside it is display:none */
.nh-drawer__util-item:has(a[style*="display:none"]),
.nh-drawer__util-item:has(a[style*="display: none"]) {
    display: none !important;
}

.nh-drawer__util-item i {
    width: 20px;
    text-align: center;
    color: var(--theme, #1e3a8e);
    font-size: 15px;
    flex-shrink: 0;
}

.nh-drawer__util-item a {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.nh-drawer__util-item a:hover {
    color: var(--theme, #1e3a8e) !important;
}

/* Currency select inside drawer */
.nh-drawer__currency {
    flex: 1;
    border: 1.5px solid #dde3f5 !important;
    border-radius: 6px !important;
    padding: 5px 8px !important;
    font-size: 14px !important;
    color: #333 !important;
    background: #fafbff !important;
    outline: none;
}

/* CTA at bottom of drawer */
.nh-drawer__cta {
    padding: 20px 24px;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid #eef0f8;
}


/* ==============================================
   MICRO-INTERACTIONS (site-wide, .home scoped
   where homepage-only, plain selectors for
   shared elements like buttons)
   ============================================== */

/* --- Buttons: springy lift + ripple --- */
.hp-search-btn,
.nh-cta-btn,
.ht-route-card__btn,
.ht-promo-card__btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.2s ease,
                background 0.18s ease !important;
}
.hp-search-btn:hover { transform: translateY(-2px) scale(1.03) !important; }
.hp-search-btn:active { transform: scale(0.96) !important; }
.nh-cta-btn:hover { transform: translateY(-2px) scale(1.03) !important; }
.nh-cta-btn:active { transform: scale(0.96) !important; }

/* Ripple effect on Book Now / Search buttons */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    width: 0; height: 0;
    transform: translate(-50%,-50%);
    animation: htRipple 0.55s linear forwards;
    pointer-events: none;
}
@keyframes htRipple {
    to { width: 220px; height: 220px; opacity: 0; }
}

/* --- Input fields: lift + glow on focus --- */
.home .hp-input-group .hp-input {
    transition: border-color 0.25s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.25s ease,
                transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
                background 0.2s ease !important;
}
.home .hp-input-group .hp-input:focus {
    transform: scale(1.01) !important;
}
.home .hp-input-group:focus-within .hp-input-addon {
    border-color: var(--theme, #1e3a8e) !important;
    background: #eef2ff !important;
    color: var(--theme, #1e3a8e) !important;
    transition: all 0.25s ease;
}

/* --- Smooth page fade-in on load --- */
@keyframes htFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.home .hp-hero {
    animation: htFadeUp 0.55s ease both;
}

/* Scroll-reveal for trust badges and steps (in tmp-index.php) */
.home .hp-trust,
.home .hp-steps {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.home .hp-trust.ht-visible,
.home .hp-steps.ht-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-reveal for WP page sections */
.ht-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.ht-section.ht-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================================
   WP PAGE SECTIONS — shared layout
   ============================================== */

.ht-section {
    padding: 48px 0 24px;
}

.ht-section__head {
    text-align: center;
    margin-bottom: 32px;
}

.ht-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.2;
}

.ht-section__sub {
    color: #888;
    font-size: 14px;
    margin: 0;
}


/* ==============================================
   POPULAR ROUTES
   ============================================== */

.ht-routes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    gap: 16px;
    justify-content: center;
}

/* Hide empty p tags WP injects between grid items */
.ht-routes__grid p,
.ht-routes__grid p:empty,
.ht-routes__grid br {
    display: none !important;
}

.ht-route-card {
    display: block;
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease,
                border-color 0.2s ease;
    overflow: hidden;
}
.ht-route-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--theme, #1e3a8e);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.ht-route-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 32px rgba(30,58,142,0.12);
    border-color: #b0beff;
    text-decoration: none !important;
}
.ht-route-card:hover::before { transform: scaleY(1); }

.ht-route-card__badge {
    display: inline-block;
    background: #fff0f0;
    color: #FA2B31;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ht-route-card__cities {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ht-route-card__from,
.ht-route-card__to {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.ht-route-card__arrow {
    color: var(--theme, #1e3a8e);
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.ht-route-card:hover .ht-route-card__arrow { transform: translateX(4px); }

.ht-route-card__meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}
.ht-route-card__meta i { margin-right: 4px; color: var(--theme, #1e3a8e); }

.ht-route-card__price {
    font-size: 14px;
    color: #555;
}
.ht-route-card__price strong {
    color: #FA2B31;
    font-size: 18px;
}


/* ==============================================
   PROMOS
   ============================================== */

.ht-promos { background: #f5f7ff; }
.ht-promos .ht-section__head { padding-top: 8px; }

.ht-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 20px;
    justify-content: center;
}

.ht-promo-card {
    border-radius: 16px;
    overflow: hidden;
    padding: 28px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.ht-promo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    border-radius: 16px;
}
.ht-promo-card::after {
    content: '';
    position: absolute;
    right: -30px; bottom: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.ht-promo-card--red   { background: linear-gradient(135deg,#FA2B31,#c0181d); }
.ht-promo-card--navy  { background: linear-gradient(135deg,#1e3a8e,#0f2260); }
.ht-promo-card--orange{ background: linear-gradient(135deg,#f97316,#d45a00); }

.ht-promo-card__tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.ht-promo-card__discount {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.ht-promo-card__desc {
    font-size: 14px;
    opacity: 0.88;
    line-height: 1.55;
    margin-bottom: 20px;
}

.ht-promo-card__btn {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.ht-promo-card__btn:hover {
    background: rgba(255,255,255,0.32);
    transform: translateX(3px);
    text-decoration: none !important;
}


/* ==============================================
   WHY CHOOSE US
   ============================================== */

.ht-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 220px));
    gap: 24px;
    justify-content: center;
}

.ht-why__item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e8eeff;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease;
}
.ht-why__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30,58,142,0.1);
}

.ht-why__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--theme, #1e3a8e);
    transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.ht-why__item:hover .ht-why__icon {
    background: var(--theme, #1e3a8e);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

.ht-why__item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.ht-why__item p {
    font-size: 14px;
    color: #777;
    line-height: 1.55;
    margin: 0;
}


/* ==============================================
   GOOGLE REVIEWS
   ============================================== */

.ht-reviews { background: #f5f7ff; }

.ht-reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.ht-reviews__overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

.ht-reviews__score {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.ht-stars {
    color: #f59e0b;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.ht-reviews__count {
    font-size: 12px;
    color: #888;
}

.ht-reviews__grid {
    position: relative;
}

.ht-reviews__track-wrap {
    overflow: hidden;
    width: 100%;
}

.ht-reviews__track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.ht-review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}

.ht-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30,58,142,0.1);
}

/* Arrow buttons */
.ht-reviews__arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.ht-reviews__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #dde3f5;
    background: #fff;
    color: var(--theme, #1e3a8e);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.ht-reviews__arrow:hover {
    background: var(--theme, #1e3a8e);
    color: #fff;
    border-color: var(--theme, #1e3a8e);
    transform: scale(1.1);
}

.ht-reviews__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

/* Dots */
.ht-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.ht-reviews__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dde3f5;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

.ht-reviews__dot.active {
    background: var(--theme, #1e3a8e);
    transform: scale(1.3);
}

/* Mobile — 1 card at a time */
@media (max-width: 767px) {
    .ht-review-card {
        flex: 0 0 100%;
    }
}

/* Tablet — 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .ht-review-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

.ht-review-card {
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease;
}
.ht-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30,58,142,0.1);
}

.ht-review-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ht-review-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ht-review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.ht-review-card__date {
    font-size: 12px;
    color: #aaa;
}

.ht-review-card__stars {
    margin-left: auto;
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.ht-review-card__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}


/* ==============================================
   SEO TEXT + FAQ
   ============================================== */

.ht-seo__inner {
    max-width: 800px;
    margin: 0 auto;
}

.ht-seo__inner h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
}

.ht-seo__inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 32px 0 16px;
}

.ht-seo__inner p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.ht-faq { border-top: 1.5px solid #e8eeff; }

.ht-faq__item { border-bottom: 1.5px solid #e8eeff; }

.ht-faq__q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}
.ht-faq__q:hover { color: var(--theme, #1e3a8e); }
.ht-faq__item.open .ht-faq__q { color: var(--theme, #1e3a8e); }

.ht-faq__chevron {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--theme, #1e3a8e);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
    line-height: 1;
}
.ht-faq__item.open .ht-faq__chevron {
    background: var(--theme, #1e3a8e);
    color: #fff;
    transform: rotate(45deg);
}

.ht-faq__a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding: 0 0 0 2px;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                padding 0.3s ease;
}
.ht-faq__item.open .ht-faq__a { padding-bottom: 16px; }


/* ==============================================
   SCROLL-REVEAL OBSERVER (injected once)
   ============================================== */
@keyframes htSectionIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ==============================================
   MOBILE — WP page sections
   ============================================== */
@media (max-width: 767px) {
    .ht-section { padding: 24px 12px 12px; }
    .ht-section__title { font-size: 18px; }
    .ht-routes__grid,
    .ht-promos__grid,
    .ht-why__grid,
    .ht-reviews__grid { grid-template-columns: 1fr; }
    .ht-reviews__score { font-size: 36px; }
    .ht-promo-card__discount { font-size: 22px; }
}

/* Kill empty content area spacing on homepage */
.home .hp-page-content,
.home .hp-page-content .container {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Hide empty paragraphs WP injects */
.home .hp-page-content p:empty,
.home .hp-page-content br:only-child {
    display: none !important;
}
.ht-route-date-note {
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ht-route-date-note i {
    color: var(--theme, #1e3a8e);
    font-size: 11px;
}


/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

.ht-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 0%;
    transform: translateX(-50%) translateY(16px) scale(0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--theme, #1e3a8e);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(30,58,142,0.35);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease,
                transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                background 0.2s ease;
    pointer-events: none;
}

.ht-scroll-top.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.ht-scroll-top:hover {
    background: #FA2B31;
    transform: translateX(-50%) translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(250,43,49,0.4);
}

.ht-scroll-top:active {
    transform: translateX(-50%) scale(0.95);
}

@media (max-width: 767px) {
    .ht-scroll-top {
        bottom: 70px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ==============================================
   ABOUT SECTION
   ============================================== */

.ht-about__body {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ht-about__text {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.ht-about__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.ht-about__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.ht-about__chip:hover {
    border-color: var(--theme, #1e3a8e);
    background: #eef2ff;
    transform: translateY(-2px);
}

.ht-about__chip i {
    color: #FA2B31;
    font-size: 11px;
}


/* ==============================================
   WHY BOOK ONLINE SECTION
   ============================================== */

.ht-whybook { background: #f5f7ff; }

.ht-whybook__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 220px));
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.ht-whybook__card {
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}

.ht-whybook__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(30,58,142,0.1);
}

.ht-whybook__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: var(--theme, #1e3a8e);
    transition: background 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.ht-whybook__card:hover .ht-whybook__icon {
    background: var(--theme, #1e3a8e);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

.ht-whybook__card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.ht-whybook__card p {
    font-size: 13px;
    color: #777;
    line-height: 1.55;
    margin: 0;
}

.ht-whybook__highlight {
    background: #fff;
    border: 1.5px solid #e8eeff;
    border-left: 4px solid #FA2B31;
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.ht-whybook__quote-icon {
    font-size: 20px;
    color: #FA2B31;
    opacity: 0.3;
    margin-bottom: 8px;
    display: block;
}

.ht-whybook__highlight p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

@media (max-width: 767px) {
    .ht-whybook__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ht-whybook__card { padding: 14px 10px; }
    .ht-whybook__icon { width: 40px; height: 40px; font-size: 16px; }
    .ht-whybook__highlight { padding: 16px; }
    .ht-about__chips { gap: 6px; }
    .ht-about__chip { font-size: 12px; padding: 5px 10px; }
}

/* Routes grid — tablet 2 cols */
@media (min-width: 768px) and (max-width: 1199px) {
    .ht-routes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==============================================
   SHARED CAROUSEL STYLES (routes + promos)
   ============================================== */

.ht-carousel-wrap {
    position: relative;
}

.ht-carousel-track-wrap {
    overflow: hidden;
    width: 100%;
}

.ht-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Route cards in carousel */
.ht-carousel-track .ht-route-card {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
}

/* Promo cards in carousel */
.ht-carousel-track .ht-promo-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
}

/* Shared arrow + dots */
.ht-carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.ht-carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #dde3f5;
    background: #fff;
    color: var(--theme, #1e3a8e);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.ht-carousel-arrow:hover {
    background: var(--theme, #1e3a8e);
    color: #fff;
    border-color: var(--theme, #1e3a8e);
    transform: scale(1.1);
}

.ht-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

.ht-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.ht-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dde3f5;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

.ht-carousel-dot.active {
    background: var(--theme, #1e3a8e);
    transform: scale(1.3);
}

/* Mobile — 1 card */
@media (max-width: 767px) {
    .ht-carousel-track .ht-route-card,
    .ht-carousel-track .ht-promo-card {
        flex: 0 0 100%;
    }
}

/* Tablet — 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .ht-carousel-track .ht-route-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
    .ht-carousel-track .ht-promo-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

/* FAQ group headings */
.ht-faq__group {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--theme, #1e3a8e);
    margin: 24px 0 4px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2ff;
}

/* FAQ nav link in header */
.nh-faq-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--headertext, #333)!important;
    border-radius: 6px;
    text-decoration: none !important;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nh-faq-link:hover {
    color: var(--theme, #1e3a8e) !important;
    background: #f0f4ff;
}

@media (max-width: 767px) {
    .nh-faq-link { display: none; }
}
