/* ================================================================
   AVESTA TRAVEL - Transfer Page
================================================================ */

.page-transfer .trh-hero {
    position: relative;
    min-height: calc(100svh - 82px);
    padding-top: 82px;
    overflow: visible;
    color: #fff;
    background: #0b1426;
    display: flex;
    align-items: flex-end;
    z-index: 5;
}

.page-transfer .trh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-transfer .trh-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.06);
    filter: saturate(1.05);
    animation: trhBgIn 1.1s cubic-bezier(.2, 1, .3, 1) forwards;
}

.page-transfer .trh-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 520px at 20% 8%, rgba(232, 93, 4, .35), transparent 60%),
        linear-gradient(108deg, rgba(6, 12, 24, .86) 0%, rgba(6, 12, 24, .70) 42%, rgba(6, 12, 24, .90) 100%);
}

.page-transfer .trh-grain {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: radial-gradient(rgba(255, 255, 255, .16) .6px, transparent .6px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
}

.page-transfer .trh-inner {
    position: relative;
    z-index: 6;
    width: 100%;
    padding-bottom: 96px;
}

.page-transfer .trh-copy {
    max-width: 760px;
}

.page-transfer .trh-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 6px;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(11, 20, 38, .35);
    backdrop-filter: blur(6px);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1;
}

.page-transfer .trh-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .16s ease;
}

.page-transfer .trh-breadcrumb a:hover {
    color: #ffffff;
}

.page-transfer .trh-breadcrumb svg {
    color: rgba(255, 255, 255, .35);
    flex-shrink: 0;
}

.page-transfer .trh-breadcrumb > span {
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
}

.page-transfer .trh-title {
    margin-top: 18px;
    font-family: var(--font-display, serif);
    font-size: clamp(2.2rem, 5.4vw, 4.1rem);
    line-height: 1.04;
    letter-spacing: -.02em;
    text-wrap: balance;
}

.page-transfer .trh-title span {
    color: #ffd5bb;
}

.page-transfer .trh-sub {
    margin-top: 18px;
    max-width: 640px;
    font-size: clamp(.98rem, 1.45vw, 1.16rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, .84);
}

.page-transfer .trh-copy .trh-breadcrumb,
.page-transfer .trh-copy .trh-title,
.page-transfer .trh-copy .trh-sub {
    opacity: 0;
    transform: translateY(18px);
    animation: trhFadeUp .65s cubic-bezier(.2, 1, .3, 1) forwards;
}

.page-transfer .trh-copy .trh-title { animation-delay: .1s; }
.page-transfer .trh-copy .trh-sub { animation-delay: .2s; }

.page-transfer .trh-search-wrap {
    margin-top: 32px;
    position: relative;
    z-index: 30;
    opacity: 0;
    transform: translateY(20px);
    animation: trhFadeUp .68s cubic-bezier(.2, 1, .3, 1) .24s forwards;
}

.page-transfer .trh-trip-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(6, 12, 24, .22);
}

.page-transfer .trh-trip-btn {
    border: none;
    border-radius: 999px;
    padding: 9px 16px;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.page-transfer .trh-trip-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.page-transfer .trh-trip-btn.active {
    color: #0f172a;
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 12, 24, .18);
}

.page-transfer .trh-search-grid {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: visible;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 999px;
    padding: 8px 8px 8px 22px;
    box-shadow:
        0 20px 60px rgba(6, 12, 24, .36),
        0 4px 18px rgba(6, 12, 24, .2);
}

.page-transfer .trh-field {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 48px;
    transition: background .2s ease;
    position: relative;
}

.page-transfer .trh-field:hover {
    background: #f8fafc;
}

.page-transfer .trh-field-wide {
    flex: 1.65 1 205px;
}

.page-transfer .trh-field-datetime {
    flex: 1.05 1 188px;
}

.page-transfer .trh-field-guests {
    flex: 1 1 150px;
}

.page-transfer .trh-search-wrap.trh-has-return .trh-field-wide {
    flex: 1.45 1 188px;
}

.page-transfer .trh-search-wrap.trh-has-return .trh-field-datetime {
    flex: 1 1 176px;
}

.page-transfer .trh-search-wrap.trh-has-return .trh-field-guests {
    flex: .9 1 138px;
}

.page-transfer .trh-icon {
    color: var(--primary, #e85d04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-transfer .trh-field-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.page-transfer .trh-label {
    font-size: .68rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #0f172a;
    margin-bottom: 2px;
    white-space: nowrap;
}

.page-transfer .trh-input {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    color: #475569;
    font-size: .95rem;
    line-height: 1.35;
    font-weight: 500;
    font-family: var(--font-body, inherit);
    padding: 0;
    /* Taşan değeri … ile göster, alta kaymasın */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Focus anında ellipsis'i kaldır, kullanıcı normal yazabilsin */
.page-transfer .trh-input:focus {
    text-overflow: clip;
}

.page-transfer .trh-input::placeholder {
    color: #94a3b8;
}

.page-transfer .trh-field-location {
    overflow: visible;
    position: relative;
}

.page-transfer .trh-loc-wrap {
    position: relative;
    width: 100%;
}

.page-transfer .trh-loc-wrap .trh-input {
    padding-right: 28px;
}

.page-transfer .trh-loc-clear {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
    color: #475569;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background .18s ease, color .18s ease;
}

.page-transfer .trh-loc-clear:hover {
    background: #cbd5e1;
    color: #0f172a;
}

.page-transfer .trh-loc-clear.show {
    display: inline-flex;
}

.page-transfer .trh-field-location.is-open {
    background: #f8fafc;
}

.page-transfer .trh-loc-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(11, 20, 38, .2);
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 12070;
    display: none;
    padding: 6px;
    /* Özel scrollbar – Firefox */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.page-transfer .trh-loc-results::-webkit-scrollbar {
    width: 5px;
}

.page-transfer .trh-loc-results::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 99px;
    margin: 6px 0;
}

.page-transfer .trh-loc-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}

.page-transfer .trh-loc-results::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.page-transfer .trh-loc-results.open {
    display: block;
    animation: trhLocDrop .18s ease;
}

.page-transfer .trh-loc-result {
    width: 100%;
    display: block;
    text-align: left;
    border: none;
    border-radius: 10px;
    background: transparent;
    padding: 9px 10px;
    cursor: pointer;
    transition: background .14s ease;
}

.page-transfer .trh-loc-result:hover {
    background: #f1f5f9;
}

.page-transfer .trh-loc-result strong {
    display: block;
    color: #0f172a;
    font-size: .84rem;
    line-height: 1.25;
}

.page-transfer .trh-loc-result span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: .73rem;
    line-height: 1.35;
}

.page-transfer .trh-loc-empty {
    padding: 10px 12px;
    color: #64748b;
    font-size: .8rem;
    font-weight: 600;
}

.page-transfer .trh-loc-empty--warn {
    color: #b45309;
}

.page-transfer .trh-inline-datetime {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(76px, auto);
    gap: 10px;
    align-items: center;
}

.page-transfer input[type="date"].trh-input,
.page-transfer input[type="time"].trh-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 20px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.page-transfer input[type="date"].trh-input::-webkit-calendar-picker-indicator,
.page-transfer input[type="time"].trh-input::-webkit-calendar-picker-indicator {
    opacity: .45;
    cursor: pointer;
}

.page-transfer input[type="time"].trh-input::-webkit-inner-spin-button,
.page-transfer input[type="time"].trh-input::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-wrapper {
    width: 100%;
    min-width: 0;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-wrapper {
    width: 100%;
    min-width: 0;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger {
    width: 100%;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: #475569 !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    font-family: var(--font-body, inherit) !important;
    line-height: 1.35 !important;
    outline: none !important;
    text-align: left;
    transition: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger {
    width: 100%;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: #475569 !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    font-family: var(--font-body, inherit) !important;
    line-height: 1.35 !important;
    outline: none !important;
    text-align: left;
    transition: none !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger:hover,
.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger:focus,
.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger.open,
.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger.has-value {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger:hover,
.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger:focus,
.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger.open,
.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger.has-value {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-trigger.placeholder-text {
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-trigger.placeholder-text {
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-icon {
    display: none !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avp-panel,
.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-panel {
    z-index: 12040 !important;
    top: auto !important;
    bottom: calc(100% + 10px) !important;
    transform-origin: bottom right !important;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-panel {
    min-width: 206px;
    left: auto;
    right: 0;
}

.page-transfer .trh-search-wrap .trh-inline-datetime .avtp-icon {
    display: none !important;
}

.page-transfer .is-hidden {
    display: none !important;
}

.page-transfer .trh-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
    flex-shrink: 0;
    margin: 0 2px;
}

.page-transfer .trh-guest-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    border: none;
    background: transparent;
    color: #475569;
    padding: 0;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.page-transfer .trh-chevron {
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.page-transfer .trh-field-guests.open .trh-chevron {
    transform: rotate(180deg);
}

.page-transfer .trh-guest-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 300px;
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 14px 44px rgba(11, 20, 38, .18),
        inset 0 0 0 1px rgba(0, 0, 0, .05);
    padding: 14px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .22s cubic-bezier(.2, 1, .3, 1);
    z-index: 12050;
}

.page-transfer .trh-field-guests.open .trh-guest-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-transfer .trh-guest-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 26px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.page-transfer .trh-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.page-transfer .trh-guest-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.page-transfer .trh-guest-meta strong {
    display: block;
    color: #0f172a;
    font-size: .92rem;
    line-height: 1.25;
}

.page-transfer .trh-guest-meta span {
    display: block;
    color: #94a3b8;
    font-size: .76rem;
    line-height: 1.35;
}

.page-transfer .trh-guest-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-transfer .trh-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #d6deea;
    background: #fff;
    color: #334155;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-transfer .trh-step:hover {
    border-color: var(--primary, #e85d04);
    color: var(--primary, #e85d04);
}

.page-transfer .trh-count {
    min-width: 18px;
    text-align: center;
    font-size: .93rem;
    font-weight: 700;
    color: #0f172a;
}

.page-transfer .trh-action {
    margin-left: 8px;
    flex-shrink: 0;
}

.page-transfer .trh-btn-search {
    border: none;
    border-radius: 999px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #e85d04 0%, #c44e03 100%);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(232, 93, 4, .42);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.page-transfer .trh-btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(232, 93, 4, .48);
}

.page-transfer .trh-search-notice {
    margin-top: 12px;
    color: #ffffff;
    font-size: .86rem;
    font-weight: 600;
    padding-left: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.page-transfer .trh-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}

.page-transfer .trh-wave svg {
    width: 100%;
    height: 88px;
    display: block;
}

@keyframes trhBgIn {
    from { transform: scale(1.11); opacity: .4; }
    to { transform: scale(1.06); opacity: 1; }
}

@keyframes trhFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes trhLocDrop {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .page-transfer .trh-trip-switch {
        width: min(100%, 380px);
        margin: 0 0 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .page-transfer .trh-search-grid {
        border-radius: 24px;
        flex-wrap: wrap;
        row-gap: 4px;
        padding: 14px;
    }

    .page-transfer .trh-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .page-transfer .trh-field {
        flex: 1 1 100%;
        border-radius: 14px;
        padding: 10px 12px;
    }

    .page-transfer .trh-loc-results {
        top: calc(100% + 8px);
    }

    .page-transfer .trh-inline-datetime {
        grid-template-columns: minmax(0, 1fr) minmax(88px, 120px);
    }

    .page-transfer .trh-action {
        margin: 8px 0 0;
        width: 100%;
    }

    .page-transfer .trh-btn-search {
        width: 100%;
        padding: 15px 20px;
    }

    .page-transfer .trh-guest-dropdown {
        width: min(320px, calc(100vw - 44px));
    }
}

/* Mobile guest sheet — globally hidden, shown only on mobile via media query */
.page-transfer .tour-mobile-sheet-backdrop,
.page-transfer .tour-mobile-sheet { display: none; }

@media (max-width: 768px) {
    .page-transfer .tour-mobile-sheet-backdrop {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(15,23,42,.42) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
        z-index: 100110;
    }
    .page-transfer .tour-mobile-sheet-backdrop.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    .page-transfer .tour-mobile-sheet {
        display: block !important;
        position: fixed !important;
        left: 0 !important; right: 0 !important; bottom: 0 !important;
        width: 100vw !important;
        z-index: 100120;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    }
    .page-transfer .tour-mobile-sheet.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    .page-transfer .tour-mobile-sheet-panel {
        background: #fff;
        border-radius: 28px 28px 0 0;
        max-height: 85svh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .page-transfer .tour-mobile-sheet-handle {
        width: 40px; height: 4px;
        background: #e2e8f0;
        border-radius: 2px;
        margin: 12px auto 0;
        flex-shrink: 0;
    }
    .page-transfer .tour-mobile-sheet-head {
        padding: 10px 20px 14px;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
    }
    .page-transfer .tour-mobile-sheet-title {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .page-transfer .tour-mobile-sheet-kicker {
        font-size: .69rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #94a3b8;
    }
    .page-transfer .tour-mobile-sheet-heading {
        font-size: 1.05rem;
        font-weight: 800;
        color: #0f172a;
    }
    .page-transfer .tour-mobile-sheet-close {
        width: 34px; height: 34px;
        border-radius: 50%;
        background: #f1f5f9;
        border: 0;
        font-size: 1.2rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #64748b;
        touch-action: manipulation;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    /* ── Hero: image top / search card bottom ── */
    .page-transfer .trh-hero {
        --trh-mobile-hero-height: clamp(340px, 56.25vw, 430px);
        min-height: auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background: #fff !important;
        overflow: visible !important;
        align-items: initial !important;
    }

    .page-transfer .trh-hero,
    .page-transfer .trh-hero * {
        box-sizing: border-box !important;
    }

    /* Background image: fixed height at top */
    .page-transfer .trh-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        height: var(--trh-mobile-hero-height) !important;
        overflow: hidden !important;
    }

    .page-transfer .trh-img {
        background-position: center center !important;
    }

    .page-transfer .trh-overlay {
        background: linear-gradient(180deg, rgba(6,12,24,.84) 0%, rgba(6,12,24,.64) 52%, rgba(6,12,24,.78) 100%) !important;
    }

    /* Hide the wave on mobile */
    .page-transfer .trh-wave {
        display: none !important;
    }

    /* Inner container: no side padding so cards go edge-to-edge */
    .page-transfer .trh-inner {
        position: relative !important;
        z-index: 3 !important;
        min-height: 0 !important;
        display: block !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .page-transfer .trh-inner.container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Text block: overlays the image, centred */
    .page-transfer .trh-copy {
        min-height: var(--trh-mobile-hero-height) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-top: 92px !important;
        padding-bottom: 34px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        text-align: center !important;
    }

    .page-transfer .trh-breadcrumb {
        justify-content: center !important;
        max-width: calc(100% - 24px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-transfer .trh-title {
        max-width: 100% !important;
        font-size: 2rem !important;
        line-height: 1.06 !important;
        margin-top: 14px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        text-wrap: balance;
        overflow-wrap: break-word;
    }

    .page-transfer .trh-sub {
        font-size: .98rem !important;
        line-height: 1.62 !important;
        max-width: 34ch !important;
        margin-top: 12px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        color: rgba(255,255,255,.8) !important;
    }

    /* Search form: white card that slides up over the image */
    .page-transfer .trh-search-wrap {
        position: relative !important;
        z-index: 4 !important;
        background: #ffffff !important;
        border: none !important;
        border-radius: 28px 28px 0 0 !important;
        padding: 22px 18px 28px !important;
        width: 100% !important;
        margin-top: -22px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-shadow: 0 -6px 30px rgba(11,20,38,.08), 0 -2px 8px rgba(11,20,38,.04) !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Trip switch tabs */
    .page-transfer .trh-trip-switch {
        display: flex !important;
        width: 100% !important;
        margin: 0 0 12px !important;
        padding: 4px !important;
        gap: 4px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 18px !important;
        background: #f1f5f9 !important;
        grid-template-columns: unset !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .page-transfer .trh-trip-btn {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 10px 12px !important;
        color: #64748b !important;
        font-size: .86rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        background: transparent !important;
        border-radius: 14px !important;
        letter-spacing: .03em !important;
    }

    .page-transfer .trh-trip-btn.active {
        background: #fff !important;
        color: var(--primary, #e85d04) !important;
        box-shadow: 0 8px 18px rgba(15,23,42,.08) !important;
    }

    /* Search fields grid → column stack inside styled container */
    .page-transfer .trh-search-grid {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 18px !important;
        padding: 8px !important;
        gap: 0 !important;
        box-shadow: inset 0 2px 4px rgba(0,0,0,.03) !important;
        overflow: visible !important;
    }

    .page-transfer .trh-field {
        display: flex !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        border-radius: 12px !important;
        padding: 13px 14px !important;
        background: transparent !important;
        border: 1px solid transparent !important;
        overflow: visible !important;
    }

    .page-transfer .trh-field:hover {
        background: #f1f5f9 !important;
    }

    /* Override 1180px breakpoint flex values */
    .page-transfer .trh-field-wide,
    .page-transfer .trh-field-datetime,
    .page-transfer .trh-field-guests {
        flex: 0 0 auto !important;
    }

    /* Dividers become horizontal lines */
    .page-transfer .trh-divider {
        display: block !important;
        width: calc(100% - 28px) !important;
        height: 1px !important;
        background: #e2e8f0 !important;
        margin: 2px auto !important;
        flex-shrink: 0 !important;
    }

    .page-transfer .trh-divider.is-hidden,
    .page-transfer .trh-field.is-hidden {
        display: none !important;
    }

    /* Field label & input */
    .page-transfer .trh-label {
        font-size: .72rem !important;
        font-weight: 800 !important;
        color: #0b1426 !important;
        text-transform: uppercase !important;
        letter-spacing: .05em !important;
    }

    .page-transfer .trh-input {
        color: #374151 !important;
        font-size: .95rem !important;
        font-weight: 500 !important;
    }

    .page-transfer .trh-input::placeholder {
        color: #9ca3af !important;
    }

    .page-transfer .trh-icon {
        color: #e85d04 !important;
    }

    /* Date/time inline grid: side-by-side on mobile */
    .page-transfer .trh-inline-datetime {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Search button: full width */
    .page-transfer .trh-action {
        flex: 0 0 auto !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 12px !important;
    }

    .page-transfer .trh-btn-search {
        display: flex !important;
        width: 100% !important;
        padding: 16px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* Guest dropdown: completely hidden on mobile — sheet is used instead */
    .page-transfer .trh-guest-dropdown {
        display: none !important;
    }

    /* Mobile guest sheet — content styles (structure uses tour-mobile-sheet) */
    .page-transfer .trh-guest-sheet-summary {
        padding: 12px 20px 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid rgba(226,232,240,.7);
    }
    .page-transfer .trh-guest-sheet-badge {
        display: inline-flex;
        align-items: center;
        font-size: .67rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #e85d04;
    }
    .page-transfer .trh-guest-sheet-total {
        font-size: 1.14rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
    }
    .page-transfer .trh-guest-sheet-copy {
        font-size: .88rem;
        line-height: 1.5;
        color: #64748b;
    }
    .page-transfer .trh-guest-sheet-rows {
        flex: 1;
        overflow-y: auto;
        padding: 8px 16px 4px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .page-transfer .trh-guest-sheet-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(226,232,240,.7);
    }
    .page-transfer .trh-guest-sheet-row:last-child { border-bottom: 0; }
    .page-transfer .trh-guest-sheet-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        flex: 1;
    }
    .page-transfer .trh-guest-sheet-name {
        font-size: .95rem;
        font-weight: 700;
        color: #0f172a;
    }
    .page-transfer .trh-guest-sheet-desc {
        font-size: .8rem;
        color: #64748b;
    }
    .page-transfer .trh-guest-sheet-stepper {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    .page-transfer .trh-guest-sheet-btn {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1.5px solid rgba(226,232,240,.9);
        background: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
        color: #94a3b8;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        touch-action: manipulation;
        transition: transform .12s ease, border-color .12s ease, color .12s ease;
    }
    .page-transfer .trh-guest-sheet-btn:not(:disabled) {
        color: #c2410c;
        border-color: rgba(234,88,12,.22);
    }
    .page-transfer .trh-guest-sheet-btn:not(:disabled):active { transform: scale(.93); }
    .page-transfer .trh-guest-sheet-btn:disabled { opacity: .35; }
    .page-transfer .trh-guest-sheet-count {
        min-width: 26px;
        text-align: center;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0f172a;
    }
    .page-transfer .trh-guest-sheet-footer {
        padding: 12px 16px 20px;
        border-top: 1px solid rgba(226,232,240,.9);
    }
    .page-transfer .trh-guest-sheet-done {
        width: 100%;
        padding: 15px;
        border: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, #e85d04, #c2410c);
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: .01em;
        cursor: pointer;
        touch-action: manipulation;
    }
    .page-transfer .trh-guest-sheet-done:active { opacity: .9; }

    /* Location results dropdown: larger area on mobile */
    .page-transfer .trh-loc-results {
        max-height: min(60svh, 400px) !important;
        border-radius: 16px !important;
        z-index: 12070 !important;
    }
}


/* ================================================================
   TRANSFER PAGE â€” CONTENT SECTIONS BELOW HERO
================================================================ */

/* â”€â”€ Shared Section Utilities â”€â”€ */
.page-transfer .trf-eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary, #e85d04);
    margin-bottom: 10px;
}

.page-transfer .trf-eyebrow--light {
    color: rgba(255,255,255,.6);
}

.page-transfer .trf-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.page-transfer .trf-section-title {
    font-family: var(--font-display, serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gray-900, #0f172a);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.page-transfer .trf-section-sub {
    font-size: 1rem;
    color: var(--gray-500, #64748b);
    line-height: 1.7;
}


.page-transfer .trf-section-head--left {
    text-align: left;
    max-width: 860px;
    margin: 0 0 28px;
}

.page-transfer .trf-section-head--left .trf-section-title,
.page-transfer .trf-section-head--left .trf-section-sub {
    text-align: left;
}

/* -- ROUTE DETAIL -- */
.page-transfer .trf-route-detail {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: visible;
}

.page-transfer .trf-route-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, .9fr);
    gap: 26px;
    align-items: start;
    overflow: visible;
}

.page-transfer .trf-route-detail-main {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .07);
}

.page-transfer .trf-route-detail-path {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.page-transfer .trf-route-detail-loc {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.page-transfer .trf-route-loc-icon {
    flex-shrink: 0;
}

.page-transfer .trf-route-loc-icon--from {
    color: #e85d04;
}

.page-transfer .trf-route-loc-icon--to {
    color: #0f172a;
}

.page-transfer .trf-route-detail-loc span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-transfer .trf-route-detail-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 40px;
    position: relative;
}

.page-transfer .trf-route-detail-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
    z-index: 1;
}

.page-transfer .trf-route-detail-arrow-icon {
    position: relative;
    z-index: 2;
    color: #94a3b8;
    background: #f8fafc;
    padding: 0 8px;
}


.page-transfer .trf-route-richtext {
    margin-top: 22px;
    color: #334155;
    font-size: .95rem;
    line-height: 1.8;
}

.page-transfer .trf-route-richtext > *:first-child {
    margin-top: 0;
}

.page-transfer .trf-route-richtext > *:last-child {
    margin-bottom: 0;
}

.page-transfer .trf-route-detail-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.page-transfer .trf-route-detail-block h3 {
    margin: 0 0 12px;
    font-family: var(--font-display, serif);
    font-size: 1.18rem;
    color: #0f172a;
    line-height: 1.3;
}

.page-transfer .trf-route-detail-block--content {
    margin-top: 20px;
}

.page-transfer .trf-route-detail-block--content .trf-route-richtext {
    margin-top: 0;
}

.page-transfer .trf-route-content-empty {
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-size: .95rem;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-transfer .trf-route-content-empty svg {
    color: #94a3b8;
}

.page-transfer .trf-route-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.page-transfer .trf-route-destination-card {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(226, 232, 240, .6);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .03);
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}

.page-transfer .trf-route-destination-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 93, 4, .4);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
}

.page-transfer .trf-route-destination-thumb {
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.page-transfer .trf-route-destination-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.page-transfer .trf-route-destination-card:hover .trf-route-destination-thumb img {
    transform: scale(1.08);
}

.page-transfer .trf-route-destination-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-transfer .trf-rd-card-title {
    display: block;
    padding: 14px 16px;
    font-size: .9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.page-transfer .trf-route-price-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
}

.page-transfer .trf-route-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color .2s ease;
    gap: 20px;
}

.page-transfer .trf-route-price-row:hover {
    background-color: #f8fafc;
}

.page-transfer .trf-route-price-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-transfer .trf-route-price-info strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.page-transfer .trf-rp-cat {
    padding: 4px 10px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.page-transfer .trf-route-price-meta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.page-transfer .trf-sp-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #475569;
}

.page-transfer .trf-sp-meta-pill svg {
    color: #94a3b8;
}

.page-transfer .trf-route-price-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page-transfer .trf-route-price-value {
    font-family: var(--font-display, serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
}

.page-transfer .trf-route-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.page-transfer .trf-route-gallery-item {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(226, 232, 240, .6);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.page-transfer .trf-route-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.page-transfer .trf-gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity .3s ease;
}

.page-transfer .trf-route-gallery-item:hover img {
    transform: scale(1.08);
}

.page-transfer .trf-route-gallery-item:hover .trf-gallery-hover {
    opacity: 1;
}

.page-transfer .trf-route-detail-side {
    position: sticky;
    top: 96px;
    align-items: start;
    height: fit-content;
    z-index: 5;
}

.page-transfer .trf-route-sticky-card {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    padding: 24px;
}

.page-transfer .trf-route-sticky-card h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.page-transfer .trf-route-map-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    height: 340px;
}

.page-transfer .trf-route-map-canvas {
    width: 100%;
    height: 100%;
}

.page-transfer .trf-route-map-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 600;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: none;
}

.page-transfer .trf-map-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .85);
    color: #ffffff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .15);
}

.page-transfer .trf-route-map-empty {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(140deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-transfer .trf-route-map-empty svg {
    color: #94a3b8;
    margin-bottom: 12px;
}

.page-transfer .trf-route-map-empty strong {
    font-size: .95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.page-transfer .trf-route-map-empty p {
    margin: 0;
    color: #64748b;
    font-size: .85rem;
    line-height: 1.6;
}

.page-transfer .trf-route-map-frame .leaflet-container {
    background: #e2e8f0;
    font-family: var(--font-body, inherit);
}

.page-transfer .trf-route-map-frame .leaflet-control-zoom {
    border: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
}

.page-transfer .trf-route-map-frame .leaflet-control-zoom a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 0;
    color: #0f172a;
}

.page-transfer .trf-route-map-frame .leaflet-control-attribution {
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(4px);
    border-radius: 8px 0 0 0;
    padding: 2px 6px;
}

.page-transfer .trf-map-marker {
    background: transparent !important;
    border: none !important;
}

.page-transfer .trf-map-marker span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.page-transfer .trf-map-marker--from span {
    background: #e85d04;
    box-shadow: 0 0 0 0 rgba(232, 93, 4, .46);
    animation: trfMapPulseWarm 2.2s infinite;
}

.page-transfer .trf-map-marker--to span {
    background: #0f172a;
    box-shadow: 0 0 0 0 rgba(15, 23, 42, .36);
    animation: trfMapPulseDark 2.2s infinite;
}

.page-transfer .trf-map-marker--moving span {
    width: 16px;
    height: 16px;
    background: #e85d04;
    box-shadow:
        0 0 0 4px rgba(232, 93, 4, .20),
        0 6px 14px rgba(232, 93, 4, .28);
    animation: trfMapMoverPulse 1.45s ease-in-out infinite;
}

.page-transfer .trf-map-marker--moving span::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 93, 4, .42);
    opacity: .72;
    animation: trfMapMoverRing 1.8s ease-out infinite;
}

.page-transfer .trf-map-tooltip {
    background: rgba(11, 20, 38, .86);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 5px 9px;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11, 20, 38, .22);
}

.page-transfer .trf-map-tooltip::before {
    border-top-color: rgba(11, 20, 38, .86) !important;
}

@keyframes trfMapPulseWarm {
    0% { box-shadow: 0 0 0 0 rgba(232, 93, 4, .46); }
    70% { box-shadow: 0 0 0 12px rgba(232, 93, 4, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

@keyframes trfMapPulseDark {
    0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, .36); }
    70% { box-shadow: 0 0 0 12px rgba(15, 23, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

@keyframes trfMapMoverPulse {
    0% { box-shadow: 0 8px 18px rgba(232, 93, 4, .34), 0 0 0 0 rgba(232, 93, 4, .34); }
    70% { box-shadow: 0 10px 24px rgba(232, 93, 4, .42), 0 0 0 11px rgba(232, 93, 4, 0); }
    100% { box-shadow: 0 8px 18px rgba(232, 93, 4, .34), 0 0 0 0 rgba(232, 93, 4, 0); }
}

@keyframes trfMapMoverRing {
    0% { transform: scale(.78); opacity: .75; }
    80% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1.1); opacity: 0; }
}

.page-transfer .trf-route-coords {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.page-transfer .trf-coord-box {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-transfer .trf-coord-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.page-transfer .trf-coord-icon--from {
    background: #fff4ec;
    color: #e85d04;
}

.page-transfer .trf-coord-icon--to {
    background: #e2e8f0;
    color: #0f172a;
}

.page-transfer .trf-coord-content {
    display: flex;
    flex-direction: column;
}

.page-transfer .trf-coord-content b {
    font-size: .7rem;
    color: #64748b;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.page-transfer .trf-coord-content span {
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.page-transfer .trf-route-side-actions {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.page-transfer .trf-route-side-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px;
    transition: background-color .2s ease, border-color .2s ease;
}

.page-transfer .trf-route-side-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.page-transfer .trf-route-side-btn--primary {
    border-color: transparent;
    background: #e85d04;
    color: #ffffff;
}

.page-transfer .trf-route-side-btn--primary:hover {
    background: #d85400;
    border-color: transparent;
}

.page-transfer .trf-route-side-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 8px;
    transition: color .2s ease;
}

.page-transfer .trf-route-side-link:hover {
    color: #0f172a;
}

@media (max-width: 1080px) {
    .page-transfer .trf-route-detail-shell {
        grid-template-columns: 1fr;
    }

    .page-transfer .trf-route-detail-side {
        position: static;
        top: auto;
        height: auto;
    }

    .page-transfer .trf-route-sticky-card {
        position: static;
    }
}

@media (max-width: 900px) {
    .page-transfer .trf-route-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-transfer .trf-route-price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-transfer .trf-route-detail {
        padding: 56px 0 66px;
    }

    .page-transfer .trf-route-detail-main {
        padding: 18px;
        border-radius: 18px;
    }

    .page-transfer .trf-route-detail-path {
        flex-wrap: wrap;
    }

    .page-transfer .trf-route-detail-highlights {
        grid-template-columns: 1fr;
    }

    .page-transfer .trf-route-destination-grid,
    .page-transfer .trf-route-gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-transfer .trf-route-map-frame {
        height: 270px;
    }

}
/* â”€â”€ DESTINATIONS â”€â”€ */
.page-transfer .trf-destinations {
    padding: 96px 0 104px;
    background: var(--gray-50, #f8fafc);
}

.page-transfer .trf-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.page-transfer .trf-empty-state {
    margin: 8px auto 0;
    max-width: 880px;
    text-align: center;
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px dashed #cbd5e1;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15,23,42,.04);
}

.page-transfer .trf-empty-state strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.page-transfer .trf-empty-state p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #64748b;
}

.page-transfer .trf-empty-state--fleet {
    margin-top: 0;
}

.page-transfer .trf-empty-state--routes {
    margin-top: 4px;
}

/* Ä°lk kart Ã¶ne Ã§Ä±kan ise 2 kolon kapsar */
.page-transfer .trf-dest-card--featured {
    grid-column: span 2;
}

.page-transfer .trf-dest-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .85);
    box-shadow: 0 2px 14px rgba(15, 23, 42, .06);
    transition: transform .28s ease, box-shadow .28s ease;
}

.page-transfer .trf-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(15, 23, 42, .13);
}

.page-transfer .trf-dest-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
    flex-shrink: 0;
}

.page-transfer .trf-dest-card--featured .trf-dest-img {
    aspect-ratio: 16 / 9;
}

.page-transfer .trf-dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.page-transfer .trf-dest-card:hover .trf-dest-img img {
    transform: scale(1.06);
}

.page-transfer .trf-dest-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(232, 93, 4, .15) 0%,
        rgba(11, 20, 38, .6) 100%);
}

.page-transfer .trf-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 20, 38, .55) 0%,
        rgba(11, 20, 38, .08) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.page-transfer .trf-dest-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e85d04, #c44e03);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.page-transfer .trf-dest-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-transfer .trf-dest-name {
    font-family: var(--font-display, serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.28;
    margin: 0;
}

.page-transfer .trf-dest-card--featured .trf-dest-name {
    font-size: 1.2rem;
}

.page-transfer .trf-dest-desc {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.page-transfer .trf-dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
    gap: 8px;
}

.page-transfer .trf-dest-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    color: #94a3b8;
}

.page-transfer .trf-dest-count svg {
    color: var(--primary, #e85d04);
    flex-shrink: 0;
}

.page-transfer .trf-dest-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    font-weight: 800;
    color: var(--primary, #e85d04);
    letter-spacing: .02em;
    transition: gap .18s ease;
}

.page-transfer .trf-dest-card:hover .trf-dest-cta {
    gap: 8px;
}

.page-transfer .trf-dest-all {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.page-transfer .trf-dest-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1.5px solid rgba(232, 93, 4, .35);
    color: var(--primary, #e85d04);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .02em;
    background: rgba(232, 93, 4, .04);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.page-transfer .trf-dest-all-btn:hover {
    background: var(--primary, #e85d04);
    border-color: var(--primary, #e85d04);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .page-transfer .trf-dest-grid { grid-template-columns: repeat(3, 1fr); }
    .page-transfer .trf-dest-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* Section — home.php ile birebir aynı yapı */
    .page-transfer .trf-destinations {
        padding: 56px 0 60px;
        overflow: hidden;
    }
    .page-transfer .trf-destinations .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    .page-transfer .trf-section-head {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-bottom: 32px !important;
    }
    .page-transfer .trf-dest-all {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-top: 20px !important;
    }

    /* Grid — home.php destinations-grid ile AYNI değerler */
    .page-transfer .trf-dest-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 0 24px 30px !important;
        margin: 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        scroll-padding-left: 24px !important;
    }
    .page-transfer .trf-dest-grid::-webkit-scrollbar { display: none !important; }

    /* Kart — home.php destination-card ile AYNI boyut ve stil */
    .page-transfer .trf-dest-card {
        position: relative !important;
        display: block !important;
        scroll-snap-align: start !important;
        flex: 0 0 260px !important;
        min-width: 260px !important;
        width: 260px !important;
        height: 340px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        color: #fff !important;
        text-decoration: none !important;
        background: #94a3b8 !important;
        border: none !important;
        box-shadow: 0 4px 6px rgba(0,0,0,.06), 0 20px 50px rgba(15,23,42,.12) !important;
    }
    .page-transfer .trf-dest-card--featured {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        width: 260px !important;
        height: 340px !important;
        grid-column: unset !important;
    }

    /* Resim — position absolute, kartı tamamen kaplar */
    .page-transfer .trf-dest-img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: unset !important;
        background: #94a3b8 !important;
    }
    .page-transfer .trf-dest-card--featured .trf-dest-img {
        aspect-ratio: unset !important;
    }
    .page-transfer .trf-dest-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        transform: scale(1.02) !important;
    }

    /* Overlay — home.php destination-shade ile AYNI gradient */
    .page-transfer .trf-dest-overlay {
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none !important;
        z-index: 1 !important;
        background: linear-gradient(
            to top,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.35) 38%,
            rgba(0,0,0,0) 58%
        ) !important;
    }

    /* Body — home.php destination-text ile AYNI konum */
    .page-transfer .trf-dest-body {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 2 !important;
        padding: 16px !important;
        background: none !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* İsim — home.php destination-name ile AYNI stil */
    .page-transfer .trf-dest-name {
        margin: 0 !important;
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        letter-spacing: -0.03em !important;
        line-height: 1.12 !important;
        color: #fff !important;
        text-shadow: 0 2px 20px rgba(0,0,0,.35) !important;
    }
    .page-transfer .trf-dest-card--featured .trf-dest-name {
        font-size: 1.15rem !important;
    }

    /* Footer: çizgi yok, count home gibi */
    .page-transfer .trf-dest-footer {
        margin-top: 6px !important;
        padding-top: 0 !important;
        border-top: none !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
    }
    .page-transfer .trf-dest-count {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.14em !important;
        text-transform: uppercase !important;
        color: rgba(255,255,255,.95) !important;
        text-shadow: 0 1px 12px rgba(0,0,0,.4) !important;
    }
    .page-transfer .trf-dest-count svg { display: none !important; }
    .page-transfer .trf-dest-cta { display: none !important; }
    .page-transfer .trf-dest-desc { display: none !important; }
    .page-transfer .trf-dest-badge {
        font-size: .62rem !important;
        padding: 3px 8px !important;
    }
}


/* â”€â”€ HOW IT WORKS â”€â”€ */
.page-transfer .trf-how {
    padding: 96px 0 100px;
    background: #fff;
}

.page-transfer .trf-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.page-transfer .trf-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.page-transfer .trf-step-number {
    font-family: var(--font-display, serif);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(232, 93, 4, .08);
    margin-bottom: -14px;
    letter-spacing: -.04em;
}

.page-transfer .trf-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff3eb 0%, #ffe4cc 100%);
    border: 1px solid rgba(232, 93, 4, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #e85d04);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(232, 93, 4, .14);
}

.page-transfer .trf-step h3 {
    font-family: var(--font-display, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-transfer .trf-step p {
    font-size: .92rem;
    color: #64748b;
    line-height: 1.7;
}

.page-transfer .trf-step-arrow {
    flex-shrink: 0;
    color: rgba(232, 93, 4, .35);
    margin-top: 60px;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .page-transfer .trf-how {
        padding: 56px 0 58px;
        overflow: hidden;
    }

    .page-transfer .trf-how .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .page-transfer .trf-how .trf-section-head {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-bottom: 28px !important;
    }

    .page-transfer .trf-steps {
        justify-content: flex-start;
        align-items: stretch;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px 22px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page-transfer .trf-steps::-webkit-scrollbar {
        display: none;
    }

    .page-transfer .trf-step {
        flex: 0 0 258px;
        max-width: 258px;
        min-height: 238px;
        scroll-snap-align: start;
        text-align: left;
        padding: 18px 18px 20px;
        border: 1px solid rgba(226, 232, 240, .9);
        border-radius: 24px;
        background:
            radial-gradient(circle at 20% 0%, rgba(232, 93, 4, .10), transparent 42%),
            #ffffff;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
        overflow: hidden;
    }

    .page-transfer .trf-step-number {
        position: absolute;
        top: -18px;
        right: 12px;
        font-size: 4.3rem;
        line-height: 1;
        opacity: .08;
        margin: 0;
        pointer-events: none;
    }

    .page-transfer .trf-step-icon {
        width: 54px;
        height: 54px;
        border-radius: 17px;
        margin: 0 0 18px;
        color: #e85d04;
        background: rgba(232, 93, 4, .10);
        box-shadow: none;
    }

    .page-transfer .trf-step-icon svg {
        width: 26px;
        height: 26px;
    }

    .page-transfer .trf-step h3 {
        font-size: 1.05rem;
        line-height: 1.25;
        margin: 0 0 8px;
    }

    .page-transfer .trf-step p {
        font-size: .86rem;
        line-height: 1.55;
        margin: 0;
    }

    .page-transfer .trf-step-arrow {
        display: none;
    }
}


/* â”€â”€ FLEET SLIDER â”€â”€ */
.page-transfer .trf-fleet {
    padding: 72px 0 80px;
    background: #f4f5f7;
    overflow: hidden;
}

.page-transfer .trf-fleet-head {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 48px;
}

.page-transfer .trf-fleet-title {
    font-family: var(--font-display, serif);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin: 0 0 10px;
}

.page-transfer .trf-fleet-sub {
    font-size: .95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Tam geniÅŸlik slider wrapper â€” ok butonlarÄ± kÃ¶ÅŸelerde */
.page-transfer .trf-fleet-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Viewport: tam ekran geniÅŸliÄŸi, her iki yanda 56px padding (ok iÃ§in) */
.page-transfer .trf-fleet-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 12px 0 20px;  /* dikey shadow iÃ§in alan */
}

/* Track: kartlar yan yana */
.page-transfer .trf-fleet-track {
    display: flex;
    gap: 0;
    transition: transform .36s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    padding: 0 40px; /* sayfa kenarÄ± boÅŸluk */
}

/* === KART: fotoÄŸraftaki gibi kÃ¼Ã§Ã¼k, kompakt === */
.page-transfer .trf-fleet-card {
    flex: 0 0 calc(100% / 6 - 14px); /* 6 kart / satÄ±r */
    margin: 0 7px;
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid #e8edf5;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(15,23,42,.05);
    transition: border-color .2s, box-shadow .2s, transform .2s;
    cursor: default;
    min-width: 0;
}

.page-transfer .trf-fleet-card:hover {
    border-color: #c8d0de;
    box-shadow: 0 6px 24px rgba(15,23,42,.1);
    transform: translateY(-3px);
}

/* Luxury variant */
.page-transfer .trf-fleet-card--luxury {
    border-color: rgba(245,158,11,.25);
    background: #fffef9;
}
.page-transfer .trf-fleet-card--luxury:hover {
    border-color: rgba(245,158,11,.5);
    box-shadow: 0 6px 24px rgba(245,158,11,.1);
}

/* AraÃ§ gÃ¶rseli â€” kÃ¼Ã§Ã¼k, ortalanmÄ±ÅŸ, object-fit:contain */
.page-transfer .trf-fleet-card-img {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
    padding: 0 8px;
}

.page-transfer .trf-fleet-card-img img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 10px rgba(15,23,42,.12));
    transition: transform .35s ease;
}

.page-transfer .trf-fleet-card-img-placeholder {
    width: 100%;
    max-width: 118px;
    height: 84px;
    border-radius: 12px;
    border: 1px dashed #d4dce7;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.page-transfer .trf-fleet-card:hover .trf-fleet-card-img img {
    transform: translateY(-4px) scale(1.03);
}

/* Kategori badge */
.page-transfer .trf-fleet-cat-badge {
    display: none; /* fotoÄŸrafta badge yok */
}

/* AraÃ§ adÄ± */
.page-transfer .trf-fleet-card-name {
    font-size: .92rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Alt notlar (marka benzer) */
.page-transfer .trf-fleet-card-notes {
    font-size: .72rem;
    color: #94a3b8;
    margin: 0 0 14px;
    line-height: 1.45;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Kapasite ikonlar â€” fotoÄŸraftaki gibi yan yana */
.page-transfer .trf-fleet-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    width: 100%;
}

.page-transfer .trf-fleet-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 600;
    color: #475569;
}

.page-transfer .trf-fleet-spec svg {
    color: #94a3b8;
    flex-shrink: 0;
}

/* === OK BUTONLARI: saÄŸ-sol kÃ¶ÅŸe, yuvarlak === */
.page-transfer .trf-fleet-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #d4d9e1;
    background: #fff;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15,23,42,.08);
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
    position: relative;
    z-index: 4;
    margin: 0 8px;
}

.page-transfer .trf-fleet-arrow:hover:not(:disabled) {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
    box-shadow: 0 6px 20px rgba(15,23,42,.2);
}

.page-transfer .trf-fleet-arrow:disabled {
    opacity: .3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1280px) {
    .page-transfer .trf-fleet-card { flex: 0 0 calc(100% / 5 - 14px); }
}

@media (max-width: 1024px) {
    .page-transfer .trf-fleet-card { flex: 0 0 calc(100% / 4 - 14px); }
}

@media (max-width: 768px) {
    .page-transfer .trf-fleet {
        padding: 56px 0 62px;
        overflow: hidden;
        background: #fff;
    }

    .page-transfer .trf-fleet-head {
        padding: 0 24px;
        margin-bottom: 28px;
        text-align: left;
    }

    .page-transfer .trf-fleet-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.12;
        margin-bottom: 8px;
    }

    .page-transfer .trf-fleet-sub {
        font-size: .9rem;
        line-height: 1.55;
    }

    .page-transfer .trf-fleet-slider-wrap {
        display: block;
        width: 100%;
    }

    .page-transfer .trf-fleet-arrow {
        display: none !important;
    }

    .page-transfer .trf-fleet-viewport {
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 0 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page-transfer .trf-fleet-viewport::-webkit-scrollbar {
        display: none;
    }

    .page-transfer .trf-fleet-track {
        gap: 10px;
        padding: 0 18px;
        transform: none !important;
        transition: none !important;
        will-change: auto;
    }

    .page-transfer .trf-fleet-card {
        flex: 0 0 268px;
        width: 268px;
        min-width: 268px;
        scroll-snap-align: start;
        border-radius: 24px;
        border: 1px solid rgba(226, 232, 240, .95);
        padding: 18px 16px 16px;
        background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98));
        box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
        align-items: stretch;
        text-align: left;
    }

    .page-transfer .trf-fleet-card--luxury {
        background:
            radial-gradient(circle at 18% 0%, rgba(245,158,11,.13), transparent 42%),
            linear-gradient(180deg, #fffef9, #ffffff);
        border-color: rgba(245,158,11,.25);
    }

    .page-transfer .trf-fleet-card-img {
        height: 126px;
        margin-bottom: 16px;
        padding: 0;
        align-items: center;
        border-radius: 20px;
        background: linear-gradient(135deg, #f8fafc, #eef2f7);
        overflow: hidden;
    }

    .page-transfer .trf-fleet-card-img img {
        max-width: 92%;
        max-height: 112px;
        margin: 0 auto;
        filter: drop-shadow(0 8px 16px rgba(15,23,42,.14));
    }

    .page-transfer .trf-fleet-card-body {
        display: flex;
        flex-direction: column;
        min-height: 132px;
    }

    .page-transfer .trf-fleet-cat-badge {
        display: inline-flex;
        align-self: flex-start;
        margin-bottom: 8px;
        padding: 4px 9px;
        border-radius: 999px;
        background: rgba(232, 93, 4, .10);
        color: #c2410c;
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .page-transfer .trf-fleet-card-name {
        font-size: 1.02rem;
        line-height: 1.25;
        margin-bottom: 6px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .page-transfer .trf-fleet-card-notes {
        font-size: .78rem;
        line-height: 1.45;
        margin-bottom: 12px;
        color: #64748b;
        line-clamp: 2;
        -webkit-line-clamp: 2;
    }

    .page-transfer .trf-fleet-specs {
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid rgba(226, 232, 240, .85);
        justify-content: flex-start;
        gap: 10px;
    }

    .page-transfer .trf-fleet-spec {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 12px;
        background: #f8fafc;
        color: #334155;
        font-size: .84rem;
        font-weight: 700;
    }

    .page-transfer .trf-fleet-spec svg {
        color: #e85d04;
    }
}

@media (max-width: 540px) {
    .page-transfer .trf-fleet-card {
        flex: 0 0 268px;
        width: 268px;
        min-width: 268px;
    }
    .page-transfer .trf-fleet-arrow { width: 36px; height: 36px; margin: 0 4px; }
}

@media (max-width: 360px) {
    .page-transfer .trf-fleet-card {
        flex: 0 0 252px;
        width: 252px;
        min-width: 252px;
    }
}


/* â”€â”€ WHY US â”€â”€ */
.page-transfer .trf-why {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
    color: #fff;
}

.page-transfer .trf-why-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, #000000 0%, #000000 60%, #0b1426 100%);
    z-index: 0;
}

.page-transfer .trf-why-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 80% 50%, rgba(232, 93, 4, .2), transparent 70%);
}

.page-transfer .trf-why .container {
    position: relative;
    z-index: 1;
}

.page-transfer .trf-why-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

.page-transfer .trf-why-title {
    font-family: var(--font-display, serif);
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.page-transfer .trf-why-sub {
    font-size: .97rem;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    margin-bottom: 32px;
}

.page-transfer .trf-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e85d04, #c44e03);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 10px 28px rgba(232, 93, 4, .38);
    transition: transform .2s ease, box-shadow .2s ease;
}

.page-transfer .trf-why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(232, 93, 4, .5);
}

.page-transfer .trf-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
}

.page-transfer .trf-why-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.page-transfer .trf-why-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(232, 93, 4, .18);
    border: 1px solid rgba(232, 93, 4, .28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffa06e;
    flex-shrink: 0;
}

.page-transfer .trf-why-feat strong {
    display: block;
    font-size: .93rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.page-transfer .trf-why-feat p {
    font-size: .83rem;
    color: rgba(255,255,255,.58);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .page-transfer .trf-why-inner { grid-template-columns: 1fr; gap: 48px; }
    .page-transfer .trf-why-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .page-transfer .trf-why {
        padding: 50px 0 46px;
        background: #0b1426;
    }

    .page-transfer .trf-why-bg {
        background: linear-gradient(155deg, #0b1426 0%, #14213d 52%, #0b1426 100%);
    }

    .page-transfer .trf-why-bg::after {
        background:
            radial-gradient(440px 320px at 88% 8%, rgba(232, 93, 4, .24), transparent 68%),
            radial-gradient(340px 260px at 0% 82%, rgba(255, 255, 255, .06), transparent 70%);
    }

    .page-transfer .trf-why .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-transfer .trf-why-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow: visible;
    }

    .page-transfer .trf-why-copy {
        text-align: left;
    }

    .page-transfer .trf-why-title {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .page-transfer .trf-why-sub {
        font-size: .9rem;
        line-height: 1.6;
        margin-bottom: 16px;
        color: rgba(255,255,255,.72);
    }

    .page-transfer .trf-why-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 16px;
        font-size: .88rem;
        box-shadow: 0 12px 28px rgba(232, 93, 4, .32);
    }

    .page-transfer .trf-why-features {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100vw;
        max-width: 100vw;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 14px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: contain;
        cursor: grab;
    }

    .page-transfer .trf-why-features::-webkit-scrollbar {
        display: none;
    }

    .page-transfer .trf-why-feat {
        flex: 0 0 214px;
        min-width: 214px;
        max-width: 214px;
        min-height: 132px;
        scroll-snap-align: start;
        flex-direction: column;
        gap: 8px;
        padding: 13px 12px 12px;
        border-radius: 18px;
        background: rgba(255,255,255,.075);
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 10px 26px rgba(0,0,0,.12);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        pointer-events: auto;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-x pan-y;
    }

    .page-transfer .trf-why-feat-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(232, 93, 4, .16);
        border-color: rgba(232, 93, 4, .24);
    }

    .page-transfer .trf-why-feat-icon svg {
        width: 20px;
        height: 20px;
    }

    .page-transfer .trf-why-feat strong {
        font-size: .82rem;
        line-height: 1.22;
        margin-bottom: 4px;
    }

    .page-transfer .trf-why-feat p {
        font-size: .72rem;
        line-height: 1.38;
        color: rgba(255,255,255,.62);
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 380px) {
    .page-transfer .trf-why .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-transfer .trf-why-features {
        gap: 8px;
    }

    .page-transfer .trf-why-feat {
        min-height: 150px;
        padding: 13px 10px;
    }
}


/* â”€â”€ POPULAR ROUTES â”€â”€ */
.page-transfer .trf-routes {
    padding: 96px 0 100px;
    background: #fff;
}

.page-transfer .trf-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Route Card Dynamic Layout */
.page-transfer .trf-route-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-transfer .trf-route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.page-transfer .trf-route-card--hero {
    grid-column: span 1; /* Reset to 1 col for consistency */
}

/* Card Image Section */
.page-transfer .trf-route-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.page-transfer .trf-route-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-transfer .trf-route-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Wishlist Button Overlay */
.page-transfer .fav-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.page-transfer .fav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.page-transfer .fav-btn.is-active {
    color: #ef4444;
}

/* Card Body */
.page-transfer .trf-route-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    padding: 0 24px 20px;
    text-align: center;
}

/* Locations Pill (overlaps image) */
.page-transfer .trf-route-card-locations {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    margin: -24px auto 20px;
    z-index: 2;
    gap: 16px;
}

.page-transfer .loc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #ffffff;
}

.page-transfer .loc-icon.bg-orange {
    background: #e85d04;
}

.page-transfer .loc-icon.bg-gray {
    background: #e85d04; /* Matches design color for both ends */
}

.page-transfer .loc-line {
    width: 30px;
    height: 1px;
    background: #cbd5e1;
    position: relative;
}

.page-transfer .loc-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    border-top: 2px dotted #94a3b8;
}

/* Typography */
.page-transfer .trf-route-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.35;
}

.page-transfer .trf-route-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Card Footer */
.page-transfer .trf-route-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.page-transfer .details-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e85d04;
    transition: color 0.2s;
}

.page-transfer .details-link svg {
    color: #e85d04;
}

.page-transfer .action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e85d04;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.page-transfer .trf-route-card:hover .action-btn {
    background: #d05303;
}

@media (max-width: 1024px) {
    .page-transfer .trf-routes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .page-transfer .trf-routes {
        padding: 56px 0 60px;
        overflow: hidden;
    }
    .page-transfer .trf-routes .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    .page-transfer .trf-routes .trf-section-head {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-bottom: 28px !important;
    }
    .page-transfer .trf-routes-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2px 20px 22px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
    }
    .page-transfer .trf-routes-grid::-webkit-scrollbar {
        display: none;
    }
    .page-transfer .trf-route-card {
        flex: 0 0 292px;
        width: 292px;
        min-width: 292px;
        scroll-snap-align: start;
    }
    .page-transfer .trf-route-card-img {
        height: 180px;
    }
    .page-transfer .trf-route-card-body {
        padding: 0 16px 16px;
    }
    .page-transfer .trf-route-card-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 360px) {
    .page-transfer .trf-route-card {
        flex-basis: 272px;
        width: 272px;
        min-width: 272px;
    }
}



/* â”€â”€ STATS â”€â”€ */
.page-transfer .trf-stats {
    padding: 72px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.page-transfer .trf-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 50% 50%, rgba(232,93,4,.15), transparent 70%);
}

.page-transfer .trf-stats .container {
    position: relative;
    z-index: 1;
}

.page-transfer .trf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.page-transfer .trf-stat {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.page-transfer .trf-stat:last-child {
    border-right: none;
}

.page-transfer .trf-stat-number {
    font-family: var(--font-display, serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.page-transfer .trf-stat-number span {
    font-size: 60%;
    color: var(--primary, #e85d04);
    vertical-align: super;
    font-weight: 800;
}

.page-transfer .trf-stat-label {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (max-width: 768px) {
    .page-transfer .trf-stats { padding: 56px 0 64px; }
    .page-transfer .trf-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .page-transfer .trf-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 16px; }
    .page-transfer .trf-stat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.08); }
    .page-transfer .trf-stat:nth-last-child(-n+2) { border-bottom: none; }
}


/* â”€â”€ TESTIMONIALS â”€â”€ */
.page-transfer .trf-testimonials {
    padding: 96px 0 100px;
    background: var(--gray-50, #f8fafc);
}

.page-transfer .trf-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-transfer .trf-testi-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 2px 16px rgba(15,23,42,.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.page-transfer .trf-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15,23,42,.11);
}

.page-transfer .trf-testi-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1rem;
}

.page-transfer .trf-testi-text {
    font-size: .93rem;
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.page-transfer .trf-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.page-transfer .trf-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #e85d04), #c44e03);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-transfer .trf-testi-author strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.page-transfer .trf-testi-author span {
    display: block;
    font-size: .76rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .page-transfer .trf-testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .page-transfer .trf-testimonials {
        padding: 56px 0 60px;
        overflow: hidden;
        background: #f8fafc;
    }

    .page-transfer .trf-testimonials .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .page-transfer .trf-testimonials .trf-section-head {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-bottom: 28px !important;
    }

    .page-transfer .trf-testi-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2px 20px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
    }

    .page-transfer .trf-testi-grid::-webkit-scrollbar {
        display: none;
    }

    .page-transfer .trf-testi-card {
        flex: 0 0 292px;
        width: 292px;
        min-width: 292px;
        scroll-snap-align: start;
        border-radius: 20px;
        padding: 20px 18px 18px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
    }

    .page-transfer .trf-testi-stars {
        font-size: .95rem;
    }

    .page-transfer .trf-testi-text {
        font-size: .86rem;
        line-height: 1.58;
        display: -webkit-box;
        line-clamp: 5;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page-transfer .trf-testi-author {
        padding-top: 12px;
        gap: 10px;
    }

    .page-transfer .trf-testi-avatar {
        width: 38px;
        height: 38px;
        font-size: .88rem;
    }

    .page-transfer .trf-testi-author strong {
        font-size: .86rem;
    }

    .page-transfer .trf-testi-author span {
        font-size: .72rem;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


/* â”€â”€ FAQ â”€â”€ */
.page-transfer .trf-faq {
    padding: 96px 0 100px;
    background: #fff;
}

.page-transfer .trf-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.page-transfer .trf-faq-head {
    position: sticky;
    top: 100px;
}

.page-transfer .trf-faq-head .trf-section-title {
    text-align: left;
    margin-bottom: 12px;
}

.page-transfer .trf-faq-head .trf-section-sub {
    text-align: left;
}

.page-transfer .trf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-transfer .trf-faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.page-transfer .trf-faq-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.page-transfer .trf-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    list-style: none;
    user-select: none;
    transition: color .18s;
}

.page-transfer .trf-faq-q::-webkit-details-marker {
    display: none;
}

.page-transfer .trf-faq-item[open] .trf-faq-q {
    color: var(--primary, #e85d04);
}

.page-transfer .trf-faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .25s ease, color .18s;
}

.page-transfer .trf-faq-item[open] .trf-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary, #e85d04);
}

.page-transfer .trf-faq-a {
    padding: 0 4px 20px;
}

.page-transfer .trf-faq-a p {
    font-size: .93rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .page-transfer .trf-faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .page-transfer .trf-faq-head { position: static; }
    .page-transfer .trf-faq-head .trf-section-title,
    .page-transfer .trf-faq-head .trf-section-sub { text-align: center; }
}

@media (max-width: 640px) {
    .page-transfer .trf-faq {
        padding: 56px 0 60px;
        background: #fff;
    }

    .page-transfer .trf-faq-inner {
        gap: 24px;
    }

    .page-transfer .trf-faq-head {
        padding: 0 4px;
    }

    .page-transfer .trf-faq-head .trf-section-title,
    .page-transfer .trf-faq-head .trf-section-sub {
        text-align: left;
    }

    .page-transfer .trf-faq-head .trf-section-title {
        margin-bottom: 8px;
    }

    .page-transfer .trf-faq-list {
        gap: 10px;
    }

    .page-transfer .trf-faq-item,
    .page-transfer .trf-faq-item:first-child {
        border: 1px solid rgba(226, 232, 240, .95);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 6px 20px rgba(15, 23, 42, .045);
        overflow: hidden;
    }

    .page-transfer .trf-faq-q {
        padding: 15px 14px;
        gap: 12px;
        font-size: .9rem;
        line-height: 1.35;
    }

    .page-transfer .trf-faq-chevron {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: #f8fafc;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .page-transfer .trf-faq-a {
        padding: 0 14px 15px;
    }

    .page-transfer .trf-faq-a p {
        font-size: .84rem;
        line-height: 1.58;
    }
}


/* â”€â”€ CTA SECTION (Home Premium CTA tarzÄ±) â”€â”€ */
.page-transfer .trf-cta-section {
    padding: 40px 0 56px;
}

.page-transfer .trf-cta-premium-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--navy, #0b1426);
    box-shadow: 0 30px 60px rgba(11,20,38,.2);
}

.page-transfer .trf-cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 10s ease;
}

.page-transfer .trf-cta-premium-wrapper:hover .trf-cta-bg-image {
    transform: scale(1.05);
}

.page-transfer .trf-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(11,20,38,.98) 0%,
        rgba(11,20,38,.85) 50%,
        rgba(11,20,38,.3) 100%);
    z-index: 2;
}

.page-transfer .trf-cta-content-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    padding: 48px 64px;
    align-items: center;
}

/* Sol metin tarafÄ± */
.page-transfer .trf-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.page-transfer .trf-cta-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,.7);
    animation: trfCtaPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes trfCtaPulse {
    0%   { transform: scale(.95); box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
    70%  { transform: scale(1);   box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.page-transfer .trf-cta-title {
    font-family: var(--font-display, serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.page-transfer .trf-cta-title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.8);
}

.page-transfer .trf-cta-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.page-transfer .trf-cta-trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.page-transfer .trf-cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
}

/* SaÄŸ cam kart */
.page-transfer .trf-glass-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.page-transfer .trf-glass-title {
    color: #fff;
    font-family: var(--font-display, serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-transfer .trf-glass-desc {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin-bottom: 32px;
    line-height: 1.65;
}

/* Premium iletisim butonlari */
.page-transfer .trf-premium-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all .3s cubic-bezier(.2, 1, .3, 1);
    border: 1px solid transparent;
}

.page-transfer .trf-premium-contact-btn:last-child {
    margin-bottom: 0;
}

.page-transfer .trf-pcb-phone {
    background: linear-gradient(135deg, var(--primary, #e85d04) 0%, #c44e03 100%);
    box-shadow: 0 8px 25px rgba(232,93,4,.3);
}

.page-transfer .trf-pcb-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232,93,4,.45);
}

.page-transfer .trf-pcb-whatsapp {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
}

.page-transfer .trf-pcb-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,.3);
}

.page-transfer .trf-pcb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.page-transfer .trf-pcb-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-transfer .trf-pcb-label {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-transfer .trf-pcb-phone .trf-pcb-label {
    color: rgba(255,255,255,.9);
}

.page-transfer .trf-pcb-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .page-transfer .trf-cta-content-grid {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 40px;
    }
    .page-transfer .trf-cta-overlay {
        background: linear-gradient(180deg,
            rgba(11,20,38,.95) 0%,
            rgba(11,20,38,.88) 100%);
    }
}

@media (max-width: 640px) {
    .page-transfer .trf-cta-section {
        padding: 0 0 48px;
    }

    .page-transfer .trf-cta-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-transfer .trf-cta-premium-wrapper {
        width: 100% !important;
        border-radius: 0;
        box-shadow: none;
    }

    .page-transfer .trf-cta-content-grid {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 28px;
    }

    .page-transfer .trf-cta-overlay {
        background: linear-gradient(180deg, rgba(11,20,38,.96) 0%, rgba(11,20,38,.88) 100%);
    }

    .page-transfer .trf-cta-eyebrow {
        font-size: .72rem;
        padding: 5px 12px;
        margin-bottom: 18px;
    }

    .page-transfer .trf-cta-title {
        font-size: clamp(1.55rem, 6vw, 2.2rem);
        margin-bottom: 14px;
    }

    .page-transfer .trf-cta-subtitle {
        font-size: .92rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .page-transfer .trf-cta-trust-badges {
        flex-direction: column;
        gap: 14px;
    }

    .page-transfer .trf-cta-trust-badge {
        font-size: .84rem;
    }

    .page-transfer .trf-glass-card {
        padding: 24px 20px;
    }

    .page-transfer .trf-glass-title {
        font-size: 1.2rem;
    }

    .page-transfer .trf-glass-desc {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .page-transfer .trf-premium-contact-btn {
        padding: 14px;
        gap: 14px;
    }

    .page-transfer .trf-pcb-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .page-transfer .trf-pcb-icon svg {
        width: 20px;
        height: 20px;
    }

    .page-transfer .trf-pcb-label {
        font-size: .7rem;
    }

    .page-transfer .trf-pcb-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-transfer .trf-cta-content-grid {
        padding: 28px 18px;
        gap: 22px;
    }

    .page-transfer .trf-glass-card {
        padding: 20px 16px;
    }

    .page-transfer .trf-glass-title {
        font-size: 1.15rem;
    }

    .page-transfer .trf-glass-desc {
        font-size: .86rem;
        margin-bottom: 20px;
    }
}

/* Mobile polish for transfer destination/route detail hero */
@media (max-width: 768px) {
    .page-transfer.page-transfer-destination .trh-hero,
    .page-transfer.page-transfer-route-detail .trh-hero {
        --trh-mobile-hero-height: clamp(330px, 56vw, 390px);
    }

    .page-transfer.page-transfer-destination .trh-copy,
    .page-transfer.page-transfer-route-detail .trh-copy {
        min-height: var(--trh-mobile-hero-height) !important;
        justify-content: center !important;
        padding-top: 78px !important;
        padding-bottom: 46px !important;
        overflow: hidden !important;
    }

    .page-transfer.page-transfer-destination .trh-breadcrumb,
    .page-transfer.page-transfer-route-detail .trh-breadcrumb {
        max-width: min(92vw, 560px) !important;
        padding: 7px 12px !important;
        font-size: .72rem !important;
        line-height: 1 !important;
    }

    .page-transfer.page-transfer-destination .trh-title,
    .page-transfer.page-transfer-route-detail .trh-title {
        max-width: min(92vw, 600px) !important;
        margin-top: 12px !important;
        font-size: clamp(1.82rem, 7vw, 2.32rem) !important;
        line-height: 1.07 !important;
    }

    .page-transfer.page-transfer-destination .trh-sub,
    .page-transfer.page-transfer-route-detail .trh-sub {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        max-width: min(36ch, calc(100vw - 34px)) !important;
        max-height: 4.32em !important;
        margin-top: 10px !important;
        overflow: hidden !important;
        color: rgba(255, 255, 255, .82) !important;
        font-size: .9rem !important;
        line-height: 1.44 !important;
        text-overflow: ellipsis !important;
    }

    .page-transfer.page-transfer-destination .trh-search-wrap,
    .page-transfer.page-transfer-route-detail .trh-search-wrap {
        margin-top: -56px !important;
        border-radius: 30px 30px 0 0 !important;
    }
}

@media (max-width: 420px) {
    .page-transfer.page-transfer-destination .trh-hero,
    .page-transfer.page-transfer-route-detail .trh-hero {
        --trh-mobile-hero-height: 334px;
    }

    .page-transfer.page-transfer-destination .trh-copy,
    .page-transfer.page-transfer-route-detail .trh-copy {
        padding-top: 74px !important;
        padding-bottom: 44px !important;
    }

    .page-transfer.page-transfer-destination .trh-title,
    .page-transfer.page-transfer-route-detail .trh-title {
        font-size: clamp(1.66rem, 8vw, 2.05rem) !important;
    }

    .page-transfer.page-transfer-destination .trh-sub,
    .page-transfer.page-transfer-route-detail .trh-sub {
        -webkit-line-clamp: 2 !important;
        max-height: 2.88em !important;
        max-width: min(34ch, calc(100vw - 32px)) !important;
        font-size: .86rem !important;
    }

    .page-transfer.page-transfer-destination .trh-search-wrap,
    .page-transfer.page-transfer-route-detail .trh-search-wrap {
        margin-top: -54px !important;
    }
}

/* Route detail mobile layout */
@media (max-width: 768px) {
    .page-transfer.page-transfer-route-detail .trf-route-detail {
        padding: 38px 0 56px !important;
        background: #f8fafc !important;
        overflow: hidden !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-section-head {
        margin: 0 0 18px !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-section-head--left .trf-section-title,
    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-section-head--left .trf-section-sub {
        text-align: center !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-eyebrow {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-section-title {
        max-width: 18ch !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: clamp(1.55rem, 6vw, 2.05rem) !important;
        line-height: 1.13 !important;
        text-wrap: balance;
        overflow-wrap: break-word;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail .trf-section-sub {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        max-width: 36ch !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
        font-size: .9rem !important;
        line-height: 1.58 !important;
        color: #64748b !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-shell {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-main,
    .page-transfer.page-transfer-route-detail .trf-route-sticky-card {
        width: 100% !important;
        border-radius: 20px !important;
        border-color: rgba(226, 232, 240, .9) !important;
        box-shadow: 0 12px 30px rgba(15, 23, 42, .07) !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-main {
        padding: 16px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-path {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 14px !important;
        border-radius: 16px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-loc {
        display: grid !important;
        grid-template-columns: 14px minmax(0, 1fr) !important;
        width: 100% !important;
        gap: 10px !important;
        align-items: center !important;
        font-size: .92rem !important;
        line-height: 1.3 !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-loc span:last-child {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        overflow-wrap: anywhere !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-arrow {
        display: none !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlight {
        min-height: 82px !important;
        padding: 10px 8px !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlight b {
        font-size: .63rem !important;
        line-height: 1.18 !important;
        letter-spacing: .04em !important;
        max-width: 100% !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlight span {
        font-size: 1.42rem !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-block {
        margin-top: 18px !important;
        padding-top: 18px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-block h3 {
        margin-bottom: 10px !important;
        font-size: 1.05rem !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-richtext {
        margin-top: 0 !important;
        font-size: .92rem !important;
        line-height: 1.72 !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-destination-card {
        border-radius: 14px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-destination-card > span {
        min-height: 44px !important;
        padding: 9px 10px !important;
        font-size: .78rem !important;
        line-height: 1.28 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-price-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-price-card {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-price-top {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-price-value {
        font-size: 1.42rem !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-gallery-item img {
        height: 132px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-side {
        position: static !important;
        width: 100% !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-sticky-card {
        padding: 14px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-sticky-card h3 {
        font-size: .92rem !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-map-frame {
        height: 260px !important;
        border-radius: 14px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-map-overlay {
        top: 8px !important;
        left: 8px !important;
        right: 8px !important;
        gap: 6px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-map-pill {
        padding: 5px 8px !important;
        font-size: .66rem !important;
        letter-spacing: 0 !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-coords {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-coords span {
        overflow-wrap: anywhere !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-side-btn {
        min-height: 44px !important;
        border-radius: 14px !important;
        font-size: .84rem !important;
    }
}

@media (max-width: 420px) {
    .page-transfer.page-transfer-route-detail .trf-route-detail .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-main,
    .page-transfer.page-transfer-route-detail .trf-route-sticky-card {
        border-radius: 18px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-main {
        padding: 14px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlights {
        gap: 6px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-detail-highlight {
        min-height: 76px !important;
        padding: 9px 6px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-destination-grid,
    .page-transfer.page-transfer-route-detail .trf-route-gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-gallery-item img {
        height: 178px !important;
    }

    .page-transfer.page-transfer-route-detail .trf-route-map-frame {
        height: 236px !important;
    }
}

/* Route detail: keep the existing mobile design, stop page-level horizontal drift */
@media (max-width: 768px) {
    body.page-transfer.page-transfer-route-detail {
        overflow-x: hidden !important;
    }

    .page-transfer.page-transfer-route-detail .tour-mobile-sheet {
        width: 100% !important;
        max-width: 100% !important;
    }

    .page-transfer.page-transfer-route-detail .trh-search-wrap,
    .page-transfer.page-transfer-route-detail .trf-routes-grid {
        max-width: 100% !important;
        overscroll-behavior-x: contain !important;
    }

    .page-transfer.page-transfer-route-detail .trf-pcb-texts {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .page-transfer.page-transfer-route-detail .trf-pcb-value {
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
}

/* --- INJECTED TDEST & FSEC STYLES --- */
.fsec--gray { background:#e8eef8; }
.fsec-head { display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:32px; }
.fsec-head--center { justify-content:center;text-align:center;margin-bottom:40px; }
.fsec-eyebrow { display:inline-block;font-size:.71rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#e85d04;margin-bottom:8px; }
.fsec-title { font-family:var(--font-display);font-size:clamp(1.6rem,2.8vw,2.1rem);font-weight:700;line-height:1.2;color:#0b1426;margin-bottom:8px; }
.fsec-title em { font-style:italic;color:#e85d04; }
.fsec-sub { font-size:.9rem;color:#6b7280;line-height:1.7;max-width:520px; }
.fsec-all-link { display:inline-flex;align-items:center;gap:6px;font-size:.81rem;font-weight:700;color:#e85d04;text-decoration:none;white-space:nowrap;flex-shrink:0;border:1.5px solid #ffd7b8;border-radius:100px;padding:8px 16px;transition:background .18s,border-color .18s; }
.fsec-all-link:hover { background:#fff3eb;border-color:#e85d04; }
.fslider-wrap { display:flex;align-items:center;gap:12px; }
.tdest-section { background: #fff; }

/* Başlık satırı */
.tdest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tdest-head-left { flex: 1; min-width: 0; }

.tdest-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #0b1426;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .18s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(11,20,38,.18);
}

.tdest-all-btn:hover {
    background: #e85d04;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,93,4,.28);
}

.tdest-all-btn svg { transition: transform .2s; }
.tdest-all-btn:hover svg { transform: translateX(3px); }

.tdest-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.tdest-viewport {
    overflow: hidden;
    width: 100%;
}

.tdest-track {
    display: flex;
    gap: 16px;
    transition: transform .36s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}

.tdest-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(11,20,38,.08);
    flex-shrink: 0;
}

.tdest-arrow:hover:not(:disabled) {
    background: #0b1426;
    border-color: #0b1426;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 26px rgba(11,20,38,.2);
}

.tdest-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tdest-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ─ Kart ─ */
.tdest-card {
    flex: 0 0 calc((100% - 48px) / 4);
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 6px 24px rgba(11,20,38,.12), 0 2px 8px rgba(11,20,38,.06);
    transition: transform .32s cubic-bezier(.25,.46,.45,.94), box-shadow .32s;
    background: #1a2d50;
}

.tdest-card:hover { transform: none !important; box-shadow: none !important; }

/* Görsel */
.tdest-card-img {
    position: absolute;
    inset: 0;
}

.tdest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.tdest-card:hover .tdest-card-img img {
    transform: scale(1.07);
}

.tdest-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1e38, #1a3260);
    color: rgba(255,255,255,.2);
}

.tdest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,12,24,.88) 0%,
        rgba(6,12,24,.32) 50%,
        rgba(6,12,24,.05) 100%
    );
    transition: background .3s;
}

.tdest-card:hover .tdest-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6,12,24,.94) 0%,
        rgba(6,12,24,.44) 60%,
        rgba(6,12,24,.1) 100%
    );
}

/* İçerik */
.tdest-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(6px);
    transition: transform .3s;
}

.tdest-card:hover .tdest-card-body {
    transform: translateY(0);
}

.tdest-card-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(232,93,4,.22);
    border: 1px solid rgba(232,93,4,.35);
    border-radius: 999px;
    padding: 3px 9px;
    width: fit-content;
    margin-bottom: 4px;
}

.tdest-card-name {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(.95rem, 1.2vw, 1.15rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.tdest-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.0);
    transition: color .25s;
    margin-top: 2px;
}

.tdest-card:hover .tdest-card-cta {
    color: rgba(255,255,255,.85);
}

.tdest-card-cta svg {
    transform: translateX(-4px);
    transition: transform .25s;
}

.tdest-card:hover .tdest-card-cta svg {
    transform: translateX(0);
}

/* Fazla kayıt butonu */
.tdest-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.tdest-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    background: transparent;
    color: #0b1426;
    border: 2px solid #d1dae8;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s;
}

.tdest-more-btn:hover {
    background: #0b1426;
    color: #fff;
    border-color: #0b1426;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,20,38,.18);
}

.tdest-more-btn svg { transition: transform .2s; }
.tdest-more-btn:hover svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1100px) {
    .tdest-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 768px) {
    .tdest-head { flex-direction: column; align-items: flex-start; }
    .tdest-all-btn { align-self: flex-start; }
}

@media (max-width: 700px) {
    .tdest-card {
        flex-basis: 100%;
        aspect-ratio: 16 / 10;
    }
    .tdest-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ──────────────── EN POPULER DIDIM TURLARI ──────────────── */
.tpd-section { background: #f8fafc; }

.tpd-all-btn {
    display: inline-flex;
    align-items: center;
.ttag-track,
.tdest-track,
.tpd-track,
.ths-grid,
.t-why-grid,
.tours-page-grid {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 12px;
    padding-right: 12px;
}
/* If the viewport has a specific scroll-padding, preserve it but add padding top/bottom */
@media (min-width: 769px) {
    .ttag-viewport,
    .tdest-viewport,
    .tpd-viewport {
        margin-left: -12px;
        margin-right: -12px;
        margin-top: -20px;
        margin-bottom: -40px;
        width: calc(100% + 24px) !important;
    }
}

@media (max-width: 900px) {
    /* Destinasyonlar (Tours benzeri) Mobil Görünümü */
    .tdest-section {
        overflow:hidden !important;
    }
    .tdest-section .container {
        max-width:100% !important;
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .tdest-head {
        padding:0 24px !important;
        margin-bottom:32px !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:16px !important;
    }
    .tdest-head .fsec-sub {
        max-width:32ch;
    }
    .tdest-all-btn {
        align-self:flex-start !important;
    }
    .tdest-slider-wrap {
        display:block !important;
        width:100% !important;
    }
    .tdest-arrow {
        display:none !important;
    }
    .tdest-viewport {
        width:100% !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        scroll-snap-type:x mandatory !important;
        scroll-padding-left:24px !important;
        overscroll-behavior-x:contain !important;
        overscroll-behavior-y:auto !important;
        scrollbar-width:none !important;
        -ms-overflow-style:none !important;
        -webkit-overflow-scrolling:touch !important;
        touch-action:pan-x pan-y pinch-zoom !important;
    }
    .tdest-viewport::-webkit-scrollbar {
        display:none !important;
    }
    .tdest-track {
        display:flex !important;
        flex-wrap:nowrap !important;
        gap:16px !important;
        min-width:100% !important;
        width:max-content !important;
        padding:0 24px 30px !important;
        margin:0 !important;
        transform:none !important;
        transition:none !important;
        will-change:auto !important;
    }
    .tdest-card {
        flex:0 0 260px !important;
        width:260px !important;
        min-width:260px !important;
        height:340px !important;
        aspect-ratio:auto !important;
        border-radius:24px !important;
        scroll-snap-align:start !important;
        touch-action:pan-x pan-y pinch-zoom !important;
        -webkit-user-drag:none;
    }
    .tdest-card * {
        touch-action:pan-x pan-y pinch-zoom !important;
    }
    .tdest-card-body {
        padding:20px !important;
        gap:6px !important;
        transform:none !important;
    }
    .tdest-card-name {
        font-size:1.15rem !important;
        line-height:1.12 !important;
    }
    .tdest-card-count {
        order:2;
        padding:0 !important;
        margin:2px 0 0 !important;
        background:transparent !important;
        border:0 !important;
        border-radius:0 !important;
        color:rgba(255,255,255,.95) !important;
        font-size:.9rem !important;
        letter-spacing:.08em !important;
    }
    .tdest-card-cta {
        display:none !important;
    }
    .tdest-more-wrap {
        padding:0 24px !important;
        margin-top:0 !important;
    }
}



/* VEHICLE MODAL STYLES */
.v-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(11, 20, 38, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.v-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.v-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.v-modal-overlay.is-active .v-modal-content {
    transform: translateY(0) scale(1);
}
.v-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #1a2d50;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background 0.2s, transform 0.2s;
}
.v-modal-close:hover {
    background: #fff;
    transform: scale(1.05);
}
.v-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow-y: auto;
}
.v-modal-img-col {
    position: relative;
    background: #f1f5f9;
    min-height: 300px;
}
.v-modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v-modal-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.v-modal-info-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.v-modal-cat-wrap {
    margin-bottom: 12px;
}
.v-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1426;
    margin: 0 0 24px;
    line-height: 1.2;
}
.v-modal-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}
.v-modal-spec {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v-modal-spec svg {
    color: #0ea5e9;
    flex-shrink: 0;
}
.v-modal-spec > div {
    display: flex;
    flex-direction: column;
}
.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
}
.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}
.v-modal-notes {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}
.v-modal-notes p {
    margin: 0;
}
.v-modal-services h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1426;
    margin: 0 0 16px;
}
.v-modal-srv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.v-modal-srv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}
.v-modal-srv-list li svg {
    color: #10b981;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    .v-modal-grid {
        grid-template-columns: 1fr;
    }
    .v-modal-img-col {
        min-height: 240px;
    }
    .v-modal-info-col {
        padding: 24px;
    }
    .v-modal-title {
        font-size: 1.6rem;
    }
    .v-modal-specs {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    .v-modal-srv-list {
        grid-template-columns: 1fr;
    }
}

/* Hero Search Trigger Button */
.page-transfer .trh-search-trigger-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-transfer .trh-search-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e85d04;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.25);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.page-transfer .trh-search-trigger-btn:hover {
    background: #d05303;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.35);
}
.page-transfer .trh-search-trigger-btn svg {
    flex-shrink: 0;
}

/* Center hero content when there is no search form on desktop */
.page-transfer .trh-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page-transfer .trh-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page-transfer .trh-breadcrumb {
    justify-content: center;
}


/* Modal overrides for search form */
#transferSearchModal .trh-search-wrap {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

#transferSearchModal .v-modal-content {
    background: #fff;
    max-width: 1100px;
}

/* ========================================================= */
/* TRANSFER SEARCH MODAL OVERRIDES (ALWAYS MOBILE LAYOUT)   */
/* ========================================================= */

#transferSearchModal .trh-mobile-modal-content {
    max-width: 440px !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    position: relative;
    width: 90%;
    margin: 40px auto;
}

#transferSearchModal .v-modal-close {
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
}

#transferSearchModal .trh-search-wrap {
    margin-top: 0 !important;
    position: relative !important;
    z-index: auto !important;
}

#transferSearchModal .trh-search-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 14px !important;
    gap: 0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    overflow: visible !important;
}

#transferSearchModal .trh-field {
    display: flex !important;
    flex: 1 1 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
}

#transferSearchModal .trh-divider {
    width: 100% !important;
    height: 1px !important;
    margin: 4px 0 !important;
}

#transferSearchModal .trh-loc-results {
    top: calc(100% + 8px) !important;
}

#transferSearchModal .trh-field-wide {
    flex: 1 1 100% !important;
}

#transferSearchModal .trh-field-datetime {
    flex: 1 1 100% !important;
}

#transferSearchModal .trh-field-guests {
    flex: 1 1 100% !important;
}

#transferSearchModal .trh-action {
    display: block !important;
    margin-top: 16px !important;
}

#transferSearchModal .trh-btn-search {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 14px !important;
    padding: 16px !important;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25) !important;
}

/* Ensure trip switch is styled properly in the modal */
#transferSearchModal .trh-trip-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
