/* /Components/Pages/Home.razor.rz.scp.css */
 
/* /Components/Pages/LandingPages/PricingCalculator.razor.rz.scp.css */
/* === BACKGROUND IMAGE & INTRO SECTION === */
.calculator-background[b-bq3lgn3p4j] {
    background-image: url('assets/lp-img/hero-background2.jpg');
    background-size: cover;
    background-position: center -150px;
    background-repeat: no-repeat;
    position: relative;
    
    padding-bottom: 350px; /* space behind the floating calculator */
    min-height: 500px;
}

    .calculator-background[b-bq3lgn3p4j]::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(255, 255, 255, 0);
        z-index: 0;
    }

    .calculator-background *[b-bq3lgn3p4j] {
        position: relative;
        z-index: 1;
    }

/* Add space below intro text so calculator doesn't cover it on small screens */
.intro-text[b-bq3lgn3p4j] {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .intro-text[b-bq3lgn3p4j] {
        padding-bottom: 180px;
    }
}

/* === FLOATING CALCULATOR SECTION === */
.calculator[b-bq3lgn3p4j] {
    margin-top: -150px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .calculator[b-bq3lgn3p4j] {
        margin-top: -80px;
    }
}

.calculator-container[b-bq3lgn3p4j] {
    max-width: 960px;
    width: 100%;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .calculator-container[b-bq3lgn3p4j] {
        flex-direction: row;
        gap: 4rem;
    }
}

/* === LEFT / RIGHT COLUMNS === */
.calculator-left[b-bq3lgn3p4j] {
    flex: 1;
}

.calculator-right[b-bq3lgn3p4j] {
    flex: 2;
}

    .calculator-left h2[b-bq3lgn3p4j],
    .calculator-right h2[b-bq3lgn3p4j] {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.calculator-left p[b-bq3lgn3p4j] {
    margin-bottom: 1.25rem;
}

.calculator-left label[b-bq3lgn3p4j] {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.calculator-left select[b-bq3lgn3p4j],
.email-input[b-bq3lgn3p4j] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    font-size: 1rem;
    box-sizing: border-box;
}

/* === CHECKBOX GROUP === */
.checkbox-group[b-bq3lgn3p4j] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* === ESTIMATE DISPLAY === */
.estimate-values[b-bq3lgn3p4j] {
    margin-bottom: 1.5rem;
}

    .estimate-values .row[b-bq3lgn3p4j] {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

.comparison-section[b-bq3lgn3p4j] {
    margin: 1.5rem 0;
}

    .comparison-section ul[b-bq3lgn3p4j] {
        padding-left: 1.25rem;
        margin-top: 0.5rem;
    }

    .comparison-section li[b-bq3lgn3p4j] {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        color: #4b5563;
    }

/* === EMAIL FORM === */
.email-cta-box[b-bq3lgn3p4j] {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-direction: row;
}

.email-submit-btn[b-bq3lgn3p4j] {
    padding: 0.5rem 1rem;
    background-color: #ea580c;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

    .email-submit-btn:hover[b-bq3lgn3p4j] {
        background-color: #c2410c;
    }

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 767px) {
    .calculator-background[b-bq3lgn3p4j] {
        padding-bottom: 250px;
        min-height: 100vh;
    }

    .email-cta-box[b-bq3lgn3p4j] {
        flex-direction: column;
    }

    .email-submit-btn[b-bq3lgn3p4j] {
        width: 100%;
    }
}
