/* CAF Contact Form */

.caf-contact-wrap {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Lexend Deca", sans-serif;
}

.caf-contact-form {
    background: #fff;
    border: 1.5px solid #cbd5e0;
    border-radius: 10px;
    padding: 32px;
    box-sizing: border-box;
}

/* Honeypot — completely hidden */
.caf-contact-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.caf-contact-field {
    margin-bottom: 20px;
}

.caf-contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #152a4a;
    margin-bottom: 6px;
}

.caf-required {
    color: #e53e3e;
    margin-left: 2px;
}

.caf-contact-field input[type="text"],
.caf-contact-field input[type="email"],
.caf-contact-field select,
.caf-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid #cbd5e0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #152a4a;
    background: #fff;
    transition: border-color 0.15s;
    appearance: none;
}

.caf-contact-field input:focus,
.caf-contact-field select:focus,
.caf-contact-field textarea:focus {
    outline: none;
    border-color: #036eb0;
    box-shadow: 0 0 0 3px rgba(3, 110, 176, 0.12);
}

.caf-contact-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.caf-contact-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.caf-contact-btn {
    background: #036eb0;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.caf-contact-btn:hover {
    background: #025a90;
}

.caf-contact-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.caf-contact-spinner {
    font-size: 14px;
    color: #718096;
}

.caf-contact-success {
    background: #f0fff4;
    border: 1.5px solid #c6f6d5;
    border-radius: 8px;
    padding: 16px 20px;
    color: #276749;
    font-size: 15px;
    margin-bottom: 20px;
}

.caf-contact-success p {
    margin: 0;
}

.caf-contact-error {
    background: #fff5f5;
    border: 1.5px solid #fed7d7;
    border-radius: 8px;
    padding: 12px 16px;
    color: #c53030;
    font-size: 14px;
    margin-bottom: 16px;
}
