/* Import Albert Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
#solar-calculator {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Albert Sans', sans-serif;
    //background: white;
}

/* Calculator Wrapper */
.calculator-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    min-height: 600px;
}

/* Form Section - Left Column */
.form-section {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Part 1: Title Section - No box, centered text */
.title-section {
    padding: 0px 0 10px 0;
    text-align: left;
    /*margin-bottom: 20px;*/
}

.title-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
    font-family: 'Albert Sans', sans-serif;
}
.title-section h2 span{color: #ED721D;}

/* Part 2: Form Content - With box styling */
.form-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.2;
    font-family: 'Albert Sans', sans-serif;
    text-align: left;
}

.consultation-text {
    font-size: 16px;
    color: #000;
    margin: 0 0 30px 0;
    font-weight: 400;
    font-family: 'Albert Sans', sans-serif;
    text-align: left;
}

.form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Albert Sans', sans-serif;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
}

.bill-display {
    text-align: center;
    margin: 15px 0;
}

.bill-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    background: white;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid #e0e0e0;
    font-family: 'Albert Sans', sans-serif;
}

.slider-container {
    margin-top: 15px;
}

.bill-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.bill-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bill-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Part 3: Company Info Box - No box, centered text */
.company-info-box {
    padding: 10px 0;
    text-align: center;
}

.company-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
    font-family: 'Albert Sans', sans-serif;
}

.company-info-box span {
    color: #ED721D;
    font-weight: 700;
}

/* Results Section - Right Column */
.results-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.savings-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

/* Updated Title Styles - Left Aligned */
.card-title-left {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: left;
    font-family: 'Albert Sans', sans-serif;
}

.savings-details {
    margin-bottom: 20px;
}

.savings-row {
    display: flex;
    gap: 20px;
}

.savings-item {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.savings-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Albert Sans', sans-serif;
}

.savings-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Albert Sans', sans-serif;
}

.info-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .calculator-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .form-section,
    .results-section {
        width: 100%;
    }

    .title-section h1 {
        font-size: 24px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .savings-row {
        flex-direction: column;
        gap: 10px;
    }

    .company-info-box h3 {
        font-size: 18px;
    }

    .card-title-left {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #solar-calculator {
        padding: 15px;
    }

    .form-content {
        padding: 20px;
    }

    .savings-card {
        padding: 20px;
    }

    .savings-item {
        padding: 15px 10px;
    }

    .savings-value {
        font-size: 18px;
    }
}