.solar-calculator-pro-wrapper {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

.scp-header {
    background: #00384f;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.scp-logo {
    font-size: 24px;
    font-weight: 700;
    color: #b3cc2b;
    letter-spacing: -0.5px;
}

.scp-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
    min-height: calc(100vh - 80px);
}

.scp-left-panel {
    background: white;
    padding: 16px;
    box-shadow: 2px 0 8px rgba(0,56,79,0.1);
}

.scp-right-panel {
    background: #f5f5f5;
    padding: 24px 28px;
    overflow-y: auto;
}

.scp-input-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.scp-input-card:hover {
    border-color: #b3cc2b;
}

.scp-input-card.error {
    border-color: #ff4444;
    background: #fff5f5;
}

.scp-error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.scp-input-card.error .scp-error-message {
    display: block;
}

.scp-section-label {
    font-size: 14px;
    font-weight: 600;
    color: #00384f;
    margin-bottom: 10px;
    display: block;
}

.scp-state-selector select {
    width: 100%;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
    color: #00384f;
    font-weight: 500;
}

.scp-state-selector select:focus {
    outline: none;
    border-color: #b3cc2b;
}

.scp-info-badge {
    display: inline-block;
    background: #b3cc2b;
    color: #00384f;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

.scp-radio-group {
    display: flex;
    gap: 15px;
}

.scp-radio-option {
    flex: 1;
}

.scp-radio-option input[type="radio"] {
    display: none;
}

.scp-radio-option label {
    display: block;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    color: #00384f;
}

.scp-radio-option label small {
    color: #666;
    font-size: 11px;
}

.scp-radio-option input[type="radio"]:checked + label {
    border-color: #b3cc2b;
    background: #b3cc2b;
    color: #00384f;
    font-weight: 700;
}

.scp-slider-container {
    padding: 10px 0;
}

.scp-slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.scp-slider-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scp-value-display {
    font-size: 20px;
    font-weight: 700;
    color: #00384f;
}

.scp-unit {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e5e5e5;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b3cc2b;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b3cc2b;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.scp-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scp-input-icon {
    font-size: 24px;
    color: #b3cc2b;
}

.scp-input-field {
    flex: 1;
    display: flex;
    align-items: center;
}

.scp-input-field input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-align: right;
    transition: all 0.3s;
    color: #00384f;
    font-weight: 600;
}

.scp-input-field input:focus {
    outline: none;
    border-color: #b3cc2b;
}

.scp-input-field .currency {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #00384f;
}

.scp-area-selector {
    display: flex;
    gap: 10px;
}

.scp-area-option {
    flex: 1;
}

.scp-area-option input[type="radio"] {
    display: none;
}

.scp-area-option label {
    display: block;
    padding: 10px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #00384f;
}

.scp-area-option input[type="radio"]:checked + label {
    border-color: #b3cc2b;
    background: #b3cc2b;
    color: #00384f;
    font-weight: 700;
}

.scp-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
}

.scp-generate-btn {
    width: 100%;
    padding: 16px;
    background: #b3cc2b;
    color: #00384f;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.scp-generate-btn:hover {
    background: #a3bc1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179,204,43,0.3);
}

.scp-generate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.scp-journey-steps {
    margin-top: 20px;
    text-align: center;
}

.scp-journey-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.scp-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.scp-step {
    text-align: center;
}

.scp-step-circle {
    width: 60px;
    height: 60px;
    border: 2px dashed #b3cc2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 24px;
}

.scp-step-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.scp-step-number {
    font-size: 10px;
    color: #999;
    margin-bottom: 3px;
    font-weight: 600;
}

.scp-dotted-line {
    flex: 1;
    height: 2px;
    border-top: 2px dotted #ccc;
    margin: 0 10px;
    align-self: center;
    margin-bottom: 50px;
}

.scp-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.scp-tab {
    flex: 1;
    padding: 15px;
    background: #e5e5e5;
    border: none;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.scp-tab:first-child {
    border-radius: 10px 0 0 10px;
}

.scp-tab:last-child {
    border-radius: 0 10px 10px 0;
}

.scp-tab.active {
    background: #00384f !important;
    color: #ffffff;
}

.scp-results-header {
    font-size: 28px;
    font-weight: 700;
    color: #00384f;
    margin-bottom: 25px;
}

.scp-recommendation-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.scp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.scp-grid-2-1 {
    grid-template-columns: 1fr 1fr;
}

.scp-rec-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s;
    border: 2px solid #e5e5e5;
}

.scp-rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,56,79,0.15);
    border-color: #b3cc2b;
}

.scp-rec-card .scp-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.scp-rec-card .scp-content {
    flex: 1;
}

.scp-rec-card .scp-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.scp-rec-card .scp-value {
    font-size: 36px;
    font-weight: 700;
    color: #00384f;
    line-height: 1;
}

.scp-rec-card .scp-subvalue {
    font-size: 18px;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

.scp-subsidy-card {
    background: linear-gradient(135deg, #b3cc2b 0%, #a3bc1b 100%);
    color: #00384f;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #a3bc1b;
}

.scp-subsidy-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.scp-subsidy-amount {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.scp-subsidy-note {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 600;
}

.scp-system-details {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e5e5e5;
}

.scp-system-details h3 {
    font-size: 18px;
    color: #00384f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.scp-system-details .scp-icon {
    font-size: 80px;
}

.scp-detail-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
}

.scp-detail-item:last-child {
    border-bottom: none;
}

.scp-detail-item::before {
    content: '●';
    color: #b3cc2b;
    font-size: 12px;
    margin-right: 12px;
}

.scp-detail-label {
    color: #666;
    font-weight: 500;
}

.scp-detail-value {
    font-weight: 700;
    margin-left: 8px;
    color: #00384f;
}

.scp-disclaimer {
    font-size: 12px;
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    font-weight: 400;
}

.scp-cta-button {
    width: 100%;
    padding: 18px;
    background: #00384f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: capitalize;
    margin-top: 15px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.scp-cta-button:hover {
    background: #00263a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,56,79,0.3);
}

.scp-cta-button.scp-secondary {
    background: #b3cc2b;
    color: #00384f;
}

.scp-cta-button.scp-secondary:hover {
    background: #a3bc1b;
}

.scp-off-grid-link {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.scp-off-grid-link a {
    color: #b3cc2b;
    text-decoration: none;
    font-weight: 700;
}

.scp-off-grid-link a:hover {
    color: #00384f;
}

.scp-tab-content {
    display: none;
}

.scp-tab-content.active {
    display: block;
}

.scp-savings-breakdown {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px solid #e5e5e5;
}

.scp-savings-breakdown h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #00384f;
    font-weight: 700;
}

.scp-savings-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
}

.scp-savings-item span:first-child {
    color: #666;
}

.scp-savings-item span:last-child {
    color: #00384f;
    font-weight: 700;
}

.scp-savings-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .scp-container {
        grid-template-columns: 1fr;
    }
    
    .scp-left-panel {
        max-height: none;
    }
    
    .scp-grid-3, .scp-grid-2-1 {
        grid-template-columns: 1fr;
    }
    
    .scp-rec-card {
        flex-direction: column;
        text-align: center;
    }
    
    .scp-steps {
        gap: 20px;
    }
    
    .scp-dotted-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .scp-header {
        padding: 15px 20px;
    }
    
    .scp-logo {
        font-size: 20px;
    }
    
    .scp-left-panel, .scp-right-panel {
        padding: 20px;
    }
    
    .scp-rec-card .scp-icon {
        font-size: 60px;
    }
    
    .scp-rec-card .scp-value {
        font-size: 28px;
    }
}
