.vp-booking-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d3436;
}

.vp-booking-container h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    color: #0984e3;
    font-weight: 700;
}

/* Progress Bar */
.vp-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.vp-progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #dfe6e9;
    z-index: 1;
    transform: translateY(-50%);
}

.vp-step-dot {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #dfe6e9;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #b2bec3;
    transition: all 0.3s ease;
}

.vp-step-dot.active {
    border-color: #0984e3;
    color: #0984e3;
    box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.1);
}

.vp-step-dot.completed {
    background: #0984e3;
    border-color: #0984e3;
    color: #fff;
}

/* Form Steps */
.vp-form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.vp-form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vp-form-step h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Inputs */
.vp-booking-container select,
.vp-booking-container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.vp-booking-container input:focus {
    outline: none;
    border-color: #0984e3;
}

/* Time Slots Grid */
.vp-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.vp-time-slot {
    padding: 10px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.vp-time-slot:hover {
    border-color: #0984e3;
    color: #0984e3;
}

.vp-time-slot.selected {
    background: #0984e3;
    color: #fff;
    border-color: #0984e3;
}

/* Navigation Buttons */
.vp-form-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.vp-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.vp-btn-next { background: #0984e3; color: white; }
.vp-btn-prev { background: #f1f2f6; color: #2d3436; }
.vp-btn:hover { opacity: 0.9; }

#vp-map {
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
