/* =============== GLOBAL FORM STYLING =============== */
.form-box {
    border-radius: 10px;
    background: #fff;
}

.form-label {
    font-weight: 600;
    color: #444;
}

/* =============== PRICE CARD =============== */
.price-card {
    border-left: 4px solid #007bff;
    border-radius: 10px;
}

.price-card h5 {
    font-weight: 700;
}

.total h4 {
    font-weight: 700;
}

/* =============== STEPPER / WIZARD =============== */
.stepper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.stepper .step {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: #e9ecef;
    font-weight: 600;
    color: #777;
    transition: 0.3s;
}

.stepper .step.active {
    background: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.stepper .step.completed {
    background: #28a745;
    color: #fff;
}

@media (max-width: 768px) {
    .stepper {
        flex-direction: column;
    }
}

/* Hover buttons */
.btn-primary {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}