body {
    min-height: 100vh;
    display: flex;
    align-content: center;
    justify-items: center;
    background: #dbdbdb;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.order-form {
    width: 500px;
    margin: auto;
    background: rgb(255 255 255 / 95%);
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2em 2.5em;
}
.form-title {
    color: #037bbb;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
}
.btn-yellow {
    background: #ffe600;
    color: #000;
    font-weight: bold;
    border-radius: 1em;
    padding: 0.75em 2em;
    border: none;
    transition: background 0.2s;
}
.btn-yellow:hover {
    background: #037bbb;
    color: #ffe600;
}
label {
    font-weight: 500;
    color: #037bbb;
}
.form-control:focus {
    border-color: #037bbb;
    box-shadow: 0 0 0 0.2rem rgba(3, 123, 187, .15);
}
.navbar-toggler {
    z-index: 99999 !important;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ccc;
}
@media (min-width: 1200px) {
    .custom-burger {
        display: none !important;
    }
    .nav-desktop { display: block !important; }
    .nav-mobile { display: none !important; }
}
@media (max-width: 1199.98px) {
    .navbar-collapse {
        position: absolute;
        right: 10px;
        top: 100%;
        width: 250px;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 8px;
    }
    .nav-desktop {
        display: none !important;
    }
    .nav-mobile {
        display: block !important;
    }
    .nav-mobile .navbar-nav.menu-area-main {
        padding: 1.5em 1em;
        font-size: 1.1em;
        color: #037bbb;
    }
    .nav-mobile .navbar-nav.menu-area-main a {
        color: #037bbb !important;
        font-weight: bold;
        padding: 0.75em 0.5em;
        font-size: 1.1em;
        border-radius: 0.5em;
        transition: background 0.2s;
    }
    .nav-mobile .navbar-nav.menu-area-main a:hover {
        background: #e6f4fa;
        color: #000 !important;
    }
    .fa-user-plus,
    .fa-sign-in {
        margin-right: 5px;
    }
}