/* Modern Contact Form Styles for .contact-form */
.contact-form {
    background: #23272f;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 #18191c88, 0 2px 8px 0 #d32f2f22;
    padding: 2.2rem 2.5rem 1.7rem 2.5rem;
    max-width: 410px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.contact-form label {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}
.contact-form input[type="email"],
.contact-form textarea {
    background: #18191c;
    color: #fff;
    border: 1.5px solid #35363a;
    border-radius: 9px;
    padding: 0.8rem 1rem;
    font-size: 1.08rem;
    font-family: inherit;
    margin-bottom: 0.3rem;
    transition: border 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 6px 0 #23272f33;
    outline: none;
}
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border: 1.5px solid #d32f2f;
    box-shadow: 0 0 0 2px #d32f2f55;
}
.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}
.contact-form input[type="file"] {
    background: none;
    color: #fff;
    border: none;
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0.7rem;
}
.contact-form button[type="submit"] {
    background: linear-gradient(90deg, #d32f2f 60%, #23272f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.95rem 0;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 #d32f2f44, 0 1px 8px 0 #23272f;
    letter-spacing: 0.5px;
    transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.contact-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #23272f 0%, #d32f2f 100%);
    box-shadow: 0 0 18px 2px #d32f2faa, 0 2px 8px 0 #23272f;
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 600px) {
    .contact-form {
        padding: 1.1rem 0.7rem 1.1rem 0.7rem;
        max-width: 97vw;
    }
}
