/*=====================================================
HVAC COST ESTIMATOR
HVACSenior.com
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.cost-page{
    background:#f4f8ff;
    padding:20px 0 20px;
}

.cost-container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

/*=====================================================
Breadcrumb
=====================================================*/

.cost-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

    font-size:14px;

    color:#64748b;

}

.cost-breadcrumb a{

    text-decoration:none;

    color:#2563eb;

}

.cost-breadcrumb strong{

    color:#1e293b;

}

/*=====================================================
Hero
=====================================================*/

.cost-hero{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #dbe7f8;

    box-shadow:0 15px 45px rgba(15,23,42,.08);

    margin-bottom:28px;

}

.hero-left{

    width:60%;

    display:flex;

    gap:28px;

    padding:20px;

}

.hero-icon{

    width:100px;

    height:100px;

    border-radius:24px;

    background:linear-gradient(135deg,#3772ff,#1d4ed8);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.hero-icon i{

    color:#fff;

    font-size:72px;

}

.hero-content h1{

    font-size:40px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

}

.hero-content p{

    font-size:14px;

    line-height:1.0;

    color:#64748b;

    max-width:700px;

}

/*=====================================================
Hero Features
=====================================================*/

.hero-features{

    display:flex;

    gap:40px;

    margin-top:35px;

}

.hero-feature{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.hero-feature i{

    width:35px;

    height:42px;

    border-radius:50%;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

.hero-feature strong{

    display:block;

    font-size:18px;

    color:#0f172a;

    margin-bottom:3px;

}

.hero-feature small{

    color:#64748b;

    font-size:14px;

}

/*=====================================================
Image
=====================================================*/

.hero-right{

    width:50%;

    height:100%;

}

.hero-right img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*=====================================================
Print Button
=====================================================*/

.print-btn{

    position:absolute;

    top:25px;

    right:25px;

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

    font-size:15px;

}

/*=====================================================
Grid
=====================================================*/

.cost-grid{

    display:grid;

    grid-template-columns:1.2fr 1.1fr .8fr;

    gap:24px;

    align-items:start;

}
/*=====================================================
Cards
=====================================================*/

.card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #dce7f5;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.card-header{

    display:flex;

    align-items:center;

    gap:14px;

    padding:10px 10px;

    color:#fff;

}

.blue-header{

    background:linear-gradient(90deg,#2563eb,#1d4ed8);

}

.step-badge{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#fff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.card-header h3{

    font-size:10px;

}

.card-body{

    padding:10px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:700;

    color:#1f2937;

}

select{

    width:100%;

    height:48px;

    border:1px solid #dbe4ef;

    border-radius:10px;

    padding:0 14px;

    background:#fff;

    font-size:15px;

}

.input-unit{

    display:flex;

    border:1px solid #dbe4ef;

    border-radius:10px;

    overflow:hidden;

}

.input-unit input{

    flex:1;

    border:none;

    padding:13px;

    outline:none;

}

.input-unit span{

    width:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f8fafc;

    border-left:1px solid #dbe4ef;

}

.toggle-group{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

}

.toggle-option{

    border:2px solid #dbe4ef;

    border-radius:10px;

    padding:14px;

    text-align:center;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.toggle-option input{

    display:none;

}

.toggle-option.active{

    background:#2563eb;

    color:#fff;

    border-color:#2563eb;

}

.calculate-cost{

    width:100%;

    border:none;

    border-radius:10px;

    background:linear-gradient(90deg,#2563eb,#1d4ed8);

    color:#fff;

    padding:16px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

}

.secure-note{

    margin-top:14px;

    text-align:center;

    color:#64748b;

    font-size:13px;

}
/*=====================================================
CENTER ESTIMATE PANEL
=====================================================*/

.green-header{

    background:linear-gradient(90deg,#16a34a,#22c55e);

}

.estimate-summary{

    text-align:center;

    margin-bottom:20px;

}

.estimate-label{

    font-size:20px;

    color:#475569;

    margin-bottom:5px;

}

.estimate-price{

    font-size:60px;

    color:#16a34a;

    font-weight:800;

    line-height:1;

    margin-bottom:6px;

}

.estimate-range{

    color:#64748b;

    font-size:20px;

}

.estimate-range strong{

    color:#16a34a;

}

.breakdown-card{

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:10px;

    margin-bottom:10px;

}

.breakdown-card h4{

    margin-bottom:10px;

    font-size:10px;

}

.breakdown-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:14px;

    font-size:17px;

}

.breakdown-total{

    display:flex;

    justify-content:space-between;

    font-size:20px;

    font-weight:700;

    color:#16a34a;

    margin-top:10px;

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:10px;

}

.info-box{

    border:1px solid #e5e7eb;

    border-radius:12px;

    padding:10px;

    text-align:center;

}

.info-title{

    color:#64748b;

    font-size:14px;

}

.info-value{

    font-size:20px;

    font-weight:700;

    color:#2563eb;

    margin:10px 0;

}

.info-box small{

    color:#64748b;

}

.zip-box{

    background:#f0fdf4;

    border:1px solid #bbf7d0;

    border-radius:14px;

    padding:20px;

    margin-top:25px;

}

.zip-row{

    display:flex;

    gap:10px;

    margin-top:15px;

}

.zip-row input{

    flex:1;

    height:46px;

    border:1px solid #dbe4ef;

    border-radius:10px;

    padding:0 15px;

}

.zip-row button{

    border:none;

    padding:0 22px;

    border-radius:10px;

    background:#16a34a;

    color:#fff;

    font-weight:700;

    cursor:pointer;

}

.estimate-note{

    display:block;

    margin-top:18px;

    color:#64748b;

}
/*=====================================================
RIGHT SIDEBAR
=====================================================*/

.sidebar{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.side-card{

    padding:22px;

}

.side-title{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:22px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:20px;

}

.side-title i{

    color:#2563eb;

}

.side-list{

    list-style:none;

    padding:0;

    margin:0;

}

.side-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:12px 0;

    font-size:16px;

    color:#475569;

    border-bottom:1px solid #eef2f7;

}

.side-list li:last-child{

    border-bottom:none;

}

.side-list i{

    color:#22c55e;

    margin-top:2px;

}

/*=====================================================
Contractor Card
=====================================================*/

.contractor-card{

    text-align:center;

    padding:10px;

}

.contractor-icon{

    width:40px;

    height:40px;

    margin:auto;

    margin-bottom:10px;

    border-radius:50%;

    background:#eff6ff;

    display:flex;

    justify-content:center;

    align-items:center;

}

.contractor-icon i{

    font-size:20px;

    color:#2563eb;

}

.contractor-card h3{

    font-size:18px;

    color:#0f172a;

    margin-bottom:10px;

}

.contractor-card p{

    color:#64748b;

    line-height:1.7;

    margin-bottom:15px;

}

.quote-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    width:100%;

    padding:16px;

    border-radius:12px;

    background:linear-gradient(90deg,#2563eb,#1d4ed8);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    font-size:17px;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-2px);

}

.verified{

    margin-top:22px;

    color:#2563eb;

    font-size:15px;

    font-weight:600;

}
/*=====================================================
BOTTOM GUIDE
=====================================================*/

.cost-guide{

    margin-top:30px;

}

.section-heading{

    text-align:center;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:30px;

    color:#0f172a;

    margin-bottom:12px;

}

.section-heading p{

    color:#64748b;

    font-size:10px;

}

.guide-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.guide-item{

    background:#fff;

    border-radius:16px;

    padding:22px;

    border:1px solid #e2e8f0;

    text-align:center;

    transition:.3s;

    min-height:290px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.guide-item:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.guide-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.guide-item h3{

    margin-bottom:10px;

    color:#0f172a;

}

.guide-item p{

    color:#64748b;

    line-height:1.0;

}

/*=====================================================
BOTTOM FEATURES
=====================================================*/

.bottom-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
}

.feature{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    border:1px solid #e2e8f0;

}

.feature i{

    font-size:34px;

    color:#2563eb;

    margin-bottom:16px;

}

.feature h4{

    font-size:22px;

    margin-bottom:10px;

}

.feature p{

    color:#64748b;

    line-height:1.7;

}
/*=====================================================
RESPONSIVE DESIGN
=====================================================*/

/* Large Tablets */

@media (max-width: 1200px){

    .cost-grid{
        grid-template-columns:1fr;
    }

    .sidebar{
        order:3;
    }

    .estimate-card{
        order:2;
    }

    .project-card{
        order:1;
    }

    .guide-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bottom-features{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:46px;
    }

}

/* Tablets */

@media (max-width:991px){

    .cost-page{
        padding:20px 0 40px;
    }

    .cost-container{
        width:94%;
    }

    .cost-hero{
        flex-direction:column;
    }

    .hero-left{
        width:100%;
        padding:30px;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .hero-right{
        width:100%;
        height:320px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-features{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .print-btn{
        position:static;
        display:inline-flex;
        margin:20px;
        align-items:center;
        gap:8px;
    }

    .guide-grid{
        grid-template-columns:1fr;
    }

    .bottom-features{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media (max-width:768px){

    .hero-left{
        padding:25px;
    }

    .hero-icon{
        width:90px;
        height:90px;
    }

    .hero-icon i{
        font-size:42px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-features{
        flex-direction:column;
        align-items:flex-start;
        width:100%;
    }

    .card-body{
        padding:18px;
    }

    .card-header{
        padding:16px;
    }

    .card-header h3{
        font-size:20px;
    }

    .estimate-price{
        font-size:48px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .zip-row{
        flex-direction:column;
    }

    .zip-row button{
        width:100%;
        height:48px;
    }

    .toggle-group{
        grid-template-columns:1fr;
    }

    .input-unit{
        flex-direction:column;
    }

    .input-unit span{
        width:100%;
        border-left:none;
        border-top:1px solid #dbe4ef;
        height:42px;
    }

    .guide-item{
        padding:22px;
    }

    .feature{
        padding:22px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:16px;
    }

}

/* Small Phones */

@media (max-width:480px){

    .cost-container{
        width:95%;
    }

    .hero-left{
        padding:20px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-icon{
        width:75px;
        height:75px;
    }

    .hero-icon i{
        font-size:34px;
    }

    .estimate-price{
        font-size:40px;
    }

    .estimate-range{
        font-size:15px;
    }

    .breakdown-row{
        font-size:15px;
    }

    .breakdown-total{
        font-size:18px;
    }

    .info-value{
        font-size:24px;
    }

    .guide-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .guide-item h3{
        font-size:20px;
    }

    .contractor-card h3{
        font-size:22px;
    }

    .quote-btn{
        font-size:16px;
        padding:14px;
    }

    .feature h4{
        font-size:18px;
    }

}
@media (max-width:480px){

    .report-card{
        overflow-x:auto;
    }

    .report-card table{
        min-width:320px;
    }

}