/* contact/contact.css — shared styling for the Contact Us form, he + en. */

.contact-page .container {
    align-items: flex-start;
}

.contact-page .Explain-div {
    width: 100%;
    max-width: 640px;
    padding: 40px;
}

.contact-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 600;
    color: #1f3a5f;
}

.contact-field .contact-optional {
    font-weight: 400;
    color: #888;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field select,
.contact-field textarea {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    background: #fff;
    color: #222;
    box-sizing: border-box;
    width: 100%;
}

.contact-field input[type="text"]:focus,
.contact-field input[type="email"]:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #145ec5;
    box-shadow: 0 0 0 3px rgba(20, 94, 197, 0.15);
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

/* Honeypot — visually hidden off-screen, not display:none, so bots that
   only check computed visibility still "see" and fill the field. */
.contact-hp {
    position: absolute;
    inset-inline-start: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-submit {
    align-self: flex-start;
    padding: 11px 28px;
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #145ec5;
    border: 2px solid #145ec5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-submit:hover:not(:disabled) {
    background: #0e4694;
    border-color: #0e4694;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.contact-status {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    display: none;
}

.contact-status.is-visible {
    display: block;
}

.contact-status.is-success {
    background: #e6f4ea;
    color: #1e7a34;
    border: 1px solid #b7e0c3;
}

.contact-status.is-error {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f3c1bc;
}

@media (max-width: 768px) {
    .contact-page .Explain-div {
        width: 100%;
        padding: 20px;
    }
}
