/* Solar Savings Wizard - Clean Modern Style */
.wizard-container {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dark Mode Support via parent context usually, but forcing light card for contrast or dark if mandated.
   Let's stick to a Glassmorphism Dark theme to fit the site?
   User asked for "Apple Style clean". Let's do a Dark Glass style that fits the site but is very clean.
*/

.wizard-container {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #f9fafb;
}

.wizard-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wizard-right {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wizard-title h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    /* Blue to Green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-title p {
    color: #9ca3af;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Input Group */
.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bill-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 6px;
    background: #374151;
    border-radius: 3px;
    outline: none;
}

.bill-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #34d399;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
    transition: transform 0.2s;
}

.bill-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.bill-value {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

/* Results */
.result-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-money {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.icon-time {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

/* Blue */
.icon-tree {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Orange/Amber */

.result-info h4 {
    margin: 0;
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}