/* ============================================================
   CONTACT MODAL
============================================================ */

.contact-modal {

    position: relative;
    border: none;

    border-radius: 10px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.20);

    z-index: 9999;
}


/* Header */

.contact-modal .modal-header {
    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding: 30px 32px 10px;

    border: none;
}

.modal-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #25869d;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.modal-header h2 {
    margin: 0;

    color: var(--deep-blue);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    line-height: 1.15;
}

.modal-header h2 span {
    color: #d9aa4c;
}


/* Close */

.contact-modal .btn-close {
    margin: 3px 0 0 15px;

    opacity: 0.6;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.contact-modal .btn-close:hover {
    opacity: 1;

    transform: rotate(90deg);
}


/* Body */

.contact-modal .modal-body {
    padding: 10px 32px 32px;
}

.modal-description {
    margin: 0 0 22px;

    color: #77808f;

    font-size: 12px;

    line-height: 1.7;
}


/* Form */

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--deep-blue);

    font-size: 10px;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    color: var(--deep-blue);

    background: #f8f9fa;

    border: 1px solid #e2e5e9;

    border-radius: 4px;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a2a9b3;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: #25869d;

    box-shadow:
        0 0 0 3px rgba(37, 134, 157, 0.08);
}


/* Submit */

.modal-submit-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 8px;

    padding: 12px 14px 12px 18px;

    color: #ffffff;

    background: var(--deep-blue);

    border: 1px solid var(--deep-blue);

    border-radius: 4px;

    cursor: pointer;

    font-size: 11px;
    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.modal-submit-btn span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25869d;

    border-radius: 50%;

    transition: transform 0.3s ease;
}

.modal-submit-btn:hover {
    background: #25869d;

    border-color: #25869d;

    transform: translateY(-2px);
}

.modal-submit-btn:hover span {
    transform: translateX(4px);
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .contact-modal .modal-header {
        padding: 25px 20px 8px;
    }

    .contact-modal .modal-body {
        padding: 8px 20px 25px;
    }

    .modal-header h2 {
        font-size: 25px;
    }

    .modal-description {
        font-size: 11px;
    }

}