/* ── Contact Form ── */
.contact-form {
    padding: 40px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.form-title {
    margin-bottom: 25px;

    color: #111;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

/* Fieldsets */
.contact-form fieldset {
    margin-bottom: 24px;
    padding: 0;
    border: none;
}

.contact-form legend {
    margin-bottom: 14px;

    color: rgb(179, 134, 69);
    font-weight: 600;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 16px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    outline: none;

    font-size: 1rem;

    transition: border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgb(179, 134, 69);
    box-shadow: 0 0 0 4px rgba(179, 134, 69, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 16px;

    border: none;
    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #d8b06b,
        #c8943e
    );

    color: white;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 24px rgba(216, 176, 107, 0.35);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

@media (max-width: 992px) {
    .contact-form {
        padding: 30px;
    }
}