/* LUXURY LIMO BOOKING FORM */

.luxury-booking-wrapper {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.booking-main {
    max-width: 1000px;
    margin: auto;
    background: #111;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #333;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

/* HEADINGS */

.booking-main h1 {
    color: gold;
    font-size: 42px;
    margin-bottom: 10px;
}

.booking-main h2 {
    color: gold;
    margin-bottom: 25px;
    font-size: 30px;
}

/* PROGRESS BAR */

.progress-bar {
    width: 100%;
    height: 12px;
    background: #222;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: gold;
    transition: 0.4s ease;
}

/* STEP SYSTEM */

.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

/* INPUTS */

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #1c1c1c;
    border: 1px solid #444;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: gold;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* GRID */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* VEHICLE CARD */

.vehicle-card {
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s ease;
}

.vehicle-card:hover {
    border-color: gold;
    transform: translateY(-5px);
}

.vehicle-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
}

.vehicle-card p {
    color: gold;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* BUTTONS */

button {
    background: gold;
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}

button:hover {
    background: #ffdd33;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* NAVIGATION */

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* SUMMARY */

.summary-box {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #ddd;
}

.summary-row.total {
    font-size: 28px;
    font-weight: bold;
    color: gold;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
}

/* CONFIRM BUTTON */

.confirm-btn {
    width: 100%;
    margin-top: 30px;
    font-size: 18px;
    padding: 18px;
}

/* ANIMATION */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .booking-main {
        padding: 25px;
    }

    .booking-main h1 {
        font-size: 32px;
    }

    .booking-main h2 {
        font-size: 24px;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 15px;
    }

    button {
        width: 100%;
    }

}