/* === START: Contact Form Styles === */

.contact-form {
    margin-top: 2rem;
    text-align: left;
}

.form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #343a40;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #000; /* Match your site's border style */
    border-radius: 0; /* Match your site's sharp corners */
    box-sizing: border-box;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #495057;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

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

.btn-submit {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background-color: #212529; /* Dark color to match your theme */
    color: white;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn-submit:hover {
    background-color: #495057;
}

.error-message,
.success-message {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    text-align: left;
}

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

.error-message ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.honeypot {
    position: absolute;
    left: -5000px;
    visibility: hidden;
}

.required-star {
    color: #e74c3c;
    margin-left: 2px;
    font-weight: 700;
}


/* === END: Contact Form Styles === */
