:root {
    --airport-navy: #062b46;
    --airport-navy-deep: #031d31;
    --airport-green: #079768;
    --airport-green-bright: #10b981;
    --airport-gold: #ffbf00;
    --airport-ink: #082a43;
    --airport-muted: #607282;
    --airport-border: #dce7ed;
    --airport-soft: #f3f8f6;
    --airport-cream: #fff8e9;
    --airport-white: #fff;
    --airport-shadow: 0 28px 80px rgba(6, 43, 70, .16);
}

.carry-airport-page {
    overflow: hidden;
    background: #f7fafb;
    color: var(--airport-ink);
}

.airport-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background-image: var(--airport-hero-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.airport-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg,
            rgba(255, 248, 233, .99) 0%,
            rgba(255, 248, 233, .97) 23%,
            rgba(255, 248, 233, .82) 39%,
            rgba(255, 248, 233, .24) 59%,
            rgba(3, 29, 49, .12) 100%),
        linear-gradient(180deg, rgba(3, 29, 49, .02), rgba(3, 29, 49, .14));
}

.airport-hero__content {
    width: 100%;
    padding-top: 76px;
    padding-bottom: 150px;
}

.airport-hero__copy {
    width: min(690px, 55%);
}

.airport-kicker,
.airport-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--airport-green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.airport-kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--airport-green-bright);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .14);
}

.airport-hero h1 {
    max-width: 680px;
    margin: 22px 0 18px;
    color: var(--airport-navy-deep);
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    line-height: .93;
    letter-spacing: -.055em;
    font-weight: 950;
}

.airport-hero__copy > p {
    max-width: 650px;
    margin: 0;
    color: #3e5b6f;
    font-size: clamp(1rem, 1.25vw, 1.24rem);
    line-height: 1.7;
}

.airport-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.airport-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(6, 43, 70, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--airport-navy);
    font-size: .84rem;
    font-weight: 850;
    backdrop-filter: blur(8px);
}

.airport-hero-trust i {
    color: var(--airport-green);
}

.airport-arrival-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(610px, 100%);
    margin-top: 26px;
    padding: 15px 18px;
    border: 1px solid rgba(6, 43, 70, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 40px rgba(6, 43, 70, .08);
    backdrop-filter: blur(9px);
}

.airport-arrival-strip__icon {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--airport-gold);
    color: var(--airport-navy-deep);
    font-size: 1.2rem;
}

.airport-arrival-strip strong,
.airport-arrival-strip span {
    display: block;
}

.airport-arrival-strip strong {
    font-size: .96rem;
}

.airport-arrival-strip span {
    margin-top: 3px;
    color: var(--airport-muted);
    font-size: .79rem;
    line-height: 1.45;
}

.airport-booking-section {
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
}

.airport-booking-wrap {
    margin-top: -92px;
}

.airport-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(220, 231, 237, .95);
    border-radius: 28px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--airport-shadow);
}

.airport-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--airport-green), var(--airport-gold));
}

.airport-validation-summary:empty {
    display: none;
}

.airport-form-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--airport-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdfd, #f3f8f6);
}

.airport-progress-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8a9aa6;
    cursor: pointer;
}

.airport-progress-step span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #cddbe3;
    border-radius: 999px;
    background: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.airport-progress-step strong {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.airport-progress-step.is-active,
.airport-progress-step.is-complete {
    color: var(--airport-green);
}

.airport-progress-step.is-active span,
.airport-progress-step.is-complete span {
    border-color: var(--airport-green-bright);
    background: var(--airport-green-bright);
    color: #fff;
    box-shadow: 0 8px 20px rgba(16, 185, 129, .22);
}

.airport-progress-line {
    height: 1px;
    background: #cad8e0;
}

.airport-form-section {
    padding: 38px 0;
    border-bottom: 1px solid var(--airport-border);
    scroll-margin-top: 120px;
}

.airport-form-section:last-of-type {
    border-bottom: 0;
}

.airport-section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.airport-section-number {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--airport-green-bright);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 9px 22px rgba(16, 185, 129, .22);
}

.airport-section-heading h2 {
    margin: 2px 0 0;
    color: var(--airport-navy-deep);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -.025em;
}

.airport-toggle-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid var(--airport-border);
    border-radius: 18px;
    background: var(--airport-soft);
    cursor: pointer;
}

.airport-toggle-card__icon,
.airport-submit-copy__icon,
.airport-option-card__icon {
    display: grid;
    place-items: center;
    border-radius: 14px;
}

.airport-toggle-card__icon {
    width: 46px;
    height: 46px;
    background: #e2f7ef;
    color: var(--airport-green);
    font-size: 1.25rem;
}

.airport-toggle-card__copy strong,
.airport-toggle-card__copy small {
    display: block;
}

.airport-toggle-card__copy strong {
    color: var(--airport-navy);
    font-size: .95rem;
}

.airport-toggle-card__copy small {
    margin-top: 3px;
    color: var(--airport-muted);
}

.airport-switch-control {
    position: relative;
    width: 52px;
    height: 30px;
}

.airport-switch-control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.airport-switch-control > span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #c9d5dc;
    transition: .2s ease;
}

.airport-switch-control > span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(3, 29, 49, .22);
    transition: .2s ease;
}

.airport-switch-control input:checked + span {
    background: var(--airport-green-bright);
}

.airport-switch-control input:checked + span::after {
    transform: translateX(22px);
}

.airport-grid,
.airport-option-grid {
    display: grid;
    gap: 16px;
}

.airport-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airport-grid--4,
.airport-option-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.airport-field label {
    display: block;
    margin-bottom: 8px;
    color: #314b5f;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.airport-input-wrap {
    position: relative;
}

.airport-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--airport-green);
    pointer-events: none;
}

.airport-input-wrap--textarea > i {
    top: 18px;
    transform: none;
}

.airport-card .form-control,
.airport-card .form-select {
    min-height: 54px;
    padding: 12px 15px 12px 45px;
    border: 1px solid #cedbe3;
    border-radius: 14px;
    background-color: #fff;
    color: var(--airport-ink);
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.airport-card textarea.form-control {
    min-height: 116px;
    resize: vertical;
}

.airport-card .form-control:focus,
.airport-card .form-select:focus {
    border-color: var(--airport-green-bright);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.field-validation-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: .78rem;
    font-weight: 700;
}

.airport-flight-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #fff8db;
    color: #705700;
    font-size: .82rem;
}

.airport-option-grid {
    margin-top: 20px;
}

.airport-option-card {
    position: relative;
    min-height: 116px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--airport-border);
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.airport-option-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 143, 98, .35);
    box-shadow: 0 14px 30px rgba(6, 43, 70, .08);
}

.airport-option-card input {
    position: absolute;
    opacity: 0;
}

.airport-option-card__check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 1px solid #cbd8df;
    border-radius: 999px;
    color: transparent;
    font-size: .75rem;
}

.airport-option-card__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    background: #eef8f4;
    color: var(--airport-green);
}

.airport-option-card strong,
.airport-option-card small {
    display: block;
}

.airport-option-card strong {
    padding-right: 22px;
    color: var(--airport-navy);
    font-size: .9rem;
}

.airport-option-card small {
    margin-top: 5px;
    color: var(--airport-muted);
    line-height: 1.45;
}

.airport-option-card:has(input:checked) {
    border-color: var(--airport-green-bright);
    background: #effbf6;
}

.airport-option-card:has(input:checked) .airport-option-card__check {
    border-color: var(--airport-green-bright);
    background: var(--airport-green-bright);
    color: #fff;
}

.airport-field--textarea {
    margin-top: 20px;
}

.airport-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
}

.airport-submit-copy {
    display: flex;
    align-items: center;
    gap: 13px;
}

.airport-submit-copy__icon {
    width: 48px;
    height: 48px;
    background: #e8f8f1;
    color: var(--airport-green);
    font-size: 1.25rem;
}

.airport-submit-copy strong,
.airport-submit-copy small {
    display: block;
}

.airport-submit-copy strong {
    color: var(--airport-navy);
}

.airport-submit-copy small {
    margin-top: 2px;
    color: var(--airport-muted);
}

.airport-primary-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 0;
    border-radius: 15px;
    background: var(--airport-gold);
    color: #08253a;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(255, 191, 0, .25);
    transition: .2s ease;
}

.airport-primary-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.airport-primary-btn:disabled {
    cursor: wait;
    opacity: .72;
}

.passenger-only-field,
.return-date {
    transition: opacity .2s ease, transform .2s ease;
}

.is-hidden-field {
    display: none !important;
}

@media (max-width: 1100px) {
    .airport-hero {
        min-height: 600px;
        background-position: 62% center;
    }

    .airport-hero__copy {
        width: 62%;
    }

    .airport-grid--4,
    .airport-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .airport-hero {
        min-height: 620px;
        align-items: flex-end;
        background-position: 68% center;
    }

    .airport-hero__shade {
        background:
            linear-gradient(180deg,
                rgba(3, 29, 49, .12) 0%,
                rgba(3, 29, 49, .35) 42%,
                rgba(3, 29, 49, .94) 100%);
    }

    .airport-hero__content {
        padding-top: 150px;
        padding-bottom: 135px;
    }

    .airport-hero__copy {
        width: 100%;
        max-width: 660px;
    }

    .airport-hero h1,
    .airport-hero__copy > p {
        color: #fff;
    }

    .airport-kicker {
        color: #58e2b0;
    }

    .airport-hero-trust span,
    .airport-arrival-strip {
        border-color: rgba(255, 255, 255, .22);
        background: rgba(3, 29, 49, .58);
        color: #fff;
    }

    .airport-arrival-strip span {
        color: #d7e3e9;
    }

    .airport-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .airport-card {
        padding: 24px;
    }
}

@media (max-width: 620px) {
    .airport-hero {
        min-height: 650px;
        background-position: 72% center;
    }

    .airport-hero__content {
        padding-top: 130px;
        padding-bottom: 120px;
    }

    .airport-hero h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .airport-arrival-strip {
        display: none;
    }

    .airport-booking-wrap {
        margin-top: -70px;
        padding-inline: 12px;
    }

    .airport-card {
        padding: 19px;
        border-radius: 22px;
    }

    .airport-form-progress {
        gap: 7px;
        padding: 12px;
    }

    .airport-progress-step strong {
        display: none;
    }

    .airport-progress-line {
        min-width: 20px;
    }

    .airport-grid--3,
    .airport-grid--4,
    .airport-option-grid {
        grid-template-columns: 1fr;
    }

    .airport-form-section {
        padding: 30px 0;
    }

    .airport-toggle-card {
        grid-template-columns: auto 1fr;
    }

    .airport-switch-control {
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: -40px;
    }

    .airport-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .airport-primary-btn {
        width: 100%;
    }
}
