/* Multi-step form styles */
.pms-multistep-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
}

.pms-multistep-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

.pms-multistep-nav .pms-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    cursor: default;
}

.pms-multistep-nav .pms-step.completed {
    cursor: pointer;
}

.pms-multistep-nav .pms-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pms-multistep-nav .pms-step .step-title {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pms-multistep-nav .pms-step.active .step-number {
    background: #6C5CE7;
    color: #fff;
    transform: scale(1.1);
}

.pms-multistep-nav .pms-step.active .step-title {
    color: #6C5CE7;
    font-weight: 600;
}

.pms-multistep-nav .pms-step.completed .step-number {
    background: #00b894;
    color: #fff;
}

.pms-multistep-nav .pms-step.completed .step-title {
    color: #00b894;
}

/* Form steps */
.pms-form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

/* Step buttons */
.pms-step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.pms-prev-step,
.pms-next-step {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pms-prev-step {
    background: #f0f0f0;
    color: #333;
}

.pms-prev-step:hover {
    background: #e0e0e0;
}

.pms-next-step {
    background: #6C5CE7;
    color: #fff;
}

.pms-next-step:hover {
    background: #5f4fd1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.pms-form-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background: #00b894;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pms-form-submit:hover {
    background: #00a383;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

/* Error styling */
input.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pms-multistep-nav .pms-step .step-title {
        font-size: 12px;
    }
    
    .pms-multistep-nav .pms-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .pms-step-buttons {
        flex-direction: column;
    }
}