/* NDIS Business Form Styles */
.ndis-step-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ndis-field-group {
    margin-bottom: 25px;
}

.ndis-field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}

.ndis-req {
    color: #ef4444;
}

.ndis-input-wrap,
.ndis-select-wrap {
    position: relative;
}

.ndis-input,
.ndis-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1f36;
    background: #ffffff;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ndis-input.with-icon,
.ndis-select.with-icon {
    padding-left: 45px;
}

.ndis-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ndis-input:focus,
.ndis-select:focus {
    border-color: #ffaf42;
    box-shadow: 0 0 0 4px rgba(255, 175, 66, 0.1);
}

.ndis-input::placeholder {
    color: #94a3b8;
}

.ndis-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1f36;
    background: #ffffff;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
}

.ndis-textarea:focus {
    border-color: #ffaf42;
    box-shadow: 0 0 0 4px rgba(255, 175, 66, 0.1);
}

.ndis-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}

.ndis-btn-continue {
    background: #ffaf42;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 175, 66, 0.2);
}

.ndis-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 175, 66, 0.3);
}

.ndis-wizard-wrap {
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ndis-step-box {
        padding: 20px;
    }
}

/* Custom Select Dropdown */
.ndis-custom-select-container {
    position: relative;
    width: 100%;
}
.ndis-custom-select-trigger {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    user-select: none;
}
.ndis-custom-select-trigger.open, .ndis-custom-select-trigger:focus {
    border-color: #ffaf42;
    box-shadow: 0 0 0 4px rgba(255, 175, 66, 0.1);
}
.ndis-custom-select-trigger .arrow {
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s;
}
.ndis-custom-select-trigger.open .arrow {
    transform: rotate(180deg);
}
.ndis-custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}
.ndis-custom-options.open {
    display: block;
}
.ndis-custom-option {
    padding: 12px 18px;
    font-size: 15px;
    color: #1a1f36;
    cursor: pointer;
    transition: background 0.2s;
}
.ndis-custom-option:hover {
    background-color: #ffaf42;
    color: #ffffff;
}
.ndis-custom-option.selected {
    background-color: rgba(255, 175, 66, 0.1);
    color: #1a1f36;
    font-weight: 600;
}
.ndis-custom-option.selected:hover {
    background-color: #ffaf42;
    color: #ffffff;
}
