.form-title {
    text-align: center;
    margin-top: 120px;
    font-size: 60px;
    color: white;
}

.form-title .highlight {
    color: #02a99c;
}

.contact-form {
    max-width: 500px;
    margin: 3rem auto;
    margin-top: 50px;
    padding: 2.5rem;
    background: #161B22;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.4rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.50rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    background: #ffffff;
}

.type-projet {
    padding: 5px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: #02a99c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
    background: #4338ca;
}

.contact-form button:active {
    transform: scale(0.98);
}

.form-status {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(2, 169, 156, 0.15);
    color: #02a99c;
    border: 1px solid rgba(2, 169, 156, 0.4);
}

.form-status.error {
    display: block;
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.4);
}