/* Contact page container */
.contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 45px;
    border: 1px solid rgba(16, 35, 61, 0.15);
    background: #eee6dc;
}

/* Labels */
.contact-form label {
    display: block;
    margin: 0 0 8px;
    color: #10233d;
    font-family: monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* All form controls */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 24px;
    padding: 14px 16px;

    border: 1px solid rgba(16, 35, 61, 0.25) !important;
    border-radius: 0;
    outline: none;

    background: #f8f3ed !important;
    color: #10233d !important;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;

    box-shadow: none;
    appearance: auto;
}

/* Normal input height */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select {
    min-height: 48px;
}

/* Message field */
.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* Hover */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(16, 35, 61, 0.55) !important;
}

/* Focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #a95e3e !important;
    background: #ffffff !important;
}

/* Send button */
.contact-form button {
    display: inline-block;
    margin-top: 4px;
    padding: 15px 28px;

    border: 1px solid #10233d;
    background: #10233d;
    color: #ffffff;

    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form button:hover {
    background: transparent;
    color: #10233d;
}

/* Hide spam honeypot */
.contact-form .honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Mobile */
@media screen and (max-width: 700px) {
    .contact-form {
        padding: 28px 20px;
    }

    .contact-form button {
        width: 100%;
    }
}