.quick-message-section {
    margin-top: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
    animation: fadeUp 0.55s ease both;
}

.quick-message-caption {
    margin: 0;
    font-family: poppins;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #38bdf8;
}

.quick-message-title {
    margin: 8px 0 20px;
    font-family: poppins;
    font-size: 28px;
    color: #ffffff;
}

.quick-message-form {
    display: grid;
    gap: 16px;
}

.quick-form-row {
    display: grid;
    gap: 8px;
}

.quick-form-row label {
    font-family: poppins;
    font-size: 14px;
    color: #cbd5e1;
}

.quick-form-row input,
.quick-form-row select,
.quick-form-row textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #475569;
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    font-family: poppins;
    font-size: 15px;
    padding: 12px 14px;
}

.quick-form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.quick-form-row input.input-error,
.quick-form-row select.input-error,
.quick-form-row textarea.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.quick-form-row input:focus,
.quick-form-row select:focus,
.quick-form-row textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.quick-submit-btn {
    justify-self: start;
    border: 1px solid rgba(100, 116, 139, 0.8);
    border-radius: 10px;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.quick-submit-btn:hover {
    transform: translateY(-1px);
    background: #38bdf8;
    border-color: #38bdf8;
    color: #0f172a;
}

.quick-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-error {
    min-height: 18px;
    margin: 0;
    font-family: poppins;
    font-size: 13px;
    color: #f87171;
}

.form-status {
    min-height: 22px;
    margin: -2px 0 0;
    border-radius: 8px;
    padding: 8px 10px;
    font-family: poppins;
    font-size: 14px;
    border: 1px solid transparent;
    color: #e2e8f0;
    display: none;
}

.form-status.is-success {
    display: block;
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
}

.form-status.is-error {
    display: block;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}

.contact-alert[hidden] {
    display: none;
}

.contact-alert {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
}

.contact-alert__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
}

.contact-alert__card {
    position: relative;
    width: min(92vw, 420px);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(56, 189, 248, 0.45);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(3, 105, 161, 0.84));
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.5);
    animation: contactAlertPop 0.24s ease;
}

.contact-alert__card.is-success {
    border-color: rgba(34, 197, 94, 0.55);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(22, 101, 52, 0.78));
}

.contact-alert__card.is-error {
    border-color: rgba(239, 68, 68, 0.62);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(127, 29, 29, 0.78));
}

.contact-alert__title {
    margin: 0 0 8px;
    font-family: poppins;
    font-size: 22px;
    color: #f8fafc;
}

.contact-alert__message {
    margin: 0 0 18px;
    font-family: poppins;
    color: #dbeafe;
    line-height: 1.6;
}

.contact-alert__button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    background: #38bdf8;
    color: #0f172a;
    font-family: poppins;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.contact-alert__button:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.contact-alert__button:focus-visible {
    outline: 2px solid #f8fafc;
    outline-offset: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactAlertPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
