/* Lalu Daud Client Portal & Form CSS */
.ldn-client-wrap, .ldn-form-container, .ldn-calculator-wrap {
    max-width: 1000px;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
}

.ldn-client-wrap *, .ldn-form-container *, .ldn-calculator-wrap * {
    box-sizing: border-box;
}

.ldn-form-card, .ldn-case-card, .ldn-calc-body {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.ldn-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width: 640px) {
    .ldn-grid-2 { grid-template-columns: 1fr; }
}

.ldn-field-group {
    margin-bottom: 16px;
}

.ldn-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a192f;
    font-size: 14px;
}

.ldn-field-group input, .ldn-field-group select, .ldn-field-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
}

.ldn-btn-submit-primary, .ldn-btn-primary {
    background: #0a192f;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    transition: all 0.2s;
}

.ldn-btn-submit-primary:hover, .ldn-btn-primary:hover {
    background: #1e293b;
    color: #ffffff;
}

/* 6-Stage Progress Bar */
.ldn-progress-timeline {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.ldn-step-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.ldn-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ldn-step-item.is-done .ldn-step-dot {
    background: #10b981;
    color: #ffffff;
}

.ldn-step-item.is-active .ldn-step-dot {
    background: #0a192f;
    color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.ldn-step-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.ldn-step-item.is-active .ldn-step-label {
    color: #0a192f;
}
