body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #123;
}

.topbar {
    padding: 28px 0 10px;
    background: #fff;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 165px;
}

.topbar nav a {
    margin-left: 28px;
    color: #0072bc;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(0,0,0,.04) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,.04) 87.5%),
        linear-gradient(150deg, rgba(0,0,0,.04) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,.04) 87.5%);
    background-size: 18px 18px;
    opacity: .75;
}

.hero-inner {
    position: relative;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
}

.hero-trucks {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 56%;
    z-index: 2;
    animation: trucksIn 1.2s ease-out both;
}

.hero-map {
    position: absolute;
    right: 0;
    bottom: 22px;
    width: 50%;
    z-index: 1;
}

@keyframes trucksIn {
    from {
        transform: translateX(260px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.quick-menu {
    max-width: 1180px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-menu .card {
    height: 110px;
    background: #d8e1e5;
    color: #0072bc;
    text-decoration: none;
    font-weight: 800;
    font-size: 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.quick-menu .card:hover {
    transform: translateY(-3px);
    background: #cddbe0;
}

.quick-menu .card span {
    display: block;
}

.quick-menu .card .card-icon {
    font-size: 32px;
}

footer {
    max-width: 1180px;
    margin: 70px auto 35px;
    color: #777;
    font-size: 13px;
}

/* Login */
.login-body {
    background: #eef3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-box {
    width: 360px;
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
}

.login-logo {
    width: 150px;
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-box button {
    width: 100%;
    padding: 13px;
    border: none;
    background: #0072bc;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.login-box a {
    display: block;
    margin-top: 18px;
    color: #0072bc;
    text-decoration: none;
}

.error {
    background: #ffe1e1;
    color: #b00000;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: bold;
}

/* Dashboard */
.dashboard {
    padding: 40px 180px;
}

.dashboard-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.dash-card {
    background: #d8e1e5;
    color: #0072bc;
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
}

@media (max-width: 900px) {
    .container,
    .hero-inner,
    .quick-menu,
    footer {
        max-width: 92%;
    }

    .hero {
        height: 330px;
    }

    .hero-trucks {
        width: 70%;
        left: -5%;
    }

    .hero-map {
        width: 60%;
        right: -5%;
    }

    .quick-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}
