.contact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(4, 18, 58, 0.08);
    padding: 60px 48px !important;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 40px 24px !important;
    }
}

.form_icon_wrapper {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    background: #e3f0f2;
}

.form_icon_wrapper .form_icon {
    font-size: 20px !important;
    color: #025b6b !important;
}

.mew_form .form_inputs {
    background: #ffffff;
    border: 1px solid #e6e9ee;
    color: #232323;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mew_form .form_inputs::-webkit-input-placeholder {
    color: #9a9a9a;
}

.mew_form .form_inputs:focus {
    border-color: #025b6b;
    box-shadow: 0 0 0 3px rgba(2, 91, 107, 0.15);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    border-radius: 50px;
    background: #025b6b;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(4, 18, 58, 0.12);
}

.contact-submit-btn i {
    margin-right: 12px;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    background: #013e4a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 18, 58, 0.18);
    text-decoration: none !important;
}

.contact-submit-btn.is-sending {
    background: rgba(140, 148, 155, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff !important;
    pointer-events: none;
    cursor: default;
    transform: none;
    box-shadow: 0 2px 10px rgba(4, 18, 58, 0.12);
}

.contact-submit-btn.is-sent {
    background: #1e9e5a;
    pointer-events: none;
    cursor: default;
    transform: none;
    box-shadow: 0 2px 10px rgba(4, 18, 58, 0.12);
}

.contact-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 18, 58, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
}

.contact-modal-backdrop[hidden] {
    display: none;
}

.contact-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(4, 18, 58, 0.18);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #e3f0f2;
    color: #013e4a;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
    background: #025b6b;
    color: #ffffff;
    outline: none;
}

.contact-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #e3f4ea;
    color: #1e9e5a;
}

.contact-modal.is-error .contact-modal-icon {
    background: #fbe4e4;
    color: #c0392b;
}

.contact-modal-message {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #232323;
}
