.airport-transfer-page {
    --airport-ink: #0b0d0f;
    --airport-ink-soft: #171b1d;
    --airport-panel: #202527;
    --airport-gold: #c79b55;
    --airport-gold-light: #e5c78f;
    --airport-cream: #f5f1e8;
    --airport-white: #ffffff;
    --airport-muted: #73777b;
    --airport-line: rgba(17, 19, 21, .12);
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
}

.airport-transfer-page .site-header,
.airport-transfer-page .site-header.is-scrolled {
    background: rgba(255, 255, 255, .97) !important;
    color: #151719 !important;
    border-bottom: 1px solid rgba(14, 16, 18, .10) !important;
    box-shadow: 0 8px 30px rgba(16, 18, 20, .06) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.airport-transfer-page .site-header .main-nav a {
    color: rgba(17, 19, 21, .72) !important;
    font-size: 16px !important;
}

.airport-transfer-page .site-header .main-nav a:hover,
.airport-transfer-page .site-header .main-nav a[aria-current="page"] {
    color: #0b0d0f !important;
}

.airport-transfer-page .site-header .main-nav a[aria-current="page"]::after {
    width: 100%;
}

.airport-transfer-page .site-header .header-phone {
    color: rgba(17, 19, 21, .62) !important;
}

.airport-transfer-page .site-header .header-book-btn {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #0b0d0f !important;
    border-color: #0b0d0f !important;
}

.airport-transfer-page .site-header .mobile-menu-button {
    border-color: rgba(17, 19, 21, .18) !important;
}

.airport-transfer-page .site-header .mobile-menu-button span {
    background: #0b0d0f !important;
}

.airport-transfer-main {
    padding-top: 76px;
}

.airport-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 77% 35%, rgba(199, 155, 85, .18), transparent 29%),
        radial-gradient(circle at 14% 78%, rgba(229, 199, 143, .08), transparent 25%),
        linear-gradient(135deg, #111517 0%, #1d2225 48%, #0b0d0f 100%);
}

.airport-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.airport-hero-glow {
    position: absolute;
    z-index: -1;
    top: 10%;
    right: -130px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(199, 155, 85, .16);
    border-radius: 50%;
    box-shadow: inset 0 0 90px rgba(199, 155, 85, .08);
}

.airport-hero-inner {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
    align-items: center;
    gap: clamp(54px, 7vw, 110px);
    padding-top: 62px;
    padding-bottom: 62px;
}

.airport-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--airport-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.airport-kicker > span {
    width: 34px;
    height: 1px;
    background: var(--airport-gold);
}

.airport-kicker.dark {
    color: #a9772f;
}

.airport-hero-copy h1 {
    max-width: 800px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(48px, 5.1vw, 82px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -4.6px;
}

.airport-hero-copy h1 em {
    display: block;
    margin-top: 15px;
    color: var(--airport-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: .61em;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.airport-hero-description {
    max-width: 650px;
    margin-top: 27px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.8;
}

.airport-hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.airport-primary-btn {
    min-height: 52px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    border: 1px solid var(--airport-gold);
    border-radius: 999px;
    background: var(--airport-gold);
    color: var(--airport-ink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease;
}

.airport-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(199, 155, 85, .24);
}

.airport-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.airport-text-btn span {
    color: var(--airport-gold-light);
}

.airport-hero-points {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 610px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.airport-hero-points div {
    padding: 18px 18px 0 0;
    display: grid;
    gap: 4px;
}

.airport-hero-points strong {
    color: #fff;
    font-size: 17px;
}

.airport-hero-points span {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.airport-price-finder {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(18, 22, 24, .83);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.airport-price-finder::before {
    content: "";
    position: absolute;
    inset: 8px;
    pointer-events: none;
    border: 1px solid rgba(199, 155, 85, .11);
    border-radius: 12px;
}

.airport-card-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--airport-gold-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.airport-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc878;
    box-shadow: 0 0 0 5px rgba(63, 200, 120, .10);
}

.airport-price-finder h2 {
    position: relative;
    z-index: 1;
    margin: 16px 0 8px;
    font-family: Manrope, sans-serif;
    font-size: 29px;
    letter-spacing: -1px;
}

.airport-price-finder > p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1.6;
}

.airport-direction-switch {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    padding: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 9px;
    background: rgba(255, 255, 255, .035);
}

.airport-direction-switch button {
    min-height: 40px;
    padding: 0 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.airport-direction-switch button.is-active {
    background: #fff;
    color: #111315;
}

.airport-postcode-field {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 22px;
}

.airport-postcode-field > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.airport-postcode-field > div {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.airport-postcode-field input {
    min-width: 0;
    height: 40px;
    padding: 0 10px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.airport-postcode-field input::placeholder {
    color: rgba(255, 255, 255, .26);
    text-transform: none;
}

.airport-postcode-field button {
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    background: var(--airport-gold);
    color: #101214;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

.airport-price-result {
    position: relative;
    z-index: 1;
    min-height: 114px;
    margin-top: 16px;
    padding: 19px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(199, 155, 85, .20);
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(199, 155, 85, .10), rgba(255, 255, 255, .025));
}

.airport-result-label {
    color: rgba(255, 255, 255, .46);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.airport-price-result strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.airport-price-result.is-found strong {
    color: var(--airport-gold-light);
    font-size: 34px;
}

.airport-price-result.is-not-found strong {
    font-size: 20px;
}

.airport-price-result small {
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    line-height: 1.45;
}

/* ---------------- PRICE LIST ---------------- */
.airport-pricing-section {
    padding: 100px 0 110px;
    background: var(--airport-cream);
}

.airport-section-heading {
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.airport-section-heading h2 {
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(43px, 4vw, 64px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -2px;
}

.airport-section-heading > p {
    margin: 0;
    color: #6f7378;
    font-size: 12px;
    line-height: 1.75;
}

.airport-price-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(17, 19, 21, .12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(18, 20, 22, .07);
}

.airport-price-table-head,
.airport-price-row {
    display: grid;
    grid-template-columns: 130px minmax(210px, 1fr) 210px 110px;
    align-items: center;
}

.airport-price-table-head {
    min-height: 45px;
    padding: 0 24px;
    background: #111416;
    color: rgba(255, 255, 255, .48);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.airport-price-row {
    min-height: 74px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(17, 19, 21, .09);
    transition: background-color .2s ease, transform .2s ease;
}

.airport-price-row:last-child {
    border-bottom: 0;
}

.airport-price-row:hover,
.airport-price-row.is-highlighted {
    background: #fbf6eb;
}

.airport-postcode {
    font-family: 'DM Mono', monospace;
    font-size: 19px;
    letter-spacing: -.5px;
}

.airport-area {
    color: #5e6266;
    font-size: 12px;
}

.airport-fixed-price {
    color: #111315;
    font-size: 19px;
    font-weight: 800;
}

.airport-price-row > a {
    min-height: 37px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 999px;
    background: #111416;
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
}

.airport-price-row > a span {
    color: var(--airport-gold-light);
}

.airport-pricing-note {
    max-width: 820px;
    margin: 18px 0 0;
    color: #81858a;
    font-size: 9px;
    line-height: 1.6;
}

.airport-pricing-note code {
    color: #8a6227;
    font-weight: 700;
}
.airport-transfer-page .site-footer,
.airport-transfer-page .site-footer .reveal,
.airport-transfer-page .site-footer .footer-brand-column,
.airport-transfer-page .site-footer .footer-column,
.airport-transfer-page .site-footer .footer-newsletter,
.airport-transfer-page .site-footer .footer-bottom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.airport-transfer-page .site-footer {
    position: relative;
    z-index: 5;
}


@media (max-width: 1100px) {
    .airport-hero-inner {
        grid-template-columns: 1fr 390px;
        gap: 45px;
    }

    .airport-price-table-head,
    .airport-price-row {
        grid-template-columns: 100px minmax(180px, 1fr) 170px 90px;
    }
}

@media (max-width: 900px) {
    .airport-transfer-main {
        padding-top: 68px;
    }

    .airport-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .airport-price-finder {
        width: min(100%, 620px);
    }

    .airport-section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .airport-price-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .airport-price-table-head,
    .airport-price-table,
    .airport-price-row {
        min-width: 760px;
    }
}

@media (max-width: 600px) {
    .airport-hero {
        min-height: auto;
    }

    .airport-hero-inner {
        min-height: auto;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .airport-hero-copy h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2.6px;
    }

    .airport-hero-description {
        font-size: 13px;
    }

    .airport-hero-points {
        grid-template-columns: 1fr;
    }

    .airport-hero-points div {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .airport-price-finder {
        padding: 22px 18px;
        border-radius: 13px;
    }

    .airport-direction-switch {
        grid-template-columns: 1fr;
    }

    .airport-postcode-field > div {
        grid-template-columns: 1fr;
        padding: 7px;
    }

    .airport-postcode-field button {
        width: 100%;
    }

    .airport-pricing-section {
        padding: 72px 0;
    }

    .airport-section-heading h2 {
        font-size: 43px;
        letter-spacing: -1.4px;
    }
}

.airport-transfer-page .airport-hero {
    min-height: 610px;
}

.airport-transfer-page .airport-hero-inner {
    min-height: 610px;
    display: block;
    padding-top: 56px;
    padding-bottom: 54px;
}

.airport-transfer-page .airport-hero-copy {
    width: 100%;
}

.airport-transfer-page .airport-hero-copy h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(42px, 4.15vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.7px;
    white-space: nowrap;
}

.airport-transfer-page .airport-hero-lower {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 465px);
    align-items: start;
    gap: clamp(46px, 7vw, 105px);
}

.airport-transfer-page .airport-hero-support {
    min-width: 0;
}

.airport-transfer-page .airport-hero-description {
    max-width: 710px;
    margin-top: 0;
}

.airport-transfer-page .airport-hero-actions {
    margin-top: 24px;
}

/* Remove the old Fixed / LHR / 24/7 stats strip entirely. */
.airport-transfer-page .airport-hero-points {
    display: none !important;
}

.airport-transfer-page .airport-price-finder {
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, .24);
}

.airport-transfer-page .airport-price-finder::before {
    inset: 7px;
    border-radius: 10px;
}

.airport-transfer-page .airport-price-finder h2 {
    margin: 13px 0 6px;
    font-size: 25px;
}

.airport-transfer-page .airport-price-finder > p {
    font-size: 11px;
}

.airport-transfer-page .airport-direction-switch {
    margin-top: 18px;
}

.airport-transfer-page .airport-direction-switch button {
    min-height: 36px;
}

.airport-transfer-page .airport-postcode-field {
    margin-top: 17px;
}

.airport-transfer-page .airport-postcode-field > div {
    min-height: 47px;
}

.airport-transfer-page .airport-postcode-field input,
.airport-transfer-page .airport-postcode-field button {
    height: 36px;
}

.airport-transfer-page .airport-price-result {
    min-height: 88px;
    margin-top: 13px;
    padding: 15px 17px;
}

.airport-transfer-page .airport-price-result strong {
    font-size: 21px;
}

.airport-transfer-page .airport-price-result.is-found strong {
    font-size: 29px;
}

.airport-transfer-page .airport-pricing-section {
    padding: 82px 0 92px;
    background: #223f78;
}

.airport-transfer-page .airport-section-heading {
    margin-bottom: 34px;
}

.airport-transfer-page .airport-section-heading .airport-kicker.dark {
    color: #e3c37f;
}

.airport-transfer-page .airport-section-heading h2 {
    color: #fff;
}

.airport-transfer-page .airport-section-heading > p {
    color: rgba(255, 255, 255, .70);
}

.airport-transfer-page .airport-price-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 36px;
}

.airport-transfer-page .airport-price-row.airport-price-card {
    min-width: 0;
    min-height: 0;
    padding: 30px 34px 25px;
    display: block;
    border: 0;
    border-radius: 13px;
    background: #f2f4f8;
    box-shadow: none;
    transition: transform .22s ease, background-color .22s ease;
}

.airport-transfer-page .airport-price-row.airport-price-card:hover,
.airport-transfer-page .airport-price-row.airport-price-card.is-highlighted {
    background: #ffffff;
    transform: translateY(-3px);
}

.airport-transfer-page .airport-price-card-heading {
    min-height: 76px;
    padding-bottom: 15px;
}

.airport-transfer-page .airport-price-card-heading h3 {
    margin: 0;
    color: #252d33;
    font-family: 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.4px;
}

.airport-transfer-page .airport-price-card-heading p {
    margin: 6px 0 0;
    color: #4f5357;
    font-size: 13px;
    line-height: 1.45;
}

.airport-transfer-page .airport-card-fare-row {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(17, 31, 49, .10);
}

.airport-transfer-page .airport-card-fare-row span {
    min-width: 0;
    color: #24427e;
    font-size: 14px;
    line-height: 1.35;
}

.airport-transfer-page .airport-card-fare-row strong {
    flex: 0 0 auto;
    color: #3e4145;
    font-size: 15px;
    font-weight: 500;
}

/* The old table header is not used in the card version. */
.airport-transfer-page .airport-price-table-head,
.airport-transfer-page .airport-price-table-wrap {
    display: none !important;
}

/* Footer should remain crisp. */
.airport-transfer-page .site-footer,
.airport-transfer-page .site-footer * {
    filter: none !important;
    -webkit-filter: none !important;
}

@media (max-width: 1280px) {
    .airport-transfer-page .airport-hero-copy h1 {
        white-space: normal;
        max-width: 1050px;
    }

    .airport-transfer-page .airport-price-card-grid {
        gap: 24px;
    }
}

@media (max-width: 1000px) {
    .airport-transfer-page .airport-hero-lower {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .airport-transfer-page .airport-price-finder {
        width: min(100%, 620px);
    }

    .airport-transfer-page .airport-price-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .airport-transfer-page .airport-hero-inner {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .airport-transfer-page .airport-hero-copy h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -2px;
    }

    .airport-transfer-page .airport-hero-lower {
        margin-top: 25px;
    }

    .airport-transfer-page .airport-price-finder {
        padding: 20px 17px;
    }

    .airport-transfer-page .airport-direction-switch {
        grid-template-columns: 1fr 1fr;
    }

    .airport-transfer-page .airport-postcode-field > div {
        grid-template-columns: 1fr auto;
    }

    .airport-transfer-page .airport-postcode-field button {
        width: auto;
    }

    .airport-transfer-page .airport-price-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .airport-transfer-page .airport-price-row.airport-price-card {
        padding: 25px 24px 20px;
    }

    .airport-transfer-page .airport-price-card-heading {
        min-height: 0;
        padding-bottom: 14px;
    }
}
.airport-transfer-page .airport-hero {
    min-height: auto !important;
}

.airport-transfer-page .airport-hero-inner {
    min-height: 0 !important;
    padding-top: 42px !important;
    padding-bottom: 46px !important;
}

.airport-transfer-page .airport-hero-copy h1 {
    width: 100% !important;
    max-width: 1220px !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    font-size: clamp(42px, 4vw, 68px) !important;
    line-height: .98 !important;
    letter-spacing: -3.7px !important;
    text-wrap: balance;
}

.airport-transfer-page .airport-hero-copy h1 > span {
    display: block;
}

.airport-transfer-page .airport-hero-copy h1 > span:last-child {
    margin-top: 6px;
    color: var(--airport-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: .68em;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.airport-transfer-page .airport-hero-lower {
    margin-top: 27px !important;
    grid-template-columns: minmax(0, 1fr) minmax(365px, 455px) !important;
    gap: clamp(38px, 6vw, 86px) !important;
}

.airport-transfer-page .airport-hero-description {
    max-width: 720px !important;
    font-size: 14px !important;
    line-height: 1.72 !important;
}

.airport-transfer-page .airport-hero-actions {
    margin-top: 20px !important;
}

.airport-transfer-page .airport-primary-btn {
    min-height: 48px !important;
    padding-inline: 20px !important;
}

.airport-transfer-page .airport-price-finder {
    padding: 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .22) !important;
}

.airport-transfer-page .airport-price-finder::before {
    inset: 6px !important;
}

.airport-transfer-page .airport-price-finder h2 {
    margin: 11px 0 4px !important;
    font-size: 23px !important;
}

.airport-transfer-page .airport-price-finder > p {
    font-size: 10.5px !important;
}

.airport-transfer-page .airport-direction-switch {
    margin-top: 15px !important;
}

.airport-transfer-page .airport-direction-switch button {
    min-height: 34px !important;
}

.airport-transfer-page .airport-postcode-field {
    margin-top: 14px !important;
}

.airport-transfer-page .airport-postcode-field > div {
    min-height: 44px !important;
}

.airport-transfer-page .airport-postcode-field input,
.airport-transfer-page .airport-postcode-field button {
    height: 34px !important;
}

.airport-transfer-page .airport-price-result {
    min-height: 78px !important;
    margin-top: 11px !important;
    padding: 13px 15px !important;
}

.airport-transfer-page .airport-price-result strong {
    font-size: 19px !important;
}

.airport-transfer-page .airport-price-result.is-found strong {
    font-size: 27px !important;
}

/* PRICE AREA: website-style white background with black cards. */
.airport-transfer-page .airport-pricing-section {
    padding: 74px 0 84px !important;
    background: #ffffff !important;
}

.airport-transfer-page .airport-section-heading {
    margin-bottom: 30px !important;
}

.airport-transfer-page .airport-section-heading .airport-kicker.dark {
    color: #a9772f !important;
}

.airport-transfer-page .airport-section-heading h2 {
    color: #111315 !important;
}

.airport-transfer-page .airport-section-heading > p {
    color: #6f7378 !important;
}

.airport-transfer-page .airport-price-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.airport-transfer-page .airport-price-row.airport-price-card {
    padding: 25px 27px 22px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at 90% 5%, rgba(199, 155, 85, .10), transparent 30%),
        #111416 !important;
    color: #fff !important;
    box-shadow: 0 18px 42px rgba(12, 14, 16, .10) !important;
}

.airport-transfer-page .airport-price-row.airport-price-card:hover,
.airport-transfer-page .airport-price-row.airport-price-card.is-highlighted {
    background:
        radial-gradient(circle at 90% 5%, rgba(199, 155, 85, .16), transparent 32%),
        #171b1d !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 24px 52px rgba(12, 14, 16, .16) !important;
}

.airport-transfer-page .airport-price-card-heading {
    min-height: 72px !important;
    padding-bottom: 13px !important;
}

.airport-transfer-page .airport-price-card-heading h3 {
    color: #ffffff !important;
    font-size: 22px !important;
}

.airport-transfer-page .airport-price-card-heading p {
    color: rgba(255, 255, 255, .56) !important;
    font-size: 12px !important;
}

.airport-transfer-page .airport-card-fare-row {
    min-height: 47px !important;
    border-top: 1px solid rgba(255, 255, 255, .11) !important;
}

.airport-transfer-page .airport-card-fare-row span {
    color: rgba(255, 255, 255, .76) !important;
    font-size: 13px !important;
}

.airport-transfer-page .airport-card-fare-row strong {
    color: var(--airport-gold-light) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Make the footer transition cleanly from white pricing section. */
.airport-transfer-page .site-footer {
    margin-top: 0 !important;
}

@media (max-width: 1200px) {
    .airport-transfer-page .airport-hero-copy h1 {
        max-width: 100% !important;
        font-size: clamp(40px, 5vw, 60px) !important;
    }
}

@media (max-width: 980px) {
    .airport-transfer-page .airport-hero-lower {
        grid-template-columns: 1fr !important;
    }

    .airport-transfer-page .airport-price-finder {
        width: min(100%, 560px) !important;
    }

    .airport-transfer-page .airport-price-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .airport-transfer-page .airport-hero-inner {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
    }

    .airport-transfer-page .airport-hero-copy h1 {
        font-size: clamp(35px, 11vw, 48px) !important;
        letter-spacing: -2px !important;
    }

    .airport-transfer-page .airport-hero-copy h1 > span:last-child {
        font-size: .72em !important;
    }

    .airport-transfer-page .airport-price-card-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .airport-transfer-page .airport-price-row.airport-price-card {
        padding: 22px 22px 18px !important;
    }
}

/* =========================================================
   HERO FINAL LAYOUT
   Order: kicker -> one-line title -> wrapped gold subtitle
          -> postcode checker -> description/button
========================================================= */

.airport-transfer-page .airport-hero {
    min-height: auto !important;
}

.airport-transfer-page .airport-hero-inner {
    min-height: 0 !important;
    display: block !important;
    padding-top: 46px !important;
    padding-bottom: 52px !important;
}

.airport-transfer-page .airport-hero-copy {
    width: 100% !important;
    max-width: 1180px !important;
}

/* Main white heading: one line on normal desktop widths. */
.airport-transfer-page .airport-hero-copy h1 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: visible !important;
    font-family: Manrope, sans-serif !important;
    line-height: 1 !important;
    letter-spacing: -3.4px !important;
}

.airport-transfer-page .airport-title-main {
    display: block !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    font-family: Manrope, sans-serif !important;
    font-size: clamp(46px, 4.8vw, 74px) !important;
    font-weight: 600 !important;
    line-height: .98 !important;
}

/* Gold subtitle is allowed to wrap naturally. */
.airport-transfer-page .airport-title-sub {
    display: block !important;
    max-width: 980px !important;
    margin-top: 10px !important;
    white-space: normal !important;
    color: var(--airport-gold-light) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(31px, 3vw, 48px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
    letter-spacing: -1.4px !important;
}

/* The checker now sits directly under the heading/subheading. */
.airport-transfer-page .airport-price-finder {
    width: min(100%, 610px) !important;
    margin-top: 30px !important;
    padding: 21px !important;
    border-radius: 14px !important;
    background: rgba(18, 22, 24, .88) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .22) !important;
}

.airport-transfer-page .airport-price-finder::before {
    inset: 6px !important;
    border-radius: 10px !important;
}

.airport-transfer-page .airport-price-finder h2 {
    margin: 11px 0 4px !important;
    font-size: 23px !important;
}

.airport-transfer-page .airport-price-finder > p {
    font-size: 10.5px !important;
}

.airport-transfer-page .airport-direction-switch {
    margin-top: 15px !important;
}

.airport-transfer-page .airport-direction-switch button {
    min-height: 34px !important;
}

.airport-transfer-page .airport-postcode-field {
    margin-top: 14px !important;
}

.airport-transfer-page .airport-postcode-field > div {
    min-height: 44px !important;
}

.airport-transfer-page .airport-postcode-field input,
.airport-transfer-page .airport-postcode-field button {
    height: 34px !important;
}

.airport-transfer-page .airport-price-result {
    min-height: 78px !important;
    margin-top: 11px !important;
    padding: 13px 15px !important;
}

.airport-transfer-page .airport-price-result strong {
    font-size: 19px !important;
}

.airport-transfer-page .airport-price-result.is-found strong {
    font-size: 27px !important;
}

/* Description/button now come after the checker. */
.airport-transfer-page .airport-hero-support {
    width: 100% !important;
    max-width: 760px !important;
    margin-top: 25px !important;
}

.airport-transfer-page .airport-hero-description {
    max-width: 760px !important;
    margin-top: 0 !important;
    font-size: 14px !important;
    line-height: 1.72 !important;
}

.airport-transfer-page .airport-hero-actions {
    margin-top: 20px !important;
}

/* Old side-by-side wrapper is no longer used. */
.airport-transfer-page .airport-hero-lower {
    display: block !important;
    margin: 0 !important;
}

/* Desktop safety: keep title on one line without clipping. */
@media (max-width: 1180px) {
    .airport-transfer-page .airport-title-main {
        font-size: clamp(42px, 5.2vw, 62px) !important;
    }

    .airport-transfer-page .airport-title-sub {
        font-size: clamp(29px, 3.5vw, 42px) !important;
    }
}

/* On narrower screens, allow the main title to wrap rather than overflow. */
@media (max-width: 820px) {
    .airport-transfer-page .airport-title-main {
        white-space: normal !important;
        font-size: clamp(38px, 8vw, 54px) !important;
        letter-spacing: -2.4px !important;
    }

    .airport-transfer-page .airport-title-sub {
        font-size: clamp(28px, 6vw, 40px) !important;
    }

    .airport-transfer-page .airport-price-finder {
        width: min(100%, 590px) !important;
    }
}

@media (max-width: 620px) {
    .airport-transfer-page .airport-hero-inner {
        padding-top: 34px !important;
        padding-bottom: 40px !important;
    }

    .airport-transfer-page .airport-title-main {
        font-size: clamp(34px, 10.5vw, 46px) !important;
        letter-spacing: -1.8px !important;
    }

    .airport-transfer-page .airport-title-sub {
        margin-top: 8px !important;
        font-size: clamp(25px, 7.5vw, 34px) !important;
    }

    .airport-transfer-page .airport-price-finder {
        margin-top: 24px !important;
        padding: 18px 16px !important;
    }

    .airport-transfer-page .airport-direction-switch {
        grid-template-columns: 1fr 1fr !important;
    }

    .airport-transfer-page .airport-postcode-field > div {
        grid-template-columns: 1fr auto !important;
    }

    .airport-transfer-page .airport-postcode-field button {
        width: auto !important;
    }
}

/* =========================================================
   OUR FLEET CTA — BEFORE FOOTER
========================================================= */
.airport-transfer-page .airport-fleet-cta {
    padding: 82px 0 88px;
    background: #f4f1e9;
    border-top: 1px solid rgba(17, 19, 21, .08);
}

.airport-transfer-page .airport-fleet-cta-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.airport-transfer-page .airport-fleet-cta .airport-kicker {
    justify-content: center;
    margin-bottom: 18px;
}

.airport-transfer-page .airport-fleet-cta h2 {
    max-width: 780px;
    margin: 0 auto;
    color: #111315;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -2px;
}

.airport-transfer-page .airport-fleet-cta-inner > p:not(.airport-kicker) {
    max-width: 650px;
    margin: 22px auto 0;
    color: #6d7175;
    font-size: 13px;
    line-height: 1.75;
}

.airport-transfer-page .airport-fleet-main-btn {
    width: fit-content;
    min-width: 190px;
    min-height: 50px;
    margin: 28px auto 0;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    border-radius: 999px;
    background: #111416;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 15px 34px rgba(17, 20, 22, .12);
    transition: transform .22s ease, box-shadow .22s ease;
}

.airport-transfer-page .airport-fleet-main-btn span:last-child {
    color: var(--airport-gold-light);
}

.airport-transfer-page .airport-fleet-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(17, 20, 22, .18);
}

@media (max-width: 700px) {
    .airport-transfer-page .airport-fleet-cta {
        padding: 64px 0 70px;
    }

    .airport-transfer-page .airport-fleet-cta h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }
}

/* =========================================================
   CENTER "VIEW OUR FLEET" BUTTON — GENTLE FLOATING MOTION
========================================================= */
.airport-transfer-page .airport-fleet-main-btn {
    animation: airportFleetFloat 2.8s ease-in-out infinite;
    will-change: transform;
}

@keyframes airportFleetFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Keep hover natural without stopping the floating feel. */
.airport-transfer-page .airport-fleet-main-btn:hover {
    animation-play-state: paused;
    transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
    .airport-transfer-page .airport-fleet-main-btn {
        animation: none !important;
        transform: none !important;
    }
}

/* =========================================================
   AIRPORT HERO — REFERENCE 2 INSPIRED LAYOUT
   Full background image + left editorial copy + right premium checker
========================================================= */

.airport-transfer-page .airport-hero-reference {
    position: relative;
    min-height: 620px !important;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 9, 9, .72) 0%, rgba(7, 9, 9, .58) 48%, rgba(7, 9, 9, .68) 100%),
        url('../images/home-page-banner.png') center 48% / cover no-repeat !important;
}

.airport-transfer-page .airport-reference-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 85%, rgba(199, 155, 85, .16), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(199, 155, 85, .08), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .30));
}

.airport-transfer-page .airport-reference-line {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(199, 155, 85, .20);
    border-radius: 50%;
}

.airport-transfer-page .airport-reference-line-one {
    width: 500px;
    height: 500px;
    left: -320px;
    bottom: -330px;
}

.airport-transfer-page .airport-reference-line-two {
    width: 620px;
    height: 620px;
    right: -390px;
    top: 130px;
}

.airport-transfer-page .airport-reference-grid {
    position: relative;
    z-index: 2;
    min-height: 620px;
    padding-top: 54px;
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .78fr);
    align-items: center;
    gap: clamp(52px, 7vw, 110px);
}

.airport-transfer-page .airport-reference-copy {
    min-width: 0;
    max-width: 820px;
}

.airport-transfer-page .airport-reference-kicker {
    margin-bottom: 22px !important;
    color: var(--airport-gold-light) !important;
}

.airport-transfer-page .airport-reference-title {
    margin: 0;
    color: #fff;
    font-family: 'Libre Caslon Display', 'Playfair Display', serif !important;
    font-size: clamp(60px, 6vw, 94px) !important;
    font-weight: 400 !important;
    line-height: .89 !important;
    letter-spacing: -4px !important;
}

.airport-transfer-page .airport-reference-subtitle {
    margin: 24px 0 0;
    color: var(--airport-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.2vw, 51px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.airport-transfer-page .airport-reference-subtitle em {
    color: rgba(255, 255, 255, .78);
    font-size: .72em;
}

.airport-transfer-page .airport-reference-description {
    max-width: 690px;
    margin: 26px 0 0;
    color:cornsilk;
    font-size: 16px;
    line-height: 1.75;
    font-family: math;
}

.airport-transfer-page .airport-reference-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
}

.airport-transfer-page .airport-reference-primary,
.airport-transfer-page .airport-reference-secondary {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: transform .22s ease, background-color .22s ease;
}

.airport-transfer-page .airport-reference-primary {
    background: linear-gradient(90deg, #c89b51, #e0c27d);
    color: #111315;
    box-shadow: 0 15px 36px rgba(190, 145, 70, .20);
}

.airport-transfer-page .airport-reference-secondary {
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .13);
}

.airport-transfer-page .airport-reference-primary:hover,
.airport-transfer-page .airport-reference-secondary:hover {
    transform: translateY(-3px);
}

/* RIGHT PANEL — visually closer to reference #2 */
.airport-transfer-page .airport-reference-panel {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 17px !important;
    background: rgba(8, 10, 10, .91) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .36) !important;
    backdrop-filter: blur(13px) !important;
}

.airport-transfer-page .airport-reference-panel::before {
    display: none !important;
}

.airport-transfer-page .airport-reference-panel-head {
    min-height: 58px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .012);
}

.airport-transfer-page .airport-reference-panel-head span {
    color: rgba(255, 255, 255, .62);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.airport-transfer-page .airport-reference-panel-head strong {
    color: var(--airport-gold-light);
    font-size: 9px;
    font-weight: 700;
}

.airport-transfer-page .airport-reference-panel-body {
    padding: 23px 24px 20px;
}

.airport-transfer-page .airport-reference-panel .airport-card-topline {
    color: var(--airport-gold-light);
}

.airport-transfer-page .airport-reference-panel h2 {
    margin: 14px 0 5px !important;
    font-size: 27px !important;
}

.airport-transfer-page .airport-reference-panel > p,
.airport-transfer-page .airport-reference-panel-body > p {
    color: rgba(255, 255, 255, .48) !important;
    font-size: 10.5px !important;
}

.airport-transfer-page .airport-reference-panel .airport-direction-switch {
    margin-top: 18px !important;
}

.airport-transfer-page .airport-reference-panel .airport-postcode-field {
    margin-top: 17px !important;
}

.airport-transfer-page .airport-reference-panel .airport-price-result {
    min-height: 88px !important;
}

.airport-transfer-page .airport-reference-panel-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(199, 155, 85, .24);
    background: rgba(199, 155, 85, .06);
}

.airport-transfer-page .airport-reference-panel-foot > div {
    min-height: 64px;
    padding: 14px 12px;
    display: grid;
    align-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.airport-transfer-page .airport-reference-panel-foot > div:last-child {
    border-right: 0;
}

.airport-transfer-page .airport-reference-panel-foot span {
    color: var(--airport-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
}

.airport-transfer-page .airport-reference-panel-foot strong {
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
}

/* Disable old hero-only styles that are no longer used. */
.airport-transfer-page .airport-hero-copy,
.airport-transfer-page .airport-hero-lower,
.airport-transfer-page .airport-hero-support,
.airport-transfer-page .airport-title-main,
.airport-transfer-page .airport-title-sub {
    all: unset;
}

@media (max-width: 1100px) {
    .airport-transfer-page .airport-reference-grid {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 40px;
    }

    .airport-transfer-page .airport-reference-title {
        font-size: clamp(56px, 6.5vw, 78px) !important;
    }
}

@media (max-width: 900px) {
    .airport-transfer-page .airport-hero-reference {
        min-height: auto !important;
    }

    .airport-transfer-page .airport-reference-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .airport-transfer-page .airport-reference-copy {
        max-width: 760px;
    }

    .airport-transfer-page .airport-reference-panel {
        width: min(100%, 640px) !important;
    }
}

@media (max-width: 620px) {
    .airport-transfer-page .airport-reference-grid {
        padding-top: 46px;
        padding-bottom: 48px;
    }

    .airport-transfer-page .airport-reference-title {
        font-size: clamp(48px, 15vw, 66px) !important;
        letter-spacing: -2.6px !important;
    }

    .airport-transfer-page .airport-reference-subtitle {
        margin-top: 18px;
        font-size: clamp(28px, 9vw, 38px);
    }

    .airport-transfer-page .airport-reference-description {
        font-size: 13px;
    }

    .airport-transfer-page .airport-reference-actions {
        align-items: stretch;
    }

    .airport-transfer-page .airport-reference-primary,
    .airport-transfer-page .airport-reference-secondary {
        width: 100%;
    }

    .airport-transfer-page .airport-reference-panel-head {
        padding-inline: 17px;
    }

    .airport-transfer-page .airport-reference-panel-body {
        padding: 19px 17px 17px;
    }

    .airport-transfer-page .airport-reference-panel-foot {
        grid-template-columns: 1fr;
    }

    .airport-transfer-page .airport-reference-panel-foot > div {
        min-height: 52px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .airport-transfer-page .airport-reference-panel-foot > div:last-child {
        border-bottom: 0;
    }
}



/* Checker panel after removing the bottom feature strip */
.airport-transfer-page .airport-reference-panel-body {
    padding-bottom: 24px !important;
}
/* =========================================================
   FINAL UPDATE — POSTCODE CARD HOVER + COMPACT FLEET CTA
   Scoped only to the Airport Transfer page.
========================================================= */

/* Same premium hover feel used previously:
   soft gold spotlight + lift + gold line along the bottom. */
.airport-transfer-page .airport-price-row.airport-price-card {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
    cursor: default;
    transition:
        transform .28s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease !important;
}

.airport-transfer-page .airport-price-row.airport-price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(300px circle at 82% 12%,
            rgba(199, 155, 85, .20),
            transparent 66%);
    transition: opacity .32s ease;
}

.airport-transfer-page .airport-price-row.airport-price-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--airport-gold), var(--airport-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.airport-transfer-page .airport-price-row.airport-price-card > * {
    position: relative;
    z-index: 1;
}

.airport-transfer-page .airport-price-row.airport-price-card:hover,
.airport-transfer-page .airport-price-row.airport-price-card.is-highlighted {
    border-color: rgba(199, 155, 85, .30) !important;
    background:
        radial-gradient(circle at 90% 5%, rgba(199, 155, 85, .15), transparent 32%),
        #171b1d !important;
    transform: translateY(-5px) !important;
    box-shadow:
        0 27px 58px rgba(12, 14, 16, .20),
        0 0 0 1px rgba(199, 155, 85, .04) !important;
}

.airport-transfer-page .airport-price-row.airport-price-card:hover::before,
.airport-transfer-page .airport-price-row.airport-price-card.is-highlighted::before {
    opacity: 1;
}

.airport-transfer-page .airport-price-row.airport-price-card:hover::after,
.airport-transfer-page .airport-price-row.airport-price-card.is-highlighted::after {
    transform: scaleX(1);
}

/* Compact Fleet CTA.
   "Our Fleet" kicker was removed from the Blade/PHP markup. */
.airport-transfer-page .airport-fleet-cta {
    padding: 52px 0 56px !important;
}

.airport-transfer-page .airport-fleet-cta-inner {
    max-width: 760px !important;
}

.airport-transfer-page .airport-fleet-cta h2 {
    max-width: 700px !important;
    font-size: clamp(36px, 3.6vw, 52px) !important;
    line-height: 1 !important;
    letter-spacing: -1.7px !important;
}

.airport-transfer-page .airport-fleet-cta-inner > p:not(.airport-kicker) {
    max-width: 590px !important;
    margin-top: 15px !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
}

.airport-transfer-page .airport-fleet-main-btn {
    min-width: 172px !important;
    min-height: 44px !important;
    margin-top: 20px !important;
    padding-inline: 18px !important;
    gap: 20px !important;
    font-size: 10px !important;
}

@media (max-width: 700px) {
    .airport-transfer-page .airport-fleet-cta {
        padding: 42px 0 46px !important;
    }

    .airport-transfer-page .airport-fleet-cta h2 {
        font-size: clamp(32px, 9vw, 44px) !important;
    }

    .airport-transfer-page .airport-fleet-cta-inner > p:not(.airport-kicker) {
        margin-top: 13px !important;
    }

    .airport-transfer-page .airport-fleet-main-btn {
        margin-top: 18px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .airport-transfer-page .airport-price-row.airport-price-card {
        transition: none !important;
    }

    .airport-transfer-page .airport-price-row.airport-price-card:hover {
        transform: none !important;
    }
}
/* =========================================================
   FINAL TWEAK — FLEET CTA SLIGHTLY SMALLER
   Only reduces the Fleet section size/spacing.
========================================================= */

.airport-transfer-page .airport-fleet-cta {
    padding: 38px 0 42px !important;
}

.airport-transfer-page .airport-fleet-cta-inner {
    max-width: 700px !important;
}

.airport-transfer-page .airport-fleet-cta h2 {
    max-width: 650px !important;
    font-size: clamp(32px, 3.2vw, 46px) !important;
    line-height: 1.02 !important;
}

.airport-transfer-page .airport-fleet-cta-inner > p:not(.airport-kicker) {
    max-width: 555px !important;
    margin-top: 12px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
}

.airport-transfer-page .airport-fleet-main-btn {
    min-width: 160px !important;
    min-height: 40px !important;
    margin-top: 16px !important;
    padding-inline: 16px !important;
    font-size: 9.5px !important;
}

@media (max-width: 700px) {
    .airport-transfer-page .airport-fleet-cta {
        padding: 34px 0 38px !important;
    }

    .airport-transfer-page .airport-fleet-cta h2 {
        font-size: clamp(30px, 8.5vw, 40px) !important;
    }

    .airport-transfer-page .airport-fleet-main-btn {
        min-height: 39px !important;
        margin-top: 15px !important;
    }
}
