/* ========================================
   CONTACT FORM SECTION
   ======================================== */

#contact-section {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#contact-section h1 {
    text-align: center;
    color: #e20f2f;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

#contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#contact-section label {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
}

#contact-section input,
#contact-section textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

#contact-section input:focus,
#contact-section textarea:focus {
    border-color: #e20f2f;
    outline: none;
    box-shadow: 0 0 5px rgba(226, 15, 47, 0.3);
}

#contact-section button {
    background-color: #e20f2f;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-section button:hover {
    background-color: #c20d28;
}

.form-feedback {
    background-color: #e6ffed;
    border: 2px solid #38a169;
    color: #2f855a;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
}
