/* ==========================================================
   EXPRES POLISH
   CONTACTS PAGE
   ========================================================== */


/* ==========================================================
   HERO
   ========================================================== */

.contacts-hero {
    padding: 88px 0 92px;

    background:
        linear-gradient(135deg,
            #f5f9ff 0%,
            #ffffff 55%,
            #eef8fa 100%);
}

.contacts-hero__inner {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.contacts-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    margin-bottom: 20px;
    padding: 7px 15px;

    border-radius: 999px;

    background: #eef8fa;

    color: #00a4b3;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.contacts-hero__title {
    max-width: 850px;

    margin: 0 auto 26px;

    color: #0a4d8c;

    font-family: "Nunito", sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
}

.contacts-hero__lead {
    max-width: 790px;

    margin: 0 auto 18px;

    color: #374151;

    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.contacts-hero__text {
    max-width: 760px;

    margin: 0 auto 14px;

    color: #667085;

    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================================
   HERO BUTTONS
   ========================================================== */

.contacts-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.contacts-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 205px;
    min-height: 52px;

    padding: 0 26px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contacts-hero__button--primary {
    border-color: #00b8c8;

    background: #00b8c8;

    color: #ffffff;

    box-shadow: 0 12px 28px rgba(0, 184, 200, 0.2);
}

.contacts-hero__button--primary:hover {
    border-color: #00a4b3;

    background: #00a4b3;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 16px 32px rgba(0, 184, 200, 0.25);
}

.contacts-hero__button--secondary {
    border-color: #0a4d8c;

    background: #ffffff;

    color: #0a4d8c;
}

.contacts-hero__button--secondary:hover {
    background: #0a4d8c;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================================
   CONTACT SECTION
   ========================================================== */

.contacts-section {
    padding: 88px 0 96px;

    background: #ffffff;
}

.contacts-section__heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.contacts-section__title {
    margin: 0 0 14px;

    color: #0a4d8c;

    font-family: "Nunito", sans-serif;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.contacts-section__subtitle {
    margin: 0;

    color: #667085;

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   CONTACT CARDS
   ========================================================== */

.contacts-methods {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.contact-method {
    display: flex;
    flex-direction: column;

    min-width: 0;

    padding: 30px 26px;

    border: 1px solid rgba(0, 184, 200, 0.25);
    border-radius: 26px;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    box-shadow: 0 12px 35px rgba(10, 77, 140, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-method:hover {
    transform: translateY(-5px);

    border-color: #00b8c8;

    box-shadow: 0 22px 50px rgba(10, 77, 140, 0.1);
}

.contact-method__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 23px;

    border-radius: 16px;

    background: #eef8fa;

    color: #00a4b3;
}

.contact-method__icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method__content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.contact-method__title {
    margin-bottom: 7px;

    color: #0a4d8c;

    font-family: "Nunito", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-method__value {
    margin-bottom: 13px;

    color: #00a4b3;

    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.contact-method__description {
    color: #667085;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   LOCATION
   ========================================================== */

.contacts-location {
    padding: 90px 0 100px;

    background: #f7fbfc;
}

.contacts-location__heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.contacts-location__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 7px 14px;

    border-radius: 999px;

    background: #eef8fa;

    color: #00a4b3;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.contacts-location__title {
    margin: 0 0 14px;

    color: #0a4d8c;

    font-family: "Nunito", sans-serif;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.contacts-location__subtitle {
    margin: 0;

    color: #667085;

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   LOCATION GRID
   ========================================================== */

.contacts-location__grid {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.8fr) minmax(0, 1.2fr);

    gap: 28px;

    align-items: stretch;
}

.contacts-location__info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 44px;

    border: 1px solid rgba(0, 184, 200, 0.25);
    border-radius: 30px;

    background: #ffffff;

    box-shadow: 0 18px 45px rgba(10, 77, 140, 0.06);
}

.contacts-location__label {
    display: block;

    margin-bottom: 10px;

    color: #00a4b3;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contacts-location__city {
    margin: 0 0 12px;

    color: #0a4d8c;

    font-family: "Nunito", sans-serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.contacts-location__address {
    margin: 0 0 24px;

    color: #374151;

    font-style: normal;
    font-size: 18px;
    line-height: 1.65;
}

.contacts-location__text {
    margin: 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.75;
}


/* ==========================================================
   LOCATION BUTTONS
   ========================================================== */

.contacts-location__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.contacts-location__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 21px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contacts-location__button--primary {
    border-color: #00b8c8;

    background: #00b8c8;

    color: #ffffff;
}

.contacts-location__button--primary:hover {
    border-color: #00a4b3;

    background: #00a4b3;

    color: #ffffff;

    transform: translateY(-2px);
}

.contacts-location__button--secondary {
    border-color: #0a4d8c;

    background: #ffffff;

    color: #0a4d8c;
}

.contacts-location__button--secondary:hover {
    background: #0a4d8c;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================================
   MAP
   ========================================================== */

.contacts-location__map {
    min-height: 480px;

    overflow: hidden;

    border: 1px solid rgba(0, 184, 200, 0.25);
    border-radius: 30px;

    background: #ffffff;

    box-shadow: 0 18px 45px rgba(10, 77, 140, 0.06);
}

.contacts-location__map iframe {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 480px;

    border: 0;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {
    .contacts-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   TABLET / MOBILE
   ========================================================== */

@media (max-width: 800px) {
    .contacts-hero {
        padding: 66px 0 72px;
    }

    .contacts-hero__lead {
        font-size: 17px;
    }

    .contacts-section {
        padding: 70px 0 78px;
    }

    .contacts-location {
        padding: 72px 0 80px;
    }

    .contacts-location__grid {
        grid-template-columns: 1fr;
    }

    .contacts-location__info {
        padding: 34px;
    }

    .contacts-location__map,
    .contacts-location__map iframe {
        min-height: 420px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {
    .contacts-hero {
        padding: 54px 0 60px;
    }

    .contacts-hero__title {
        font-size: 38px;
    }

    .contacts-hero__lead {
        font-size: 16px;
    }

    .contacts-hero__text {
        font-size: 15px;
    }

    .contacts-hero__actions {
        flex-direction: column;

        width: 100%;

        gap: 12px;

        margin-top: 28px;
    }

    .contacts-hero__button {
        width: 100%;
        min-width: 0;
    }

    .contacts-section {
        padding: 62px 0 68px;
    }

    .contacts-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 26px 24px;
    }

    .contacts-section__heading,
    .contacts-location__heading {
        margin-bottom: 34px;
    }

    .contacts-location {
        padding: 62px 0 70px;
    }

    .contacts-location__info {
        padding: 28px 24px;
    }

    .contacts-location__city {
        font-size: 30px;
    }

    .contacts-location__address {
        font-size: 17px;
    }

    .contacts-location__actions {
        flex-direction: column;
        align-items: stretch;

        width: 100%;
    }

    .contacts-location__button {
        width: 100%;
    }

    .contacts-location__map,
    .contacts-location__map iframe {
        min-height: 350px;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 390px) {
    .contacts-hero__title {
        font-size: 34px;
    }

    .contacts-location__map,
    .contacts-location__map iframe {
        min-height: 310px;
    }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .contact-method,
    .contacts-hero__button,
    .contacts-location__button {
        transition: none;
    }

    .contact-method:hover,
    .contacts-hero__button:hover,
    .contacts-location__button:hover {
        transform: none;
    }
}