/*====================================================
HVAC TOOLS SECTION
====================================================*/

.hvac-tools-section{
    padding:30px 10px 10px;
}

.hvac-tools-container{
    max-width:1280px;
    margin:auto;
}

.hvac-tools-header{
    text-align:center;
    margin-bottom:35px;
}

.hvac-tools-subtitle{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#0B4BA5;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hvac-tools-header h2{
    font-size:48px;
    font-weight:800;
    color:#0F172A;
    margin:0 0 18px;
}

.hvac-tools-header p{
    max-width:760px;
    margin:auto;
    color:#64748B;
    font-size:20px;
    line-height:1.7;
}

/*====================================================
GRID
====================================================*/

.hvac-tools-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/*====================================================
CARD
====================================================*/

.hvac-tool-card{

    background:#fff;
    border-radius:20px;
    padding:30px 25px;

    border:1px solid #E5ECF5;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

    text-align:center;

    display:flex;
    flex-direction:column;
}

.hvac-tool-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*====================================================
ICON
====================================================*/

.hvac-tool-icon{

    width:75px;
    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:30px;
}

.hvac-tool-icon.btu{
    background:#FF8C00;
}

.hvac-tool-icon.cost{
    background:#2DBE60;
}

.hvac-tool-icon.duct{
    background:#2563EB;
}

.hvac-tool-icon.temp{
    background:#8B5CF6;
}

/*====================================================
TEXT
====================================================*/

.hvac-tool-card h3{

    font-size:24px;
    color:#0F172A;

    margin-bottom:18px;
}

.hvac-tool-card p{

    color:#64748B;

    line-height:1.8;

    min-height:95px;

    margin-bottom:30px;

    flex:1;

}

/*====================================================
BUTTON
====================================================*/

.hvac-tool-button{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:16px 24px;

    border-radius:50px;

    color:#fff !important;
    text-decoration:none !important;

    font-size:17px;
    font-weight:700;

    transition:all .3s ease;

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

}

.hvac-tool-button:hover{

    color:#fff !important;

    transform:translateY(-3px);

    box-shadow:0 16px 28px rgba(0,0,0,.22);

}

/*====================================================
BUTTON COLORS
====================================================*/

.hvac-tool-button.btu{
    background:#FF8C00;
}

.hvac-tool-button.btu:hover{
    background:#F57C00;
}

.hvac-tool-button.cost{
    background:#2DBE60;
}

.hvac-tool-button.cost:hover{
    background:#26A653;
}

.hvac-tool-button.duct{
    background:#2563EB;
}

.hvac-tool-button.duct:hover{
    background:#1D4ED8;
}

.hvac-tool-button.temp{
    background:#8B5CF6;
}

.hvac-tool-button.temp:hover{
    background:#7C3AED;
}

/*====================================================
FOOTER
====================================================*/

.hvac-tools-footer{

    margin-top:20px;

    text-align:center;

    font-size:18px;

    color:#0B4BA5;

    font-weight:600;

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1100px){

    .hvac-tools-grid{

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

    }

}

@media(max-width:768px){

    .hvac-tools-section{

        padding:50px 15px;

    }

    .hvac-tools-header h2{

        font-size:36px;

    }

    .hvac-tools-header p{

        font-size:18px;

    }

    .hvac-tools-grid{

        grid-template-columns:1fr;

    }

    .hvac-tool-card{

        padding:30px 20px;

    }

}