.contact-page {
    background:
        linear-gradient(
            180deg,
            #f6f9fd 0%,
            #ffffff 100%
        );
    color: #0b244c;
}


/* HERO */

.contact-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #031b3b;
}

.contact-hero__media {
    position: absolute;
    inset: 0;
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3,27,59,.97) 0%,
            rgba(3,27,59,.88) 25%,
            rgba(3,27,59,.48) 56%,
            rgba(3,27,59,.12) 100%
        );
}

.contact-hero__container,
.contact-tour__container,
.contact-info__container,
.contact-location__container,
.contact-cta__container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.contact-hero__container {
    position: relative;
    z-index: 2;
}

.contact-hero__content {
    max-width: 660px;
	padding-top: 40px;
}

.contact-hero__eyebrow,
.contact-tour__eyebrow,
.contact-location__eyebrow {
    margin-bottom: 15px;
    color: #efb126;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-hero__title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 6vw, 92px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.05em;
}

.contact-hero__title span {
    display: block;
    color: #2580e8;
}

.contact-hero__text {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}


/* TOUR */

.contact-tour {
    position: relative;
    z-index: 3;
    margin-top: -36px;
    padding-bottom: 28px;
}

.contact-tour__container {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;

    padding: 34px;

    border: 1px solid rgba(15,45,90,.08);
    border-radius: 24px;

    background:
        rgba(255,255,255,.95);

    box-shadow:
        0 24px 70px rgba(10,40,85,.10);
}

.contact-tour__intro h2 {
    margin: 0;
    color: #0b244c;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.contact-tour__intro p {
    margin: 16px 0 0;
    color: #687991;
    line-height: 1.65;
}

.contact-tour__form {
    display: grid;
    grid-template-columns: minmax(0,1fr) 260px;
    gap: 18px;
    align-items: center;
}

.booking__inputs {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    list-style: none;
}

.booking__item {
    position: relative;
}

.booking__input {
    width: 100%;
    height: 58px;
    padding: 0 16px;

    color: #0b244c;

    border: 1px solid rgba(15,45,90,.11);
    border-radius: 12px;

    background: #f7f9fc;

    font: inherit;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.booking__input:focus {
    border-color: #2580e8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,128,232,.08);
}

.booking__item-warning {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 8px;

    padding: 6px 10px;

    color: #fff;
    border-radius: 7px;
    background: #efb126;

    font-size: 11px;
}

.booking__item.is-invalid
.booking__item-warning {
    display: block;
}

.booking__button {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 22px;

    color: #fff;

    border: 0;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #08295a,
            #031b3b
        );

    font-weight: 800;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 16px 38px rgba(8,41,90,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.booking__button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 48px rgba(8,41,90,.25);
}

.booking__button:disabled {
    opacity: .6;
    cursor: wait;
}

.contact-tour__status {
    grid-column: 1 / -1;
    min-height: 0;
    color: #c0392b;
    font-size: 13px;
}


/* INFO */

.contact-info {
    padding: 0 0 28px;
}

.contact-info__container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));

    border: 1px solid rgba(15,45,90,.07);
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 18px 50px rgba(10,40,85,.06);

    overflow: hidden;
}

.contact-info__item {
    min-height: 122px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 25px;

    color: #0b244c;
    text-decoration: none;

    border-right: 1px solid rgba(15,45,90,.07);
}

.contact-info__item:last-child {
    border-right: 0;
}

.contact-info__icon {
    width: 50px;
    height: 50px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;

    background: #08295a;
}

.contact-info__item strong,
.contact-info__item small {
    display: block;
}

.contact-info__item strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-info__item small {
    color: #6e7e92;
    line-height: 1.45;
}


/* MAP */

.contact-location {
    padding: 0 0 28px;
}

.contact-location__container {
    min-height: 430px;

    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, .9fr);

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 22px 60px rgba(10,40,85,.08);
}

.contact-location__map {
    min-height: 430px;
    background: #eaf0f7;
}

.contact-location__map iframe {
    display: block;
}

.contact-location__card {
    padding: 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #08295a,
            #031b3b
        );
}

.contact-location__card h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
}

.contact-location__card p {
    margin: 18px 0 28px;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
}

.contact-location__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-height: 50px;
    padding: 0 18px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.30);
    border-radius: 10px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}


/* CTA */

.contact-cta {
    padding: 0 0 100px;
}

.contact-cta__container {
    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 24px 30px;

    border: 1px solid rgba(15,45,90,.07);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f5f9ff,
            #edf4fc
        );
}

.contact-cta__copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-cta__icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    color: #fff;

    background: #08295a;

    font-size: 20px;
    font-weight: 800;
}

.contact-cta__copy h2 {
    margin: 0;
    color: #0b244c;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.contact-cta__copy p {
    margin: 5px 0 0;
    color: #6c7c90;
}

.contact-cta__actions {
    display: flex;
    gap: 12px;
}

.contact-cta__button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-cta__button--outline {
    color: #0b244c;
    border: 1px solid #0b244c;
    background: transparent;
}

.contact-cta__button--primary {
    color: #0b244c;
    background: #efb126;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .contact-tour__container {
        grid-template-columns: 1fr;
    }

    .contact-info__container {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .contact-info__item:nth-child(2) {
        border-right: 0;
    }

    .contact-info__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(15,45,90,.07);
    }
}


@media (max-width: 800px) {

    .contact-hero__container,
    .contact-tour__container,
    .contact-info__container,
    .contact-location__container,
    .contact-cta__container {
        width: calc(100% - 32px);
    }

    .contact-tour__form {
        grid-template-columns: 1fr;
    }

    .booking__inputs {
        grid-template-columns: 1fr;
    }

    .contact-location__container {
        grid-template-columns: 1fr;
    }

    .contact-location__card {
        padding: 30px;
    }

    .contact-cta__container {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 580px) {

    .contact-info__container {
        grid-template-columns: 1fr;
    }

    .contact-info__item {
        border-right: 0;
        border-bottom: 1px solid rgba(15,45,90,.07);
    }

    .contact-info__item:last-child {
        border-bottom: 0;
    }

    .contact-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-cta__button {
        width: 100%;
    }
}