/* ================================
   SCAFOX CONTACT FORM STYLING
================================ */

.scafox-form {
    max-width: 650px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scafox-form input,
.scafox-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 15px;
    background: #041814;
    color: #fff;
    transition: all .25s ease;
}

.scafox-form input:focus,
.scafox-form textarea:focus {
    outline: none;
    border-color: #C49A3B;
    box-shadow: 0 0 0 2px rgba(196,154,59,0.3);
}

.scafox-form textarea {
    min-height: 140px;
    resize: vertical;
}

.scafox-form button {
    background: linear-gradient(135deg, #C49A3B, #e6c56f);
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: transform .2s ease, box-shadow .2s ease;
}

.scafox-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.scafox-response {
    font-size: 14px;
    margin-top: 8px;
}

/* reCAPTCHA spacing */
.g-recaptcha {
    margin-top: 5px;
}

/* Mobile */
@media (max-width: 768px) {
    .scafox-form {
        margin: 40px 20px;
    }
}
