/* /Components/Pages/Home.razor.rz.scp.css */
 
/* /Components/Pages/LandingPages/Blocks/LP_Calc_CTA.razor.rz.scp.css */

.cta[b-kbmvv3hbz3] {
    background: linear-gradient(rgba(0, 0,0, 0.8), rgba(0, 10,0, 0.8)), url("/assets/img/counter-bg.jpg") center center;
    background-size: cover;
    padding: 30px 30px;
    margin: 0;
}

    .cta h3[b-kbmvv3hbz3] {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .cta p[b-kbmvv3hbz3] {
        color: white;
    }

    .cta .cta-btn[b-kbmvv3hbz3] {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 2px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 4px;
        transition: 0.5s;
        margin: 10px;
        color: #333;
        color: #fff;
        background: azure;
        background: #4095e8;
        text-decoration: none;
    }

        .cta .cta-btn:hover[b-kbmvv3hbz3] {
            background: #008bd1;
        }

@media (min-width: 1024px) {
    .cta[b-kbmvv3hbz3] {
        background-attachment: fixed;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container[b-kbmvv3hbz3] {
        display: flex;
        align-items: center;
        justify-content: center;
  
    }
}
/* /Components/Pages/LandingPages/PricingCalculator/PricingCalculator.razor.rz.scp.css */

/* === BACKGROUND IMAGE & INTRO SECTION === */
.calculator-background[b-r0zarx3ejt] {
    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-r0zarx3ejt]::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(255, 255, 255, 0);
        z-index: 0;
    }

    .calculator-background *[b-r0zarx3ejt] {
        position: relative;
        z-index: 1;
    }

/* Add space below intro text so calculator doesn't cover it on small screens */
.intro-text[b-r0zarx3ejt] {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .intro-text[b-r0zarx3ejt] {
        padding-bottom: 180px;
    }
}

/* === FLOATING CALCULATOR SECTION === */
.calculator[b-r0zarx3ejt] {
    margin-top: -150px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .calculator[b-r0zarx3ejt] {
        margin-top: -80px;
    }
}

.calculator-container[b-r0zarx3ejt] {
    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-r0zarx3ejt] {
        flex-direction: row;
        gap: 4rem;
    }
}

/* === LEFT / RIGHT COLUMNS === */
.calculator-left[b-r0zarx3ejt] {
    flex: 2;
}

.calculator-right[b-r0zarx3ejt] {
    flex: 3;
}

    .calculator-left h2[b-r0zarx3ejt],
    .calculator-right h2[b-r0zarx3ejt] {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.calculator-left p[b-r0zarx3ejt] {
    margin-bottom: 1.25rem;
}

.calculator-left label[b-r0zarx3ejt] {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.calculator-left select[b-r0zarx3ejt],
.email-input[b-r0zarx3ejt] {
    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-r0zarx3ejt] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* === ESTIMATE DISPLAY === */
.estimate-values[b-r0zarx3ejt] {
    margin-bottom: 1.5rem;
}

    .estimate-values .row[b-r0zarx3ejt] {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

.comparison-section[b-r0zarx3ejt] {
    margin: 1.5rem 0;
}

    .comparison-section ul[b-r0zarx3ejt] {
        padding-left: 1.25rem;
        margin-top: 0.5rem;
    }

    .comparison-section li[b-r0zarx3ejt] {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        color: #4b5563;
    }

/* === EMAIL FORM === */
.email-cta-box[b-r0zarx3ejt] {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-direction: row;
    width: 100%;
}

.email-submit-btn[b-r0zarx3ejt] {
    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-r0zarx3ejt] {
        background-color: #c2410c;
    }

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 767px) {
    .calculator-background[b-r0zarx3ejt] {
        padding-bottom: 250px;
        min-height: 100vh;
    }

    .email-cta-box[b-r0zarx3ejt] {
        flex-direction: column;
    }

    .email-submit-btn[b-r0zarx3ejt] {
        width: 100%;
    }
}
/* /Components/Pages/LandingPages/PricingCalculator/SupportLevelDescriptions.razor.rz.scp.css */
.support[b-vxr6v0lnan]  {
    margin-top: 1rem;
  
    color: #333;
    font-size: smaller;
    padding: 10px;
    
}

/*.bronze {
    border-bottom: sandybrown 2px solid;
}

.silver {
    border-bottom: silver 2px solid;
}

.gold {
    border-bottom: yellow 2px solid;
}
.platinum {
    border-bottom: aliceblue 3px solid;
}
*/
