/* =========================================
   CONTACT PAGE — contact.css
========================================= */

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

.contactpage .contact-section {
    width: 100%;
    padding: 130px 30px 150px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.contactpage .contact-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.contactpage .contact-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.contactpage .contact-title-spacer {
    flex: 1;
    max-width: 700px;
}

.contactpage .contact-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.contactpage .contact-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contactpage .contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contactpage .contact-subtitle {
    max-width: 500px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.contactpage .contact-details {
    max-width: 500px;
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.contactpage .contact-details strong {
    font-weight: 700;
}

.contactpage .contact-map {
    width: 701px;
    height: 701px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}

.contactpage .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================
   BUTTON
========================================= */

.contactpage .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 13px 30px;
    background: transparent;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #082F56;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.contactpage .btn-outline-dark:hover {
    background: #082F56;
    color: #ffffff;
}

/* =========================================
   LARGE SCREENS
========================================= */

@media (min-width: 1400px) {
    .contactpage .contact-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1920px) {
    .contactpage .contact-section {
        padding-left: 160px;
        padding-right: 160px;
    }

    .contactpage .contact-title {
        font-size: 80px;
    }
}

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

@media (max-width: 991px) {
    .contactpage .contact-section {
        padding: 80px 20px;
        gap: 50px;
    }

    .contactpage .contact-top,
    .contactpage .contact-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .contactpage .contact-title {
        font-size: 42px;
    }

.contactpage .contact-map {
    width: 100%;
    height: 350px;
}

    .contactpage .contact-title-spacer {
        display: none;
    }
}

@media (max-width: 576px) {
    .contactpage .contact-title {
        font-size: 32px;
    }

    .contactpage .contact-details,
    .contactpage .contact-subtitle {
        font-size: 15px;
    }
}