.vehicle-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vehicle-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    cursor: pointer;
    transition: .2s;
}

.vehicle-card:hover {
    border-color: #1597d4;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.vehicle-card.selected {
    border: 2px solid #1597d4;
    background: #f5fbff;
}

.vehicle-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vehicle-info {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}

.vehicle-price {
    font-size: 24px;
    font-weight: 800;
}

.booking-details {
    margin-top: 25px;
    padding: 20px;
    border-radius: 14px;
    background: #f8fafc;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.booking-details label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.booking-details input,
.booking-details select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.continue-button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    border: 0;
    border-radius: 10px;
    background: #1597d4;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 700px) {
    .vehicle-grid,
    .booking-details-grid {
        grid-template-columns: 1fr;
    }
}
