/*-------------------------------*/
/*--FOOTER CONTACT FORM STYLES--*/
/*-----------------------------*/
#footerContactFormWrapper {
    background: #f9f9f9;
    padding: 60px 5%;
    margin: 60px 0 0;
    border-top: 1px solid #e5e5e5;
}

#footerContactFormContainer {
    margin: 0 auto;
    padding: 0 5%;
}

#footerContactFormContainer h3 {
    text-align: center;
    font-size: 160%;
    margin-bottom: 30px;
    font-weight: 600;
}

#footerContactForm {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    margin-bottom: 20px;
}

.form-row .form-field {
    margin-bottom: 0;
}

#footerContactForm input[type="text"],
#footerContactForm input[type="email"],
#footerContactForm textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

#footerContactForm input[type="text"]:focus,
#footerContactForm input[type="email"]:focus,
#footerContactForm textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

#footerContactForm textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 10px;
}

#contactSubmit {
    background: #333;
    color: #fff;
    border: 2px solid #333;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contactSubmit:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

#contactSubmit:active {
    transform: translateY(0);
}

#contactSubmit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 3px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-field {
        margin-bottom: 20px;
    }

    #footerContactFormWrapper {
        padding: 40px 5%;
    }

    #footerContactFormContainer h3 {
        font-size: 140%;
    }
}