/*body {
    font-family: Arial;
    margin: 0;
    background: #f5f5f5;
}*/

.main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* LEFT FORM */
.left {
    width: 40%;
}

/* RIGHT MAP */
.right {
    width: 60%;
}

/* MAP STYLE */
#map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

/* RESULT BOX */
.result {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .main {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    /* Move map below form */
    .right {
        order: 2;
    }

    .left {
        order: 1;
    }

    /* Smaller map for mobile */
    #map {
        height: 250px;
    }

    /* Better spacing */
    .container {
        padding: 10px;
    }
}


.container {
    max-width: 100%;
    margin: auto;
    padding: 15px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.step {
    flex: 1;
    padding: 10px;
    background: #ddd;
    text-align: center;
}

.step.active {
    background: orange;
    color: white;
}

.box {
    background: #fff;
    /*padding: 15px;*/
    display: none;
}

.box.active {
    display: block;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

@media(max-width:600px) {
    .steps {
        flex-direction: column;
    }
}

.nav-btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.nav-btns button {
    flex: 1;
}

.prev-btn {
    background: #ccc;
}

.next-btn {
    background: orange;
    color: white;
}

.vehicle-card {
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

/*.vehicle-card:hover {
    transform: scale(1.05);
}

.vehicle-card.active {
    border: 2px solid orange;
    background: #fff8e1;
}*/

/* Active vehicle highlight */
.vehicle-card.active {
    border: 2px solid #FFA500 !important;
    background: #fff8e1 !important;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,165,0,0.5);
}

/* Smooth hover */
.vehicle-card {
    cursor: pointer;
    transition: 0.3s;
}

.vehicle-card:hover {
    transform: scale(1.02);
}


.summary-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.summary-item span {
    color: #555;
}

.summary-item b {
    color: #000;
}

.summary-total {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #FFA500;
}