/* =========================================
   CONTACT US PAGE
========================================= */


/* =========================================
   HERO
========================================= */

.contact-hero {
    padding: 85px 7%;

    background:
        linear-gradient(
            135deg,
            #0b3652,
            #15577d
        );

    color: #ffffff;
}

.contact-hero-container {
    max-width: 1200px;

    margin: auto;
}

.contact-hero-content {
    max-width: 760px;
}

.contact-hero-content > span {
    display: inline-block;

    color: #a9e2f8;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 15px;
}

.contact-hero-content h1 {
    color: #ffffff;

    font-size: 52px;

    line-height: 1.15;

    margin: 0 0 20px;
}

.contact-hero-content p {
    color: #dcecf3;

    font-size: 17px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================
   MAIN CONTACT
========================================= */

.contact-main {
    padding: 100px 7%;

    background: #f6fafc;
}

.contact-main-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 60px;

    align-items: stretch;
}


/* =========================================
   INFORMATION
========================================= */

.contact-information {
    padding: 50px 45px;

    background: #15577d;

    color: #ffffff;
}

.contact-label {
    display: block;

    color: #15577d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.contact-information .contact-label {
    color: #a9e2f8;
}

.contact-information h2 {
    color: #ffffff;

    font-size: 34px;

    line-height: 1.2;

    margin: 0 0 18px;
}

.contact-information > p {
    color: #d6e8ef;

    font-size: 15px;

    line-height: 1.75;

    margin: 0 0 40px;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.12);

    color: #ffffff;

    font-size: 17px;
}

.contact-detail span {
    display: block;

    color: #9edcf4;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 5px;
}

.contact-detail p {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================
   FORM
========================================= */

.contact-form-wrapper {
    padding: 50px;

    background: #ffffff;

    border: 1px solid #e1ebf0;

    box-shadow:
        0 15px 40px rgba(21,87,125,.08);
}

.contact-form-wrapper .contact-label {
    margin-bottom: 10px;
}

.contact-form-wrapper h2 {
    color: #122b3a;

    font-size: 32px;

    line-height: 1.25;

    margin: 0 0 32px;
}


/* =========================================
   FORM ROW
========================================= */

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.contact-field {
    margin-bottom: 20px;
}

.contact-field label {
    display: block;

    color: #263d4c;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d8e4ea;

    background: #fbfdfe;

    color: #333;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-field input {
    height: 48px;
}

.contact-field textarea {
    resize: vertical;

    min-height: 130px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #15577d;

    box-shadow:
        0 0 0 3px rgba(21,87,125,.08);
}


/* =========================================
   CONSENT
========================================= */

.contact-consent {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #687782;

    font-size: 12px;

    line-height: 1.6;

    margin: 3px 0 25px;

    cursor: pointer;
}

.contact-consent input {
    margin-top: 3px;

    accent-color: #15577d;
}


/* =========================================
   SUBMIT
========================================= */

.contact-submit {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: none;

    background: #15577d;

    color: #ffffff;

    padding: 14px 30px;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}

.contact-submit:hover {
    background: #0d405d;

    transform: translateY(-2px);
}


/* =========================================
   LOCATIONS
========================================= */

.contact-locations {
    padding: 100px 7%;

    background: #ffffff;
}

.contact-locations-container {
    max-width: 1150px;

    margin: auto;
}

.contact-section-heading {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 55px;
}

.contact-section-heading span {
    display: inline-block;

    color: #15577d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.contact-section-heading h2 {
    color: #122b3a;

    font-size: 38px;

    margin: 0;
}


/* =========================================
   LOCATION GRID
========================================= */

.location-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 20px;
}

.location-card {
    padding: 30px 23px;

    background: #f7fafc;

    border: 1px solid #e3edf2;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.location-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(21,87,125,.09);
}

.location-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eef7fc;

    color: #15577d;

    font-size: 19px;

    margin-bottom: 20px;
}

.location-card h3 {
    color: #15577d;

    font-size: 18px;

    margin: 0 0 15px;
}

.location-card p {
    color: #687782;

    font-size: 13px;

    line-height: 1.7;

    margin: 0 0 15px;
}

.location-card > span {
    display: block;

    color: #405563;

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 3px;
}


/* =========================================
   HELP
========================================= */

.contact-help {
    padding: 75px 7%;

    background: #eef7fc;
}

.contact-help-container {
    max-width: 1100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.contact-help-container > div {
    max-width: 750px;
}

.contact-help-container span {
    display: inline-block;

    color: #15577d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.contact-help-container h2 {
    color: #122b3a;

    font-size: 34px;

    margin: 0 0 12px;
}

.contact-help-container p {
    color: #687782;

    font-size: 15px;

    line-height: 1.75;

    margin: 0;
}

.contact-help-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background: #15577d;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background .3s ease,
        transform .3s ease;
}

.contact-help-btn:hover {
    background: #0d405d;

    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-main-container {
        grid-template-columns: 1fr;

    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-help-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .contact-hero {
        padding: 60px 5%;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }


    .contact-main {
        padding: 60px 5%;
    }

    .contact-information {
        padding: 35px 25px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-information h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-locations {
        padding: 65px 5%;
    }

    .contact-section-heading h2 {
        font-size: 30px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }


    .contact-help {
        padding: 55px 5%;
    }

    .contact-help-container h2 {
        font-size: 29px;
    }

}