.vet-abs-booking-form {
    max-width: 640px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.progress-container { margin-bottom: 30px; }
.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.progress-bar::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: #e5e5e5;
    z-index: 1;
}
.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #e5e5e5;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
    transition: all 0.3s;
}
.step.active span { background: #e60000; box-shadow: 0 0 0 4px rgba(230,0,0,0.2); }
.step p { margin: 8px 0 0; font-size: 13px; font-weight: 600; color: #555; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #e60000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.15);
}

button {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
button:hover { background: #c40000; transform: translateY(-1px); }

.prev-btn { background: #666; }
.prev-btn:hover { background: #555; }

#form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
}
#form-message .success { background: #d4edda; color: #155724; }
#form-message .error { background: #f8d7da; color: #721c24; }

/* Responsive */
@media (max-width: 600px) {
    .vet-abs-booking-form { margin: 20px 10px; padding: 20px; }
    .progress-bar { flex-direction: column; gap: 20px; }
    .progress-bar::before { display: none; }
}