/* ═══════════════════════════════════════════════════════════
   ATT Cabs — Premium UI/UX Theme
   Typography: Plus Jakarta Sans | Accent: Champagne Gold
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Core palette */
    --p-black: #0a0a0f;
    --p-charcoal: #141420;
    --p-navy: #1a1a2e;
    --p-slate: #2d2d44;

    /* Gold accent — luxury */
    --p-gold: #c9a84c;
    --p-gold-light: #e8d5a3;
    --p-gold-dark: #f5c518;
    --p-gold-glow: rgba(201, 168, 76, 0.35);

    /* Surfaces */
    --p-cream: #faf8f5;
    --p-surface: #ffffff;
    --p-glass: rgba(255, 255, 255, 0.72);
    --p-glass-border: rgba(255, 255, 255, 0.18);

    /* Text */
    --p-text: #0f172a;
    --p-muted: #334155;
    --p-text-soft: #475569;
    --p-border: rgba(0, 0, 0, 0.07);

    /* Legacy aliases (keep views working) */
    --wti-blue: #3b5bdb;
    --wti-blue-dark: #2f4ac0;
    --wti-navy: var(--p-navy);
    --wti-orange: var(--p-gold);
    --wti-orange-dark: var(--p-gold-dark);
    --wti-light: var(--p-cream);
    --wti-border: var(--p-border);
    --wti-text: var(--p-text);
    --wti-muted: var(--p-muted);

    /* Spacing & radius */
    --p-radius: 16px;
    --p-radius-lg: 24px;
    --p-radius-xl: 32px;
    --p-shadow-sm: 0 2px 8px rgba(10, 10, 15, 0.04);
    --p-shadow: 0 8px 32px rgba(10, 10, 15, 0.08);
    --p-shadow-lg: 0 24px 64px rgba(10, 10, 15, 0.14);
    --p-shadow-gold: 0 8px 32px var(--p-gold-glow);

    /* Motion */
    --p-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --p-duration: 0.35s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.wti-body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--p-text);
    background: var(--p-surface);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Readable dark text (site-wide) ─── */
body.wti-body .text-muted {
    color: var(--p-muted) !important;
}

body.wti-body small,
body.wti-body .small {
    color: var(--p-muted);
}

body.wti-body p,
body.wti-body li,
body.wti-body label,
body.wti-body .form-label,
body.wti-body .card-text {
    color: var(--p-text);
}

body.wti-body .cms-content,
body.wti-body .cms-content p,
body.wti-body .cms-content li,
body.wti-body .cms-content span {
    color: var(--p-text);
}

body.wti-body .form-control,
body.wti-body .form-select {
    color: var(--p-text);
}

body.wti-body ::placeholder {
    color: var(--p-text-soft);
    opacity: 1;
}

/* ─── Promo bar ─── */
.wti-promo {
    background: var(--p-charcoal);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-align: center;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.wti-promo strong { color: var(--p-gold-light); font-weight: 700; }
.wti-promo i { color: var(--p-gold); margin-right: 0.35rem; }

/* ─── Header — glass on scroll ─── */
.wti-header {
    background: var(--p-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--p-border);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow var(--p-duration) var(--p-ease);
}
.wti-header.scrolled {
    box-shadow: var(--p-shadow);
    background: #fff;
}
.wti-header .navbar-brand {
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--p-black) !important;
    letter-spacing: -0.03em;
}
.wti-header .navbar-brand span {
    background: linear-gradient(135deg, var(--p-gold), var(--p-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wti-header .nav-link {
    color: var(--p-text) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--p-duration) var(--p-ease);
}
.wti-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--p-gold), var(--p-gold-light));
    transition: width var(--p-duration) var(--p-ease), left var(--p-duration) var(--p-ease);
    border-radius: 2px;
}
.wti-header .nav-link:hover::after,
.wti-header .nav-link.active::after {
    width: 60%;
    left: 20%;
}
.wti-header .nav-link:hover,
.wti-header .nav-link.active { color: var(--p-gold-dark) !important; }

.wti-phone {
    color: var(--p-text);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--p-duration);
}
.wti-phone i { color: var(--p-gold); }

.wti-btn-login {
    border: 1.5px solid var(--p-border);
    color: var(--p-text);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.45rem 1.25rem;
    background: transparent;
    transition: all var(--p-duration) var(--p-ease);
}
.wti-btn-login:hover {
    border-color: var(--p-gold);
    color: var(--p-gold-dark);
    background: rgba(201, 168, 76, 0.06);
}

.wti-btn-register {
    background: linear-gradient(135deg, var(--p-gold) 0%, var(--p-gold-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.5rem 1.35rem;
    box-shadow: var(--p-shadow-gold);
    transition: transform var(--p-duration) var(--p-ease), box-shadow var(--p-duration);
}
.wti-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--p-gold-glow);
    color: var(--p-black);
}

/* ─── Mobile sidebar (app-style drawer) ─── */
.wti-menu-toggle {
    padding: 0.35rem 0.5rem;
    font-size: 1.65rem;
    color: var(--p-text);
    line-height: 1;
    background: transparent !important;
}
.wti-menu-toggle:focus { box-shadow: none; }

.wti-mobile-sidebar {
    width: min(300px, 88vw) !important;
    border: none;
    box-shadow: 4px 0 32px rgba(15, 23, 42, 0.18);
    z-index: 1055;
}

.wti-mobile-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 55%, #4338ca 100%);
    color: #fff;
}
.wti-mobile-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.wti-mobile-sidebar-brand > i {
    font-size: 1.35rem;
    color: var(--p-gold-light);
}
.wti-mobile-brand-accent {
    background: linear-gradient(135deg, var(--p-gold), var(--p-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wti-mobile-sidebar-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--p-duration);
}
.wti-mobile-sidebar-close:hover { background: rgba(255, 255, 255, 0.22); }

.wti-mobile-sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--p-border);
}
.wti-mobile-sidebar-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p-gold), var(--p-gold-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wti-mobile-sidebar-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--p-black);
    line-height: 1.3;
}
.wti-mobile-sidebar-email {
    font-size: 0.78rem;
    color: var(--p-muted);
    word-break: break-all;
}

.wti-mobile-sidebar-body {
    padding: 0.75rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 200px);
}

.wti-sidebar-nav {
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 0.75rem;
    margin: 0;
    list-style: none;
}
.wti-sidebar-nav .nav-item { width: 100%; }
.wti-sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--p-text) !important;
    transition: background var(--p-duration), color var(--p-duration);
}
.wti-sidebar-nav .nav-link::after { display: none; }
.wti-sidebar-nav .nav-link i {
    width: 22px;
    font-size: 1.15rem;
    color: #6366f1;
    flex-shrink: 0;
}
.wti-sidebar-nav .nav-link:hover,
.wti-sidebar-nav .nav-link.active {
    background: rgba(99, 102, 241, 0.08);
    color: #4338ca !important;
}
.wti-sidebar-nav .nav-link.active {
    border-left: 3px solid var(--p-gold);
    padding-left: calc(1rem - 3px) !important;
}
.wti-sidebar-nav--sub .nav-link i { color: var(--p-muted); font-size: 1rem; }

.wti-mobile-sidebar-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 1.25rem 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--p-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.wti-mobile-sidebar-phone i { color: var(--p-gold); font-size: 1.1rem; }

.wti-mobile-sidebar-actions {
    margin-top: auto;
    padding: 1.25rem 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.wti-mobile-sidebar-actions .btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}
.wti-mobile-logout {
    width: 100%;
    border: 1.5px solid #fecaca;
    background: #fff5f5;
    color: #dc2626;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.wti-mobile-logout:hover {
    background: #fee2e2;
    color: #b91c1c;
}

@media (min-width: 992px) {
    .wti-mobile-sidebar { display: none !important; }
}

/* ─── Hero — cinematic ─── */
.wti-hero {
    background:
        linear-gradient(160deg,
            rgba(10, 10, 15, 0.88) 0%,
            rgba(26, 26, 46, 0.82) 45%,
            rgba(20, 20, 32, 0.75) 100%),
        url('../image/hero-home.jpg') center/cover no-repeat;
    min-height: 620px;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Hero — banner search layout (WTicabs style) */
.wti-hero--search {
    min-height: 480px;
    padding: 0.5rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background:
        linear-gradient(rgba(0, 0, 0, 0.733), rgba(0, 0, 0, 0.742)),
        url('../image/hero-road.jpg') center/cover no-repeat;
}
.wti-hero-container {
    width: 100%;
    max-width: 1320px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: 0 auto;
}
.wti-hero-search-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hero copy */
.wti-hero-copy {
    text-align: center;
    margin-bottom: 2rem;
}
.wti-hero-headline {
    color: #fff;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    line-height: 1.3;
    margin: 0 0 0.6rem;
}
.wti-hero-headline strong {
    font-weight: 800;
}
.wti-hero-tagline {
    color: #fff !important;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin: 0;
}

/* Booking widget */
.wti-hero-booking {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    z-index: 20;
}

/* Trip pills — white inactive, blue active */
.wti-hero-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    justify-content:center;
    margin-bottom: 0.55rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.wti-hero-pills::-webkit-scrollbar { display: none; }

.wti-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.9rem;
    border-radius: 50px;
    border: 1.5px solid #2b2b2b;
    background: #fff;
    color: var(--p-text);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}
.wti-hero-pill:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.wti-hero-pill.active {
    background: #f2c701;
    border-color: #efc906;
    color: #1a1a2e;
    display: inline-flex;
    align-items: center;
}
.wti-hero-pill-label--short { display: none; }
.wti-hero-pill-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #555;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}
.wti-hero-pill.active .wti-hero-pill-radio {
    border-color: #1a1a2e;
}
.wti-hero-pill.active .wti-hero-pill-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a1a2e;
}

/* White search bar — Go inside on the right */
.wti-hero-bar-wrap {
    width: 100%;
    overflow: visible;
}

@media (max-width: 767px) {
    .wti-fleet-card .card-img-top{
        height: 100% !important;
    }
}

.wti-hero-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.22);
    min-height: 80px;
    overflow: visible;
    width: 100%;
    position: relative;
    z-index: 10;
}
.wti-hero-bar-field--time {
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

/* From / To */
.wti-hero-locations {
    flex: 1 1 38%;
    display: flex;
    align-items: stretch;
    position: relative;
    min-width: 200px;
}
.wti-hero-locations .wti-hero-bar-field {
    flex: 1 1 50%;
    min-width: 0;
    overflow: visible;
}
.wti-loc-field {
    position: relative;
    overflow: visible !important;
}
.wti-loc-input-wrap {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100%;
    min-height: 1.35em;
}
.wti-loc-input-wrap.d-none,
#inline-dest-select-wrap.d-none,
#inline-drop-text-wrap.d-none,
#one-way-destination-wrap.d-none,
#drop-address-wrap.d-none {
    display: none !important;
}
.wti-loc-input-icon {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 18px;
    height: 18px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    line-height: 1 !important;
    color: #64748b !important;
    pointer-events: none !important;
    z-index: 2;
    flex-shrink: 0;
}
.wti-loc-field .wti-hero-input,
.wti-loc-field .form-control.autocomplete-address,
.wti-loc-input-wrap .wti-hero-input,
.wti-loc-input-wrap .autocomplete-address,
.wti-loc-input-wrap .form-control,
.wti-loc-input-wrap .form-select,
.wti-loc-input-wrap .wti-loc-select {
    padding-left: 26px !important;
    width: 100%;
    box-sizing: border-box;
}
.wti-loc-input-wrap .form-select,
.wti-loc-input-wrap .wti-loc-select {
    background-position: right 0.6rem center;
    padding-right: 2rem !important;
}
.wti-loc-list {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    min-width: 300px;
    max-height: 340px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 10060;
}
.wti-loc-list[hidden] {
    display: none !important;
}
.wti-loc-group-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--p-text-soft);
    padding: 10px 16px 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: default;
    list-style: none;
}
.wti-loc-item {
    padding: 11px 16px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    line-height: 1.4;
    list-style: none;
}
.wti-loc-item:hover,
.wti-loc-item.is-active {
    background: #f5f6ff;
    color: #5b6ee1;
}

.wti-hero-bar--round .wti-hero-locations {
    flex: 1 1 28%;
    min-width: 160px;
}
.wti-hero-bar--local .wti-hero-locations {
    flex: 1 1 45%;
}

.wti-hero-bar-field {
    padding: 14px 16px;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.wti-hero-bar-field--narrow {
    /* flex: 0 0 118px; */
}
.wti-hero-bar--round .wti-hero-bar-field--narrow {
    /* flex: 0 0 100px; */
    padding: 12px 10px;
}
.wti-hero-bar-field--package {
    flex: 1 1 160px;
    min-width: 140px;
}

.wti-hero-bar-field label,
.wti-hero-label-row {
    font-size: 12px;
    font-weight: 500;
    color: var(--p-muted);
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}
.wti-hero-label-row {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}
.wti-hero-label-row i {
    font-size: 10px;
    color: var(--p-muted);
}

.wti-hero-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--p-text);
    font-family: inherit;
    width: 100%;
    outline: none;
    line-height: 1.3;
}
.wti-hero-input::placeholder {
    color: var(--p-text-soft);
    font-weight: 400;
}
.wti-hero-select {
    cursor: pointer;
    appearance: auto;
    font-size: 14px;
}

.wti-hero-swap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--p-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    padding: 0;
    font-size: 12px;
    line-height: 1;
}
.wti-hero-swap:hover {
    background: #f5f5f5;
}

/* Date / time pickers */
.wti-hero-date-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    font-family: inherit;
    width: 100%;
    outline: none;
    cursor: pointer;
    line-height: 1.3;
}
.wti-hero-bar-field--date,
.wti-hero-bar-field--time {
    position: relative;
    overflow: visible;
}

/* Time dropdown — anchored to Pickup-Time field */
.wti-time-wrap {
    position: relative;
}
.wti-time-trigger {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    width: 100%;
    line-height: 1.3;
}
.wti-time-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    width: max-content;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 200;
}
.wti-time-wrap.open {
    z-index: 201;
}
.wti-time-wrap.open .wti-time-list {
    display: block;
}
.wti-time-list li {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--p-text);
    cursor: pointer;
    white-space: nowrap;
}
.wti-time-list li:hover,
.wti-time-list li.active {
    background: #f0f2ff;
    color: #5b6ee1;
    font-weight: 600;
}

/* Flatpickr — dual month calendar */
.flatpickr-calendar {
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid #e8e8e8 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #5b6ee1 !important;
    border-color: #5b6ee1 !important;
}
.flatpickr-day:hover {
    background: #eef0ff !important;
    border-color: #eef0ff !important;
}
.flatpickr-day.today {
    border-color: #5b6ee1 !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #5b6ee1 !important;
    fill: #5b6ee1 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 600 !important;
}

/* Google Places autocomplete */
.pac-container {
    border-radius: 8px !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    margin-top: 10px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    z-index: 10000 !important;
    padding: 6px 0 !important;
}
.pac-item {
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    border-top: none !important;
    cursor: pointer !important;
}
.pac-item:hover,
.pac-item-selected {
    background: #f5f6ff !important;
}
.pac-icon { display: none !important; }
.pac-item-query {
    font-size: 14px !important;
    color: #222 !important;
}
.pac-matched {
    font-weight: 700 !important;
}

/* Go — inside white bar, grey block */
.wti-hero-go-btn {
    flex: 0 0 90px;
    border: none;
    background: #f0c814;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
    align-self: stretch;
    border-radius:8px;
    padding: 0;
    line-height: 1;
}
.wti-hero-go-btn:hover {
    background: #f0c81496;
    color: #fff;
}

.wti-hero-error {
    font-size: 10px;
    color: #e53935;
    margin-top: 2px;
}

.wti-hero-form-alert {
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: rgba(229, 57, 53, 0.12);
    color: #b71c1c;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Extra row */
.wti-hero-extra { margin-top: 0.5rem; }
.wti-hero-extra-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
}
.wti-hero-extra-field { flex: 1 1 140px; }
.wti-hero-extra-field label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3px;
    display: block;
}
.wti-hero-extra-input {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
}

/* Trust badges — centered */
.wti-hero-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem 0.75rem;
    margin-top: 1.1rem;
}
.wti-hero-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}
.wti-hero-perk i {
    color: #5b6ee1;
    background: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.wti-hero-perk-sep {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    user-select: none;
}

/* Desktop: keep single row */
@media (min-width: 992px) {
    .wti-hero-bar {
        min-width: 900px;
    }
    .wti-hero-bar--round {
        min-width: 1100px;
    }
}

@media (max-width: 991px) {
    .wti-hero-bar {
        flex-wrap: wrap;
        min-height: auto;
        min-width: 0 !important;
    }
    .wti-hero-locations {
        flex: 1 1 100%;
        border-bottom: 1px solid #e8e8e8;
    }
    .wti-hero-bar-field--narrow,
    .wti-hero-bar-field--package {
        flex: 1 1 33%;
    }
    .wti-hero-go-btn {
        flex: 1 1 100%;
        min-height: 48px;
    }
    .wti-hero-pills { flex-wrap: wrap; }
}

@media (max-width: 575px) {

    .wti-cab-card-body {
        flex: 1 1 80px !important;
      }


    .wti-hero--search {
        padding: 2rem 0 2.5rem;
        min-height: 480px;
    }
    .wti-hero-copy { margin-bottom: 1.25rem; }
    .wti-hero-locations { flex-direction: column; }
    .wti-hero-locations .wti-hero-bar-field {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
    .wti-hero-swap {
        left: auto;
        right: 14px;
        top: auto;
        bottom: calc(50% - 14px);
        transform: none;
    }
    .wti-hero-bar-field--narrow,
    .wti-hero-bar-field--package { flex: 1 1 50%; }
    .wti-hero-perk-sep { display: none; }
    .wti-hero-perks {
        flex-direction: column;
        align-items: start;
        gap: 0.4rem;
        max-width: 200px;
        margin: 20px auto;
    }
    .wti-hero-pill { font-size: 0.75rem; padding: 0.38rem 0.7rem; }
}
.wti-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(59, 91, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.wti-hero .container { position: relative; z-index: 1; }

.wti-hero-content h1 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.wti-hero-content h1 .gold-text {
    background: linear-gradient(135deg, var(--p-gold-light), var(--p-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wti-hero-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 400;
    max-width: 480px;
}

.wti-hero-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background var(--p-duration);
}
.wti-hero-badge i { color: var(--p-gold-light); font-size: 0.9rem; }
.wti-hero-badge:hover { background: rgba(255, 255, 255, 0.14); }

/* Stats strip in hero */
.premium-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.premium-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p-gold-light);
    letter-spacing: -0.02em;
}
.premium-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ─── Booking card — floating glass ─── */
.wti-booking-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    border-radius: var(--p-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--p-shadow-lg), 0 0 0 1px rgba(201, 168, 76, 0.08);
    overflow: hidden;
    animation: floatIn 0.8s var(--p-ease) both;
}
@keyframes floatIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wti-booking-card .card-head {
    background: linear-gradient(135deg, var(--p-charcoal) 0%, var(--p-navy) 100%);
    padding: 1.25rem 1.5rem;
    border: none;
}
.wti-booking-card .card-head h5 {
    margin: 0;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.wti-booking-card .card-head h5 i { color: var(--p-gold); }
.wti-booking-card .card-body { padding: 1.75rem; }

/* ─── Trip tabs ─── */
.wti-trip-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    background: var(--p-cream);
    padding: 0.35rem;
    border-radius: 14px;
}
.wti-trip-tab {
    flex: 1;
    min-width: 90px;
    border: none;
    background: transparent;
    border-radius: 11px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--p-duration) var(--p-ease);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-muted);
    letter-spacing: 0.01em;
}
.wti-trip-tab i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    transition: transform var(--p-duration);
}
.wti-trip-tab:hover { color: var(--p-text); }
.wti-trip-tab:hover i { transform: scale(1.1); }
.wti-trip-tab.active {
    background: var(--p-surface);
    color: var(--p-black);
    box-shadow: var(--p-shadow-sm);
}
.wti-trip-tab.active i { color: var(--p-gold-dark); }

/* ─── Form inputs ─── */
.wti-input-group {
    margin-bottom: 1rem;
}
.wti-input-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-text);
    margin-bottom: 0.4rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.wti-input-field {
    position: relative;
}
.wti-input-group .form-control,
.wti-input-group .form-select {
    border: 1.5px solid var(--p-border);
    border-radius: 12px;
    padding: 0.75rem 0.9rem 0.75rem 2.6rem;
    font-size: 0.9375rem;
    line-height: 1.4;
    min-height: 48px;
    font-family: inherit;
    background: var(--p-cream);
    transition: border-color var(--p-duration), box-shadow var(--p-duration), background var(--p-duration);
}
.wti-input-group .form-control:focus,
.wti-input-group .form-select:focus {
    border-color: var(--p-gold);
    background: var(--p-surface);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
    outline: none;
}
.wti-input-group .form-control.is-invalid {
    border-color: #dc3545;
    background: #fff;
}
.wti-input-group .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}
.wti-input-group .form-control:-webkit-autofill,
.wti-input-group .form-control:-webkit-autofill:hover,
.wti-input-group .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--p-cream) inset;
    -webkit-text-fill-color: var(--p-text);
    caret-color: var(--p-text);
    transition: background-color 9999s ease-out;
}
.wti-input-group .form-control.is-invalid:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.wti-input-group .invalid-feedback {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    line-height: 1.35;
}
.wti-input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--p-gold-dark);
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.wti-btn-search {
    background: linear-gradient(135deg, var(--p-gold) 0%, var(--p-gold-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: 14px;
    padding: 1rem;
    width: 100%;
    transition: transform var(--p-duration) var(--p-ease), box-shadow var(--p-duration);
    box-shadow: var(--p-shadow-gold);
    font-family: inherit;
}
.wti-btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px var(--p-gold-glow);
    color: var(--p-black);
}

.navbar.navbar-expand-lg {
    padding: 0 !important;
  }

/* ─── USP — premium cards ─── */
.wti-usp {
    background: var(--p-cream);
    padding: 2rem 0;
    position: relative;
}
.wti-usp-item {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--p-surface);
    border-radius: var(--p-radius);
    border: 1px solid var(--p-border);
    height: 100%;
    transition: transform var(--p-duration) var(--p-ease), box-shadow var(--p-duration);
}
.wti-usp-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--p-shadow);
}
.wti-usp-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--p-gold-dark);
}
.wti-usp-item h6 {
    font-weight: 700;
    color: var(--p-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.wti-usp-item p {
    font-size: 0.875rem;
    color: var(--p-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── Section headers ─── */
.wti-section { padding: 2rem 0; }
.wti-section-title {
    font-weight: 800;
    color: var(--p-black);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.wti-section-sub {
    text-align: center;
    color: var(--p-muted);
    margin-bottom: 3rem;
    font-size: 1.0625rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.premium-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--p-gold-dark);
    margin-bottom: 0.75rem;
}

/* ─── Service cards ─── */
.wti-service-card {
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--p-duration) var(--p-ease);
    background: var(--p-surface);
    position: relative;
    overflow: hidden;
}
.wti-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--p-gold), var(--p-gold-light));
    transform: scaleX(0);
    transition: transform var(--p-duration) var(--p-ease);
}
.wti-service-card:hover::before { transform: scaleX(1); }
.wti-service-card:hover {
    box-shadow: var(--p-shadow);
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.25);
}
.wti-service-card .icon {
    font-size: 2rem;
    color: var(--p-gold-dark);
    margin-bottom: 1.25rem;
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wti-service-card h5 {
    font-weight: 700;
    color: var(--p-black);
    letter-spacing: -0.02em;
}

/* ─── Fleet cards ─── */
.wti-fleet-card {
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    overflow: hidden;
    background: var(--p-surface);
    transition: all var(--p-duration) var(--p-ease);
    box-shadow: var(--p-shadow-sm);
}
.wti-fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--p-shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}
.wti-fleet-card .card-img-wrap {
    height: 200px;
    background: linear-gradient(145deg, var(--p-charcoal) 0%, var(--p-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.wti-fleet-card .card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.4), transparent);
}
.wti-fleet-card .card-img-wrap i {
    font-size: 4.5rem;
    color: var(--p-gold);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}
.wti-fleet-card .card-body { padding: 1.5rem; }
.wti-fleet-price {
    color: var(--p-gold-dark);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

/* ─── Routes ─── */
.wti-route-chip {
    display: inline-block;
    background: var(--p-surface);
    border: 1.5px solid var(--p-border);
    border-radius: 100px;
    padding: 0.6rem 1.35rem;
    margin: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--p-text);
    text-decoration: none;
    transition: all var(--p-duration) var(--p-ease);
}
.wti-route-chip:hover {
    background: var(--p-charcoal);
    color: var(--p-gold-light);
    border-color: var(--p-charcoal);
    transform: translateY(-2px);
    box-shadow: var(--p-shadow);
}

/* ─── Steps ─── */
.premium-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
.premium-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--p-gold), transparent);
    opacity: 0.4;
}
.wti-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--p-gold), var(--p-gold-dark));
    color: var(--p-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--p-shadow-gold);
    position: relative;
    z-index: 1;
}

/* ─── Testimonials ─── */
.premium-testimonial {
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 2rem;
    height: 100%;
    transition: box-shadow var(--p-duration);
}
.premium-testimonial:hover { box-shadow: var(--p-shadow); }
.premium-testimonial .stars { color: var(--p-gold); font-size: 0.875rem; letter-spacing: 2px; }
.premium-testimonial p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--p-muted);
    font-style: italic;
    margin: 1rem 0;
}
.premium-testimonial .author {
    font-weight: 700;
    color: var(--p-black);
    font-size: 0.875rem;
}
.premium-testimonial .author span {
    display: block;
    font-weight: 400;
    color: var(--p-muted);
    font-size: 0.8125rem;
}

/* ─── CTA banner ─── */
.premium-cta {
    background: linear-gradient(135deg, var(--p-charcoal) 0%, var(--p-navy) 100%);
    border-radius: var(--p-radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.15), transparent 50%);
}
.premium-cta h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    position: relative;
}
.premium-cta p { color: rgba(255,255,255,0.7) !important; position: relative; }

/* ─── Footer — WTicabs style ─── */
.wti-footer {
    position: relative;
    overflow: hidden;
}

.wti-footer--wticabs {
    background: #3a3258;
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.wti-footer-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(58, 50, 88, 0.88) 0%, rgba(45, 38, 72, 0.92) 40%, rgba(32, 28, 55, 0.95) 100%),
        url('../image/hero-road.jpg') center bottom / cover no-repeat;
    pointer-events: none;
}

.wti-footer-wrap {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 0;
}

.wti-footer-row {
    margin-bottom: 0;
}

.wti-footer-logo {
    display: inline-block;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.wti-footer-logo-accent {
    color: #fff;
}

.wti-footer-logo-light {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.wti-footer-desc {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78) !important;
    margin: 0 0 1.5rem;
    max-width: 300px;
}

.wti-footer-social-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 0.85rem;
}

.wti-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.wti-footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #3a3258 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0 !important;
    transition: opacity 0.2s, transform 0.2s;
}

.wti-footer-socials a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    padding-left: 0 !important;
    color: #3a3258 !important;
}

.wti-footer-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

.wti-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wti-footer-links li {
    margin-bottom: 0.55rem;
}

.wti-footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none;
    line-height: 1.45;
    padding: 0 !important;
    display: inline;
    transition: color 0.2s;
}

.wti-footer-links a:hover {
    color: #fff !important;
    padding-left: 0 !important;
}

.wti-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wti-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82) !important;
}

.wti-footer-contact li > i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 2px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.wti-footer-contact a {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none;
    padding: 0 !important;
    transition: color 0.2s;
}

.wti-footer-contact a:hover {
    color: #fff !important;
    padding-left: 0 !important;
}

.wti-footer-copy {
    margin-top: 2.5rem;
    padding: 1.1rem 0 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.wti-footer-copy-left {
    flex: 1 1 auto;
}

.wti-footer-copy-credit {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.wti-footer-copy-credit:hover {
    color: #fff !important;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .wti-footer-wrap {
        padding-top: 2.25rem;
    }

    .wti-footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .wti-footer-logo {
        font-size: 1.55rem;
        width: 55px;
    }
}

/* Legacy footer (non-WTicabs pages) */
.wti-footer:not(.wti-footer--wticabs) {
    background: var(--p-black);
    color: rgba(255, 255, 255, 0.65);
    padding: 4.5rem 0 2rem;
}
.wti-footer:not(.wti-footer--wticabs)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p-gold), transparent);
    opacity: 0.4;
}
.wti-footer:not(.wti-footer--wticabs) h5,
.wti-footer:not(.wti-footer--wticabs) h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.wti-footer:not(.wti-footer--wticabs) h5 i { color: var(--p-gold); }
.wti-footer:not(.wti-footer--wticabs) a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 0.3rem 0;
    transition: color var(--p-duration), padding-left var(--p-duration);
}
.wti-footer:not(.wti-footer--wticabs) a:hover {
    color: var(--p-gold-light);
    padding-left: 4px;
}
.wti-footer:not(.wti-footer--wticabs) .social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--p-duration);
    padding: 0;
}
.wti-footer:not(.wti-footer--wticabs) .social-link:hover {
    background: var(--p-gold);
    color: var(--p-black);
    padding-left: 0;
}
.wti-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3rem;
    padding-top: 1.75rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ─── Inner pages ─── */
.wti-page-header {
    background: linear-gradient(160deg, var(--p-charcoal) 0%, var(--p-navy) 100%);
    color: #fff;
    padding: 3.5rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.wti-page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--p-cream), transparent);
}
.wti-page-header h1 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}
.wti-page-header p { position: relative; z-index: 1; color: #fff !important; }

.wti-content-card {
    background: var(--p-surface);
    border-radius: var(--p-radius);
    box-shadow: var(--p-shadow);
    border: 1px solid var(--p-border);
    padding: 2rem;
}

.wti-btn-primary {
    background: linear-gradient(135deg, var(--p-gold), var(--p-gold-dark));
    border: none;
    color: var(--p-black);
    font-weight: 700;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
}
.wti-btn-primary:hover {
    box-shadow: var(--p-shadow-gold);
    color: var(--p-black);
}

.wti-btn-outline {
    border: 1.5px solid var(--p-border);
    color: var(--p-text);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    background: transparent;
    transition: all var(--p-duration);
}
.wti-btn-outline:hover {
    border-color: var(--p-gold);
    color: var(--p-gold-dark);
    background: rgba(201, 168, 76, 0.06);
}

/* ─── Result cards ─── */
.wti-result-card {
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    overflow: hidden;
    transition: all var(--p-duration) var(--p-ease);
    height: 100%;
    background: var(--p-surface);
}
.wti-result-card:hover {
    box-shadow: var(--p-shadow-lg);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
}
.wti-fare-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--p-gold-dark), var(--p-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

/* ═══ Search Results Page (WTicabs style) ═══ */
.wti-search-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--p-navy) 50%, var(--p-charcoal) 100%);
    padding: 1.25rem 0 0;
    /* position: sticky; */
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.wti-inline-search { width: 100%; }
.wti-inline-search-wrap { position: relative; z-index: 20; }
.wti-inline-search-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.65rem;
    padding-bottom: 1rem;
}
.wti-inline-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
}
.wti-inline-field.wti-loc-field {
    overflow: visible !important;
    z-index: 1;
}
.wti-inline-field.wti-loc-field:focus-within {
    z-index: 50;
}
.wti-inline-field .wti-loc-list {
    min-width: 100%;
    width: max(100%, 280px);
    max-width: min(92vw, 420px);
    left: 0;
    right: auto;
}
.wti-inline-field label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}
.wti-inline-field .form-control,
.wti-inline-field .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--p-text);
    min-height: 38px;
}
.wti-inline-field .wti-loc-input-wrap {
    width: 100%;
}
.wti-inline-field .wti-loc-input-wrap .form-control,
.wti-inline-field .wti-loc-input-wrap .form-select {
    min-height: 38px;
}
.wti-inline-field .form-select {
    text-overflow: ellipsis;
    padding-right: 1.75rem;
}
.wti-inline-field--date {
    cursor: pointer;
}
.wti-inline-date-input {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 2rem !important;
}
.wti-inline-field .form-control:focus,
.wti-inline-field .form-select:focus {
    border-color: var(--wti-blue);
    box-shadow: 0 0 0 3px rgba(59, 91, 219, 0.25);
}
.wti-inline-field--sm { flex: 0 0 150px; }
.wti-inline-field--grow { flex: 1 1 160px; }
.wti-inline-field--submit { flex: 0 0 auto; }
.wti-inline-search-btn {
    background: var(--wti-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.75rem;
    min-height: 38px;
    white-space: nowrap;
    transition: background var(--p-duration);
}
.wti-inline-search-btn:hover {
    background: var(--wti-blue-dark);
    color: #fff;
}
.wti-swap-btn {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    cursor: pointer;
    transition: all var(--p-duration);
}
.wti-swap-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.wti-trust-strip {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.65rem 0;
}
.wti-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}
.wti-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
}
.wti-trust-item i {
    color: #6ee7b7;
    font-size: 1rem;
}

.wti-search-page {
    background: #eef2f7;
    min-height: 60vh;
}

/* Cab list cards */
.wti-cab-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow var(--p-duration);
}
.wti-cab-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.wti-cab-card-img {
    flex: 0 0 200px;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f8fafc;
}
.wti-cab-card-img img {
    width: 100%;
    height: 110px;
    object-fit: contain;
}
.wti-cab-card-placeholder {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wti-blue);
    opacity: 0.35;
    font-size: 3rem;
}
.wti-cab-card-body {
    flex: 1 1 240px;
    padding: 1.15rem 1rem;
    min-width: 0;
}
.wti-cab-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}
.wti-cab-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--p-text);
    margin: 0 0 0.15rem;
    line-height: 1.3;
}
.wti-cab-type {
    font-size: 0.8125rem;
    color: var(--p-muted);
}
.wti-cab-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #ecfdf5;
    color: #059669;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    white-space: nowrap;
}
.wti-cab-rating i { font-size: 0.7rem; }
.wti-cab-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.8125rem;
    color: var(--p-muted);
    margin-bottom: 0.65rem;
}
.wti-cab-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.wti-spec-badge--clean {
    color: #059669;
    font-weight: 600;
}
.wti-cab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.wti-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.wti-tag--fuel { background: #fef3c7; color: #92400e; }
.wti-tag--cancel { background: #d1fae5; color: #065f46; }
.wti-tag--km { background: #eff6ff; color: #1e40af; }

.wti-cab-card-price {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 1.15rem 1.25rem;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    text-align: right;
}
.wti-cab-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.wti-cab-rate {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.15rem 0.35rem;
    margin-bottom: 0.35rem;
}
.wti-cab-rate-amount {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--p-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.wti-cab-rate-unit {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--p-muted);
}
.wti-cab-rate-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--p-text);
}
.wti-cab-rate-note {
    font-size: 0.75rem;
    color: var(--p-muted);
    margin-bottom: 0.75rem;
    width: 100%;
    text-align: right;
}
.wti-cab-book-form {
    width: 100%;
    margin-top: 0.35rem;
}
.wti-cab-advance {
    font-size: 0.75rem;
    color: var(--p-muted);
    margin: 0.35rem 0 0.85rem;
    max-width: 180px;
}
.wti-cab-book-btn {
    background: var(--wti-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background var(--p-duration);
}
.wti-cab-book-btn:hover {
    background: var(--wti-blue-dark);
    color: #fff;
}

/* Sidebar */
.wti-sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.15rem;
    overflow: hidden;
}
.wti-sidebar-map { padding: 0; overflow: hidden; }
.wti-sidebar-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    display: block;
}
.wti-route-map {
    width: 100%;
    height: 180px;
    display: block;
    background: #e2e8f0;
}
.wti-map-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-text);
    border-top: 1px solid var(--p-border);
    background: #f8fafc;
}
.wti-map-meta i { color: #4338ca; margin-right: 0.2rem; }
.wti-map-source {
    margin-left: auto;
    color: var(--p-muted);
    font-weight: 500;
}
.wti-map-placeholder {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--wti-blue);
    gap: 0.35rem;
}
.wti-map-placeholder i { font-size: 2rem; opacity: 0.5; }
.wti-map-placeholder span { font-weight: 700; font-size: 0.9375rem; }
.wti-map-placeholder small { color: var(--p-muted); font-size: 0.8125rem; }

.wti-sidebar-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--p-text);
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--p-border);
}
.wti-transfer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wti-transfer-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.wti-transfer-list li:last-child { border-bottom: none; }
.wti-transfer-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--p-muted);
}
.wti-transfer-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--p-text);
    word-break: break-word;
}

.wti-trust-widget {
    text-align: center;
    padding: 1.5rem 1.15rem;
}
.wti-trust-stars {
    color: #00b67a;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
}
.wti-trust-score {
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--p-text);
}
.wti-trust-reviews {
    font-size: 0.8125rem;
    color: var(--p-muted);
    margin-top: 0.15rem;
}

/* Why section */
.wti-why-section {
    background: linear-gradient(180deg, #dbeafe 0%, #eef2f7 100%);
    padding: 3rem 0 4rem;
    margin-top: 1rem;
}
.wti-why-title {
    font-weight: 800;
    color: var(--p-navy);
    letter-spacing: -0.02em;
}
.wti-why-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.wti-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wti-blue), var(--wti-blue-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
}
.wti-why-card h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--p-text);
}
.wti-why-card p {
    font-size: 0.875rem;
    color: var(--p-muted);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .wti-cab-card-img {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0.75rem 1rem 0;
    }
    .wti-cab-card-price {
        flex: 0 0 100%;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        align-items: stretch;
        text-align: left;
    }
    .wti-cab-rate { justify-content: flex-start; }
    .wti-cab-rate-note { text-align: left; }
    .wti-cab-advance { max-width: none; }
    .wti-cab-book-btn { width: 100%; text-align: center; }
    .wti-inline-field--sm { flex: 1 1 140px; }
    .wti-swap-btn { display: none; }
    .wti-search-hero {
        overflow: visible;
        position: relative;
        z-index: 30;
    }
    .wti-inline-search-wrap {
        overflow: visible;
    }
    .wti-inline-field .wti-loc-list {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        z-index: 100;
    }
}

@media (max-width: 575px) {
    .wti-trust-strip-inner { gap: 0.75rem 1.25rem; }
    .wti-trust-item { font-size: 0.75rem; }
}

/* ─── Scroll reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--p-ease), transform 0.7s var(--p-ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Alerts ─── */
.alert {
    border-radius: 12px;
    border: none;
    font-size: 0.9375rem;
}
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger  { background: #fef2f2; color: #991b1b; }
.alert-info    { background: #eff6ff; color: #1e40af; }
.alert-warning { background: #fffbeb; color: #92400e; }

/* ─── Dropdown premium ─── */
.dropdown-menu {
    border-radius: 14px;
    border: 1px solid var(--p-border);
    box-shadow: var(--p-shadow-lg);
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
}

@media (max-width: 991px) {
    .wti-hero { min-height: auto; padding: 2.5rem 0 3rem; }
    .wti-trip-tab { min-width: calc(33% - 0.35rem); font-size: 0.68rem; }
    .premium-stats { gap: 1.25rem; }
    .premium-steps::before { display: none; }
    .wti-section { padding: 2.5rem 0; }
    .premium-testimonial{
        padding: 1rem !important;
    }
    .premium-testimonial p{
        font-size: 14px !important;
    }

    p{
        font-size: 14px !important;
    }

    .premium-cta{
        padding: 1.5rem 1rem !important;
    }
    .cms-content li{
        font-size: 14px !important;
        list-style-type: none;
    }
}


/* ─── Profile page ─── */
.wti-profile-page-head {
    position: relative;
    z-index: 1;
}

.wti-profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.85rem;
}
.wti-profile-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--p-duration);
}
.wti-profile-breadcrumb a:hover { color: var(--p-gold-light); }
.wti-profile-breadcrumb i { font-size: 0.65rem; opacity: 0.7; }
.wti-profile-breadcrumb span { color: var(--p-gold-light); font-weight: 600; }

.wti-profile-page {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.wti-profile-sidebar {
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-lg);
    box-shadow: var(--p-shadow);
    padding: 1.75rem;
    position: sticky;
    top: 96px;
}

.wti-profile-identity {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--p-border);
    margin-bottom: 1.5rem;
}

.wti-profile-avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--p-black);
    background: linear-gradient(135deg, var(--p-gold-light), var(--p-gold));
    box-shadow: 0 8px 24px var(--p-gold-glow);
}

.wti-profile-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
    color: var(--p-text);
}

.wti-profile-email {
    font-size: 0.875rem;
    color: var(--p-muted);
    margin: 0 0 0.5rem;
    word-break: break-word;
}

.wti-profile-phone,
.wti-profile-location {
    font-size: 0.8125rem;
    color: var(--p-muted);
    margin: 0.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.wti-profile-badge {
    display: inline-block;
    margin-top: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--p-gold-dark);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.wti-profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wti-profile-stat {
    background: var(--p-cream);
    border: 1px solid var(--p-border);
    border-radius: 14px;
    padding: 1rem 0.75rem;
    text-align: center;
}

.wti-profile-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--p-text);
    letter-spacing: -0.03em;
}

.wti-profile-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wti-profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wti-profile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--p-muted);
    text-decoration: none;
    transition: all var(--p-duration) var(--p-ease);
}

.wti-profile-nav-link i {
    width: 1.25rem;
    font-size: 1rem;
    color: var(--p-muted);
    transition: color var(--p-duration);
}

.wti-profile-nav-link:hover {
    background: var(--p-cream);
    color: var(--p-text);
}

.wti-profile-nav-link:hover i { color: var(--wti-blue); }

.wti-profile-nav-link.active {
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.1), rgba(59, 91, 219, 0.04));
    color: var(--wti-blue);
    border: 1px solid rgba(59, 91, 219, 0.15);
}

.wti-profile-nav-link.active i { color: var(--wti-blue); }

.wti-profile-panel {
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-lg);
    box-shadow: var(--p-shadow-sm);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.wti-profile-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--p-border);
}

.wti-profile-panel-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--wti-blue);
    background: rgba(59, 91, 219, 0.1);
}

.wti-profile-panel-head h3 {
    margin: 0 0 0.2rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.wti-profile-panel-head p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--p-muted);
}

.wti-profile-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.wti-profile-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.wti-profile-input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: 0.95rem;
    color: var(--p-muted);
    pointer-events: none;
    z-index: 1;
}

.wti-profile-input {
    width: 100%;
    border: 1.5px solid var(--p-border);
    border-radius: 12px;
    padding: 0.72rem 0.95rem 0.72rem 2.65rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--p-text);
    background: var(--p-surface);
    transition: border-color var(--p-duration), box-shadow var(--p-duration);
}

.wti-profile-input::placeholder { color: #adb5bd; }

.wti-profile-input:focus {
    outline: none;
    border-color: var(--wti-blue);
    box-shadow: 0 0 0 4px rgba(59, 91, 219, 0.12);
}

.wti-profile-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.wti-profile-input-wrap--disabled .wti-profile-input {
    background: var(--p-cream);
    color: var(--p-muted);
    cursor: not-allowed;
}

.wti-profile-hint {
    margin: 0.4rem 0 0;
    font-size: 0.75rem;
    color: var(--p-muted);
}

.wti-profile-error {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: #dc3545;
    font-weight: 500;
}

.wti-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-lg);
    box-shadow: var(--p-shadow-sm);
}

.wti-profile-actions .wti-btn-primary,
.wti-profile-actions .wti-btn-outline {
    min-width: 140px;
    padding: 0.72rem 1.35rem;
}

@media (max-width: 991.98px) {
    .wti-profile-sidebar {
        position: static;
    }

    .wti-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wti-profile-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wti-profile-nav-link {
        flex: 1 1 calc(50% - 0.35rem);
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .wti-profile-sidebar,
    .wti-profile-panel,
    .wti-profile-actions {
        padding: 1.25rem;
    }

    .wti-profile-actions {
        flex-direction: column-reverse;
    }

    .wti-profile-actions .wti-btn-primary,
    .wti-profile-actions .wti-btn-outline {
        width: 100%;
    }

    .wti-profile-nav-link {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

/* ─── CMS pages (Privacy, Terms, Contact) ─── */
.wti-cms-page .cms-content,
.cms-content {
    color: var(--p-text);
    font-size: 0.9375rem;
    line-height: 1.75;
}
.cms-content h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
    color: var(--p-black);
}
.cms-content p { margin-bottom: 1rem; }
.cms-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.cms-content li { margin-bottom: 0.35rem; }
.cms-content a { color: var(--wti-blue); }
.cms-content .lead {
    font-size: 1.05rem;
    color: var(--p-muted);
}
.wti-contact-info a {
    color: var(--p-text);
    text-decoration: none;
    font-weight: 600;
}
.wti-contact-info a:hover { color: var(--wti-blue); }
.wti-contact-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ── Tour Packages ── */
.wti-home-sliders {
    background: #fff;
}

.wti-tour-packages {
    background: #fff;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wti-tour-section-subtitle {
    font-size: 1.05rem;
    color: var(--p-text);
    margin: 0 0 2rem;
    font-weight: 500;
}

.wti-tour-routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .wti-tour-routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wti-tour-section-actions {
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.wti-tours-page {
    background: #fff;
    min-height: 60vh;
}

.wti-route-card {
    background: #fff;
    border: 2px solid #f5c518;
    border-radius: 8px;
    padding: 1.5rem 1.25rem 1.35rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wti-route-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.wti-route-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--p-text);
    margin: 0 0 1rem;
    line-height: 1.35;
}

.wti-route-card-line {
    font-size: 0.9rem;
    color: var(--p-text);
    line-height: 1.55;
    margin: 0 0 0.65rem;
    max-width: 100%;
}

.wti-route-card-line strong {
    color: var(--p-text);
}

.wti-route-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.7rem 1.25rem;
    min-width: 200px;
    background: #f5c518;
    color: var(--p-text) !important;
    border: none;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.wti-route-card-btn:hover {
    background: #e6b800;
    color: var(--p-text) !important;
    transform: translateY(-1px);
}

.wti-fleet-slider-section {
    background: #fff5e7;
    padding: 2.5rem 0 3.5rem;
}

.wti-fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .wti-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wti-fleet-grid--page {
    margin-top: 0;
}

@media (min-width: 992px) {
    .wti-fleet-grid--page {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wti-fleet-section-actions {
    margin-top: 2rem;
}

.wti-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.7rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--p-primary, #4338ca);
    background: #fff;
    border: 2px solid var(--p-primary, #4338ca);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.wti-view-all-btn:hover {
    background: var(--p-primary, #4338ca);
    color: #fff;
    transform: translateY(-1px);
}

.wti-fleet-page {
    background: #fff5e7;
    min-height: 60vh;
}

.wti-slider-wrap {
    position: relative;
    padding: 0 1.75rem 1.5rem;
}

.wti-home-swiper {
    overflow: hidden;
    padding-bottom: 2.25rem !important;
}

.wti-home-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.wti-home-swiper .swiper-slide > * {
    width: 100%;
}

.wti-slider-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--p-text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.wti-slider-btn:hover {
    background: #c41e3a;
    border-color: #c41e3a;
    color: #fff;
}

.wti-slider-btn-prev { left: 0; }
.wti-slider-btn-next { right: 0; }

.wti-slider-pagination {
    bottom: 0 !important;
}

.wti-slider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #ccc;
    opacity: 1;
}

.wti-slider-pagination .swiper-pagination-bullet-active {
    background: #c41e3a;
    width: 22px;
    border-radius: 6px;
}

@media (max-width: 575.98px) {
    .wti-slider-wrap {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }

    .wti-slider-btn {
        width: 36px;
        height: 36px;
    }
}

.wti-tour-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.wti-tour-section-line {
    width: 72px;
    height: 4px;
    background: #c41e3a;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.wti-tour-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wti-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wti-tour-card-media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0f0f0;
}

.wti-tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wti-tour-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    color: var(--p-text-soft);
    font-size: 2.5rem;
}

.wti-tour-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    padding: 0.65rem 0.75rem;
}

.wti-tour-card-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.wti-tour-card-body {
    padding: 1rem 1rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wti-tour-meta {
    font-size: 0.8rem;
    color: var(--p-text);
    margin-bottom: 0.45rem;
    line-height: 1.45;
}

.wti-tour-meta strong {
    color: #e67e22;
    font-weight: 700;
}

.wti-tour-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.wti-tour-btn-read,
.wti-tour-btn-enquire {
    flex: 1;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.5rem;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    border: none;
}

.wti-tour-btn-read {
    background: #c41e3a;
    color: #fff !important;
}

.wti-tour-btn-read:hover {
    background: #a01830;
    color: #fff !important;
}

.wti-tour-btn-enquire {
    background: #2d2d2d;
    color: #fff !important;
}

.wti-tour-btn-enquire:hover {
    background: #111;
    color: #fff !important;
}

/* Tour detail page */
.wti-tour-detail-banner {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    background: #222;
}

.wti-tour-detail-banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.wti-tour-detail {
    background: #fff;
}

.wti-tour-breadcrumb .breadcrumb-item a {
    color: var(--wti-blue);
    text-decoration: none;
}

.wti-tour-detail-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.wti-tour-days {
    color: #2e8b57;
    font-weight: 700;
}

.wti-tour-info-box {
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.wti-tour-info-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.wti-tour-info-box strong {
    color: #e67e22;
}

.wti-tour-overview h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.75rem;
}

.wti-tour-enquiry-card {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 1rem;
}

.wti-tour-enquiry-head {
    background: linear-gradient(135deg, #1e6fd9, #1557b0);
    color: #fff;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

.wti-tour-enquiry-body {
    padding: 1.25rem;
    background: #fff;
}

.wti-tour-enquiry-body .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.wti-tour-enquiry-body .form-control,
.wti-tour-enquiry-body .form-select {
    border-color: #1e6fd9;
    font-size: 0.875rem;
    border-radius: 3px;
}

.wti-tour-enquiry-submit {
    background: #c41e3a;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 0.65rem;
}

.wti-tour-enquiry-submit:hover {
    background: #a01830;
    color: #fff;
}

@media (max-width: 991.98px) {
    .wti-tour-enquiry-card {
        position: static;
        margin-top: 1rem;
    }
}

/* ── WhatsApp Chat Widget ── */
.wti-wa-widget {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    /* Only the trigger (and open popup) should capture clicks —
       otherwise the invisible popup box blocks the From field. */
    pointer-events: none;
}

.wti-wa-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.wti-wa-trigger:hover,
.wti-wa-trigger:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    outline: none;
}

.wti-wa-trigger-dot {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border: 2px solid #25D366;
    border-radius: 50%;
}

.wti-wa-trigger-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.wti-wa-trigger-text {
    white-space: nowrap;
}

.wti-wa-popup {
    position: absolute;
    left: 0;
    bottom: calc(100% + 12px);
    width: 320px;
    max-width: calc(100vw - 48px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom left;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
}

.wti-wa-widget.is-open .wti-wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wti-wa-popup-close {
    position: absolute;
    top: -14px;
    right: -6px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.wti-wa-popup-close:hover {
    transform: scale(1.08);
}

.wti-wa-popup-header {
    background: #25D366;
    color: #fff;
    padding: 18px 16px 16px;
    border-radius: 14px 14px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.wti-wa-popup-body {
    background: #fff;
    padding: 16px;
    min-height: 90px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.wti-wa-bubble {
    display: inline-block;
    background: #f3f4f6;
    color: #4338ca;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.wti-wa-popup-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 10px 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wti-wa-popup-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.wti-wa-popup-input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wti-wa-popup-send {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wti-wa-popup-send:hover {
    background: #1ebe57;
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .wti-wa-widget {
        left: 16px;
        bottom: 16px;
    }

    .wti-wa-popup {
        width: min(320px, calc(100vw - 32px));
    }

    .wti-wa-trigger {
        padding: 11px 16px 11px 14px;
        font-size: 14px;
    }

    .wti-wa-trigger-text {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wti-wa-popup,
    .wti-wa-trigger,
    .wti-wa-popup-close,
    .wti-wa-popup-send {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* Checkout / cart summary */
.wti-checkout-page {
    padding: 1.5rem 0 3rem;
}

.wti-checkout-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.wti-checkout-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--p-muted);
    margin-bottom: 1rem;
}

.wti-checkout-vehicle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wti-checkout-vehicle-img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wti-checkout-vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wti-checkout-summary {
    position: sticky;
    top: 1rem;
}

.wti-checkout-fare-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.wti-checkout-fare-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--p-text);
}

.wti-checkout-fare-subtotal {
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px dashed #e2e8f0;
    font-weight: 600;
}

.wti-checkout-fare-discount {
    color: #16a34a;
    font-weight: 600;
}

.wti-checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
    font-weight: 700;
    font-size: 1.1rem;
}

.wti-checkout-total-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wti-checkout-total-note {
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wti-checkout-total-amount {
    color: var(--p-primary, #4338ca);
    font-size: 1.5rem;
}

.wti-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #15803d;
    font-weight: 600;
    font-size: 0.9rem;
}

.wti-coupon-form .form-control {
    border-radius: 10px 0 0 10px;
    text-transform: uppercase;
}

.wti-coupon-form .btn {
    border-radius: 0 10px 10px 0;
}

.wti-checkout-confirm-btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 0.85rem 1rem;
}

.wti-review-header {
    background:linear-gradient(135deg, #f0c804 0%, #f2c600 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
    margin-bottom: 0;
}

.wti-review-header-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.wti-review-summary-bar {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.wti-review-route strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.wti-review-route-meta,
.wti-review-meta {
    color: var(--p-muted);
    font-size: 0.9rem;
}

.wti-review-input {
    border-radius: 10px;
    border-color: #e2e8f0;
    background: #f8fafc;
    padding: 0.75rem 1rem;
}

.wti-review-input:focus {
    background: #fff;
    border-color: #93c5fd;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.15);
}

.wti-phone-input .input-group-text {
    border-radius: 10px 0 0 10px;
    background: #f1f5f9;
    border-color: #e2e8f0;
    font-weight: 600;
}

.wti-phone-input .form-control {
    border-radius: 0 10px 10px 0;
}

.wti-review-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.wti-review-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wti-review-list--included li {
    color: #15803d;
}

.wti-review-list--excluded li {
    color: #b91c1c;
}

.wti-contact-card {
    margin-bottom: 0;
}

/* ── Booking Confirmation Page ── */
.wti-confirm-page {
    padding: 1.5rem 0 3rem;
}

.wti-confirm-main {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.75rem;
}

.wti-confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.wti-confirm-title span {
    color: #0284c7;
}

.wti-confirm-hero {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.wti-confirm-car-art {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    color: #0284c7;
    font-size: 3rem;
    overflow: hidden;
}

.wti-confirm-car-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wti-confirm-message p {
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.wti-confirm-message strong {
    color: #0f172a;
}

.wti-confirm-table-wrap {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.wti-confirm-table-head {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.wti-confirm-table-row {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1.2fr 1fr 0.8fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
}

.wti-confirm-table-row--labels {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid #e2e8f0;
}

.wti-confirm-table-row--values {
    color: #0f172a;
    font-weight: 600;
    align-items: center;
}

.wti-confirm-fare {
    color: #0284c7;
    font-size: 1.15rem;
    font-weight: 800;
}

.wti-confirm-return-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.95rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.wti-confirm-return-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.32);
}

.wti-confirm-tnc h6 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.wti-confirm-tnc ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.wti-confirm-tnc li {
    margin-bottom: 0.35rem;
}

.wti-confirm-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.wti-confirm-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wti-confirm-safety {
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.75) 100%),
        url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    position: relative;
}

.wti-confirm-safety-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    color: #fff;
}

.wti-confirm-safety-overlay h3 {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.wti-confirm-safety-overlay p {
    margin: 0;
    opacity: 0.95;
}

.wti-confirm-app {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.5rem;
}

.wti-confirm-app h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.wti-confirm-app p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .wti-confirm-table-row {
        grid-template-columns: 1fr 1fr;
    }

    .wti-confirm-table-row--labels div:nth-child(5),
    .wti-confirm-table-row--values div:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .wti-confirm-hero {
        flex-direction: column;
    }

    .wti-confirm-car-art {
        width: 100%;
        height: 120px;
    }

    .wti-confirm-table-row {
        grid-template-columns: 1fr;
    }

    .wti-confirm-title {
        font-size: 1.25rem;
    }
}

/* ── WhatsApp Support Pill Button ── */
.wti-wa-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wti-wa-support-pulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.wti-wa-support:hover,
.wti-wa-support:focus-visible {
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 26px rgba(18, 140, 126, 0.45);
    outline: none;
}

.wti-wa-support-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}

@keyframes wti-wa-support-pulse {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
    }
    50% {
        box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35),
                    0 0 0 8px rgba(37, 211, 102, 0.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wti-wa-support { animation: none; }
}
