/* Contact Form Styles - Previous Design */
.contact-form {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e381f;
    box-shadow: 0 0 0 3px rgba(30, 56, 31, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.site-btn {
    background: #1e381f;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-btn:hover {
    background: #162a17;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 56, 31, 0.3);
}

.site-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

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

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

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }

    .contact-section .row > div {
        margin-bottom: 30px;
    }
}