body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0f6efd20, #f8fafc 60%);
    color: #1f2937;
}

.hero {
    background: linear-gradient(135deg, #0f6efd, #6610f2);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 16px 40px -24px rgba(15, 110, 253, 0.9);
}

.hero h1 {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.request-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 24px 50px -30px rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    margin-top: -80px;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding-inline: 20px;
    font-weight: 600;
}

.btn-soft-primary {
    background: rgba(15, 110, 253, 0.12);
    color: #0f6efd;
    border: 1px solid rgba(15, 110, 253, 0.2);
    transition: all 0.2s ease;
}

.btn-soft-primary:hover {
    background: rgba(15, 110, 253, 0.2);
    color: #0a58ca;
}

.section-heading {
    font-weight: 600;
    color: #0f172a;
}

.divider {
    border-bottom: 1px dashed #cbd5f5;
    margin: 32px 0;
}

.select2-container .select2-selection--single {
    height: calc(3rem + 2px);
    padding: 0.75rem 1rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.badge-status {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 767.98px) {
    .hero {
        padding: 24px;
        border-radius: 18px;
        text-align: left;
    }

    .hero .display-6 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .request-card {
        padding: 24px;
        margin-top: -56px;
    }

    .floating-btn {
        width: 100%;
        justify-content: center;
    }

    .divider {
        margin: 24px 0;
    }

    #submit-btn {
        width: 100%;
    }

    #form-message {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    body {
        background: #f8fafc;
    }

    .container {
        padding-inline: 1rem;
    }

    .form-control-lg,
    .form-select-lg {
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }

    .select2-container .select2-selection--single {
        height: calc(2.75rem + 2px);
        padding: 0.65rem 1rem;
    }

    .select2-container--bootstrap-5 .select2-selection__rendered {
        font-size: 1rem;
    }

    .item-row .remove-item {
        margin-top: 0;
    }
}
