.contact-page {
    background: var(--paper);
}

.contact-page .site-header {
    color: var(--navy);
    background: rgba(248, 249, 250, .98);
    border-color: var(--line);
}

.contact-hero {
    position: relative;
    min-height: 300px;
    height: 40vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}

.contact-hero>img,
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-hero>img {
    object-fit: cover;
    object-position: center;
    filter: saturate(.75);
}

.contact-hero__overlay {
    background: rgba(4, 21, 57, .76);
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 70px;
}

.contact-hero h1 {
    margin: 0;
    font: 700 48px/1.15 Montserrat, sans-serif;
}

.contact-hero p {
    margin: 14px auto 0;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, .9);
}

.contact-intro {
    background: #FFF;
    color: #fff;
    padding: 72px 0 76px;
}

.contact-intro__inner {
    max-width: 1040px;
    text-align: center;
}

.contact-copy {
    max-width: 720px;
    margin: 0 auto 42px;
}

.contact-copy h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font: 600 32px/40px Montserrat, sans-serif;
}

.contact-copy p {
    margin: 0;
    color: #9098a5;
    font-size: 14px;
    line-height: 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.contact-card {
    min-height: 126px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--muted);
    transition: transform .2s, box-shadow .2s;
}

.contact-card:hover {
    color: var(--muted);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(98, 183, 239, .2);
}

.contact-card__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
}

.contact-card__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.contact-card strong,
.contact-card small {
    display: block;
}

.contact-card strong {
    color: var(--navy);
    font: 600 12px/16px Montserrat, sans-serif;
}

.contact-card small {
    margin-top: 3px;
    font-size: 12px;
    line-height: 17px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font: 600 12px/16px Montserrat, sans-serif;
}

.contact-social div {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-social a {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid #87909c;
    border-radius: 50%;
    color: #87909c;
    font: 600 11px Inter, sans-serif;
    transition: border-color .2s, color .2s;
}

.contact-social a:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.location {
    background: #f3f4f5;
    padding-top: 48px;
}

.location__heading {
    text-align: center;
    margin-bottom: 28px;
}

.location__heading h2 {
    margin: 0;
    color: var(--navy);
    font: 600 24px/32px Montserrat, sans-serif;
}

.location__heading p {
    margin: 6px 0 0;
    color: #7a838e;
    font-size: 14px;
}

.location__map {
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    background: #c7e4e9;
    color: var(--navy);
    text-align: center;
}

.location__map::before {
    content: "";
    position: absolute;
    inset: -20%;
    opacity: .7;
    background: repeating-linear-gradient(28deg, transparent 0 34px, rgba(255, 255, 255, .7) 35px 38px, transparent 39px 74px), repeating-linear-gradient(118deg, transparent 0 55px, rgba(105, 164, 178, .35) 56px 59px, transparent 60px 110px);
    transform: rotate(-8deg);
}

.location__map::after {
    content: "DUBAI";
    position: absolute;
    font: 700 44px Montserrat, sans-serif;
    letter-spacing: .14em;
    opacity: .13;
}

.location__map>* {
    position: relative;
    z-index: 1;
}

.location__pin {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 0 0 9px rgba(255, 255, 255, .65);
}

.location__pin svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.location__map strong {
    font: 700 25px Montserrat, sans-serif;
}

.location__map small {
    font-size: 13px;
}

@media (max-width: 750px) {
    .contact-page .site-header .menu-toggle {
        color: var(--navy);
        background: rgba(4, 21, 57, .08);
    }

    .contact-page .site-header.menu-is-open .menu-toggle {
        color: #fff;
        background: rgba(255, 255, 255, .12);
    }

    .contact-hero {
        height: 300px;
    }

    .contact-hero__content {
        padding-top: 60px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        max-width: 330px;
        font-size: 15px;
        line-height: 22px;
    }

    .contact-intro {
        padding: 54px 0 58px;
    }

    .contact-copy {
        margin-bottom: 30px;
    }

    .contact-copy h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .contact-card {
        min-height: 132px;
    }

    .location {
        padding-top: 38px;
    }

    .location__map {
        height: 260px;
    }
}

@media (max-width: 380px) {
    .contact-card {
        padding-inline: 5px;
    }

    .contact-card small {
        font-size: 11px;
    }
}