/*====================================================
CAROLINAHOMESPRO
COMPONENTS.CSS
====================================================*/


/*====================================================
SECTION HEADINGS
====================================================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#dcfce7;

    color:#166534;

    font-weight:600;

    font-size:15px;

    margin-bottom:22px;

}

.section-heading h2{

    font-size:46px;

    line-height:1.2;

    color:#0f172a;

    margin-bottom:20px;

    font-weight:700;

}

.section-heading p{

    font-size:18px;

    line-height:1.8;

    color:#64748b;

}


/*====================================================
BUTTONS
====================================================*/

.btn-primary,
.btn-secondary,
.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:#16a34a;

    color:#fff;

}

.btn-primary:hover{

    background:#15803d;

    transform:translateY(-4px);

}

.btn-secondary{

    background:#fff;

    color:#0f172a;

    border:2px solid #e2e8f0;

}

.btn-secondary:hover{

    border-color:#16a34a;

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid #16a34a;

    color:#16a34a;

}

.btn-outline:hover{

    background:#16a34a;

    color:#fff;

}


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

.chp-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

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

    transition:.35s;

}

.chp-card:hover{

    transform:translateY(-8px);

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

}


/*====================================================
SERVICE HERO
====================================================*/

.service-hero{

     padding:60px 0 80px;

    background:linear-gradient(
    180deg,
    #ffffff,
    #f8fafc);

}

.service-hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:70px;

    align-items:flex-start;

}

.service-badge{

    display:inline-block;

    padding:10px 20px;

    background:#dcfce7;

    color:#166534;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.service-hero h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    color:#0f172a;

}

.hero-description{

    font-size:20px;

    color:#64748b;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-features{

    display:grid;

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

    gap:18px;

}

.hero-feature{

    background:#fff;

    padding:18px;

    border-radius:12px;

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

    font-weight:600;

}

.service-hero-image{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

}

.service-hero-image img{

    width:100%;

    max-width:620px;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    display:block;

}

.hero-trust-card{

    position:absolute;

    bottom:40px;

    left:80px;

    width:280px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 25px 60px rgba(15,23,42,.18);

    z-index:2;

}

.trust-rating{

    font-size:22px;

    margin-bottom:15px;

}


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

@media(max-width:992px){

.service-hero-grid{

grid-template-columns:1fr;

}

.service-hero h1{

font-size:44px;

}

.hero-trust-card{

position:static;

margin-top:25px;

width:100%;

}

}

@media(max-width:768px){

.hero-features{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:34px;

}

.hero-description{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

}

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

.overview-grid{

grid-template-columns:1fr;

}

.repair-grid{

grid-template-columns:1fr;

}

.cost-grid{

grid-template-columns:1fr;

}

}

/*====================================================
SERVICE OVERVIEW
====================================================*/

.service-overview{

    padding:110px 0;

    background:#ffffff;

}

.overview-grid{

    display:grid;

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

    gap:60px;

    align-items:center;

}

.overview-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:25px;

}

.overview-list{

    list-style:none;

    padding:0;

    margin:40px 0;

}

.overview-list li{

    padding:14px 0;

    font-weight:600;

    color:#0f172a;

    border-bottom:1px solid #edf2f7;

}

.overview-list li:last-child{

    border-bottom:none;

}

.overview-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

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

}

.overview-card h3{

    margin-bottom:25px;

}

.overview-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.overview-card li{

    padding:15px 0;

    color:#64748b;

    border-bottom:1px solid #edf2f7;

}

.overview-card li:last-child{

    border:none;

}

/*====================================================
REPAIR VS REPLACE
====================================================*/

.repair-section{

    padding:110px 0;

    background:#f8fafc;

}

.repair-grid{

    display:grid;

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

    gap:35px;

}

.repair-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

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

    transition:.35s;

}

.repair-card:hover{

    transform:translateY(-8px);

}

.repair-card h3{

    margin-bottom:25px;

}

.repair-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.repair-card li{

    padding:12px 0;

    border-bottom:1px solid #edf2f7;

}

.repair-card li:last-child{

    border:none;

}


/*====================================================
COST ESTIMATE
====================================================*/

.cost-section{

    padding:110px 0;

    background:#ffffff;

}

.cost-grid{

    display:grid;

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

    gap:30px;

}

.cost-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

    text-align:center;

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

    transition:.35s;

}

.cost-card:hover{

    transform:translateY(-8px);

}

.cost-price{

    font-size:42px;

    color:#16a34a;

    font-weight:700;

    margin:25px 0;

}

.cost-card p{

    color:#64748b;

    line-height:1.8;

}


/* =====================================
   BRANDS
===================================== */

.brands-section{

    padding:100px 0;

    background:#ffffff;

}

.brands-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.brand-card{

    display:block;

    padding:35px;

    background:#f8fafc;

    border-radius:14px;

    text-decoration:none;

    color:#1e293b;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.brand-card:hover{

    transform:translateY(-6px);

    border:2px solid #16a34a;

}

.brand-card h3{

    margin-bottom:15px;

}

.brand-card p{

    color:#64748b;

    margin:0;

}

@media(max-width:992px){

    .brands-grid{

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

    }

}

@media(max-width:768px){

    .brands-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   PROCESS
===================================== */

.process-section{

    padding:100px 0;

    background:#f8fafc;

}

.process-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.process-card{

    background:#ffffff;

    padding:35px;

    border-radius:14px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#16a34a;

    color:#ffffff;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-card h3{

    margin-bottom:20px;

}

@media(max-width:992px){

    .process-grid{

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

    }

}

@media(max-width:768px){

    .process-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   BENEFITS
===================================== */

.benefits-section{

    padding:100px 0;

    background:#ffffff;

}

.benefits-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.benefit-card{

    background:#f8fafc;

    border-radius:14px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.benefit-card:hover{

    transform:translateY(-6px);

}

.benefit-icon{

    font-size:42px;

    margin-bottom:20px;

}

.benefit-card h3{

    margin-bottom:15px;

}

.benefit-card p{

    color:#64748b;

    line-height:1.7;

}

@media(max-width:992px){

    .benefits-grid{

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

    }

}

@media(max-width:768px){

    .benefits-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   SERVICE AREAS
===================================== */

.service-areas-section{

    padding:100px 0;

    background:#f8fafc;

}

.service-area-grid{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.service-area-card{

    display:block;

    text-decoration:none;

    background:#fff;

    border-radius:14px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.service-area-card:hover{

    transform:translateY(-6px);

    border:2px solid #16a34a;

}

.service-area-card h3{

    margin-bottom:10px;

    color:#0f172a;

}

.service-area-card span{

    color:#64748b;

}

@media(max-width:992px){

    .service-area-grid{

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

    }

}

@media(max-width:768px){

    .service-area-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   TESTIMONIALS
===================================== */

.testimonials-section{

    padding:100px 0;

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.testimonial-card{

    background:#f8fafc;

    padding:35px;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.stars{

    color:#f59e0b;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    line-height:1.8;

    color:#475569;

    margin-bottom:30px;

}

.testimonial-author strong{

    display:block;

    margin-bottom:6px;

}

.testimonial-author span{

    color:#64748b;

}

@media(max-width:992px){

    .testimonial-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   FAQ
===================================== */

.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

/* Question */

.faq-question {
    width: 100%;
    padding: 28px 30px;
    background: #ffffff;
    color: #0f172a !important;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

/* Question hover */

.faq-question:hover {
    background: #f8fafc;
    color: #0f172a !important;
}

/* Plus icon */

.faq-question span {
    flex-shrink: 0;
    margin-left: 20px;
    color: #16a34a !important;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

/* Answer */

.faq-answer {
    display: none;
    padding: 0 30px 28px;
    background: #ffffff;
}

/* Open answer */

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #475569 !important;
    font-size: 16px;
    line-height: 1.8;
}

/* Active question */

.faq-item.active .faq-question {
    background: #ffffff;
    color: #0f172a !important;
}

/* Active plus */

.faq-item.active .faq-question span {
    color: #16a34a !important;
}


/* =====================================
   FAQ MOBILE
===================================== */

@media (max-width: 700px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-wrapper {
        margin-top: 40px;
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 16px;
    }

    .faq-question span {
        font-size: 26px;
        margin-left: 15px;
    }

    .faq-answer {
        padding: 0 20px 24px;
    }

    .faq-answer p {
        font-size: 15px;
    }

}

/* =====================================
   RELATED GUIDES
===================================== */

.related-guides-section{

    padding:100px 0;

    background:#ffffff;

}

.guides-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.guide-card{

    background:#f8fafc;

    border-radius:14px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.guide-card:hover{

    transform:translateY(-6px);

}

.guide-category{

    display:inline-block;

    background:#16a34a;

    color:#ffffff;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

}

.guide-card h3{

    margin-bottom:15px;

}

.guide-card h3 a{

    color:#0f172a;

    text-decoration:none;

}

.guide-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

}

.guide-link{

    color:#16a34a;

    font-weight:600;

    text-decoration:none;

}

@media(max-width:992px){

    .guides-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================
   QUOTE CTA
===================================== */

.quote-cta-section{

    padding:100px 0;

    background:#0f172a;

}

.quote-cta-box{

    max-width:900px;

    margin:0 auto;

    text-align:center;

    color:#ffffff;

}

.quote-cta-box h2{

    color:#ffffff;

    font-size:44px;

    margin:20px 0;

}

.quote-cta-box p{

    color:#cbd5e1;

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.8;

}

.quote-benefits{

    display:grid;

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

    gap:20px;

    max-width:700px;

    margin:50px auto;

}

.quote-benefit{

    background:rgba(255,255,255,.08);

    padding:18px;

    border-radius:10px;

}

.quote-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.quote-buttons .btn-secondary{

    background:#ffffff;

    color:#0f172a;

}

@media(max-width:768px){

    .quote-benefits{

        grid-template-columns:1fr;

    }

    .quote-cta-box h2{

        font-size:34px;

    }

}

/* =====================================
   REPAIR VS REPLACEMENT
===================================== */

.repair-replace-section {
    padding: 100px 0;
    background: #ffffff;
}

.repair-replace-section .section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.repair-replace-section .section-heading p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.repair-replace-grid {
    max-width: 1050px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.repair-replace-card {
    padding: 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.repair-replace-card.repair-replace-featured {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.repair-replace-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #dcfce7;
    font-size: 27px;
}

.repair-replace-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 25px;
    line-height: 1.3;
}

.repair-replace-card p {
    margin: 0 0 24px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.repair-replace-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.repair-replace-card li {
    margin-bottom: 12px;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.repair-replace-card li:last-child {
    margin-bottom: 0;
}

.repair-replace-note {
    max-width: 1050px;
    margin: 30px auto 0;
    padding: 24px 30px;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.repair-replace-note strong {
    color: #ffffff;
}

.repair-replace-note span {
    color: #cbd5e1;
}


/* =====================================
   REPAIR VS REPLACEMENT - MOBILE
===================================== */

@media (max-width: 768px) {

    .repair-replace-section {
        padding: 70px 0;
    }

    .repair-replace-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .repair-replace-card {
        padding: 28px;
    }

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

    .repair-replace-note {
        flex-direction: column;
        padding: 22px;
    }

}

/* =====================================
   HVAC COST GUIDE
===================================== */

.service-cost-section {
    padding: 100px 0;
    background: #f8fafc;
}

.service-cost-section .section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-cost-section .section-heading p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cost-table-wrapper {
    max-width: 1100px;
    margin: 55px auto 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.cost-table-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.5fr;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.cost-table-row:last-child {
    border-bottom: none;
}

.cost-table-row > div {
    padding: 22px 25px;
    color: #475569;
    line-height: 1.5;
}

.cost-table-row > div:first-child {
    color: #0f172a;
    font-weight: 700;
}

.cost-table-row > div:nth-child(2) {
    color: #16a34a;
    font-weight: 700;
}

.cost-table-header {
    background: #0f172a;
}

.cost-table-header > div,
.cost-table-header > div:first-child,
.cost-table-header > div:nth-child(2) {
    color: #ffffff;
    font-weight: 700;
}

.cost-guide-note {
    max-width: 1100px;
    margin: 25px auto 0;
    padding: 20px 25px;
    background: #ffffff;
    border-left: 4px solid #16a34a;
    border-radius: 8px;
    color: #64748b;
    line-height: 1.7;
}

.cost-guide-note strong {
    color: #0f172a;
    margin-right: 5px;
}

.cost-section-cta {
    max-width: 800px;
    margin: 55px auto 0;
    padding: 45px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.cost-section-cta h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 28px;
}

.cost-section-cta p {
    margin: 0 auto 25px;
    max-width: 600px;
    color: #64748b;
    line-height: 1.7;
}


/* =====================================
   HVAC COST GUIDE - MOBILE
===================================== */

@media (max-width: 768px) {

    .service-cost-section {
        padding: 70px 0;
    }

    .cost-table-wrapper {
        margin-top: 40px;
        border-radius: 14px;
    }

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

    .cost-table-header {
        display: none;
    }

    .cost-table-row {
        padding: 20px;
    }

    .cost-table-row > div {
        padding: 6px 0;
    }

    .cost-table-row > div:first-child {
        font-size: 18px;
    }

    .cost-table-row > div:nth-child(2)::before {
        content: "Typical cost: ";
        color: #64748b;
        font-weight: 400;
    }

    .cost-table-row > div:nth-child(3)::before {
        content: "Price factors: ";
        color: #64748b;
        font-weight: 600;
    }

    .cost-section-cta {
        padding: 30px 22px;
    }

}

/* =====================================
   SERVICE CONTRACTORS
===================================== */

.service-contractors {
    padding: 100px 0;
    background: #ffffff;
}

.service-contractors .section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-contractors .section-heading p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.service-contractors .contractor-grid {
    max-width: 1150px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-contractors .contractor-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-contractors .contractor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.service-contractors .contractor-image {
    height: 190px;
    overflow: hidden;
}

.service-contractors .contractor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-contractors .contractor-content {
    padding: 28px;
}

.service-contractors .contractor-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.service-contractors .contractor-content h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 22px;
}

.service-contractors .contractor-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-contractors .contractor-rating span:first-child {
    color: #f59e0b;
    letter-spacing: 2px;
}

.service-contractors .contractor-rating span:last-child {
    color: #64748b;
}

.service-contractors .contractor-features {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.service-contractors .contractor-features li {
    margin-bottom: 9px;
    color: #475569;
    font-size: 14px;
}

.service-contractors .section-button {
    margin-top: 40px;
    text-align: center;
}

.service-contractors .chp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid #16a34a;
    border-radius: 12px;
    color: #15803d;
    font-weight: 700;
    text-decoration: none;
}


/* Mobile */

@media (max-width: 900px) {

    .service-contractors .contractor-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .service-contractors {
        padding: 70px 0;
    }

    .service-contractors .contractor-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

}

/* =====================================
   HVAC BRANDS
===================================== */

.service-brands {
    padding: 100px 0;
    background: #f8fafc;
}

.service-brands .section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-brands .section-heading p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    max-width: 1100px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.brand-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.09);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 45px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

.brand-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 20px;
}

.brand-card p {
    margin: 0 0 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.brand-card a {
    color: #16a34a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.brand-card a:hover {
    color: #15803d;
}


/* Mobile */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .service-brands {
        padding: 70px 0;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

}

/* =====================================
   RELATED HVAC GUIDES
===================================== */

.service-related-guides {
    padding: 100px 0;
    background: #ffffff;
}

.service-related-guides .section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-related-guides .section-heading p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.related-guides-grid {
    max-width: 1100px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-guide-card {
    padding: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.related-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.related-guide-category {
    display: inline-block;
    margin-bottom: 12px;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.related-guide-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.4;
}

.related-guide-card p {
    margin: 0 0 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.related-guide-card a {
    color: #16a34a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.related-guide-card a:hover {
    color: #15803d;
}


/* Mobile */

@media (max-width: 700px) {

    .service-related-guides {
        padding: 70px 0;
    }

    .related-guides-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .related-guide-card {
        padding: 26px;
    }

}

/* =====================================
   SERVICE QUOTE CTA
===================================== */

.service-quote-cta {
    padding: 100px 0;
    background: #f8fafc;
}

.quote-cta-inner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 65px 70px;
    border-radius: 24px;
    background: #0f172a;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.quote-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-cta-content .section-tag {
    color: #22c55e;
}

.quote-cta-content h2 {
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.25;
}

.quote-cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.75;
}

.quote-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.quote-cta-buttons .btn-secondary {
    border-color: #64748b;
    color: #ffffff;
}

.quote-cta-trust {
    margin-top: 28px;
    color: #cbd5e1;
    font-size: 14px;
}

.quote-cta-trust span {
    margin: 0 8px;
    color: #64748b;
}


/* Mobile */

@media (max-width: 700px) {

    .service-quote-cta {
        padding: 70px 0;
    }

    .quote-cta-inner {
        padding: 45px 24px;
        border-radius: 18px;
    }

    .quote-cta-content h2 {
        font-size: 29px;
    }

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

    .quote-cta-buttons {
        flex-direction: column;
    }

    .quote-cta-buttons a {
        width: 100%;
        box-sizing: border-box;
    }

    .quote-cta-trust {
        line-height: 2;
    }

    .quote-cta-trust span {
        display: none;
    }

}

.service-contractors .contractor-content > p {
    margin: 0 0 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================
   HVAC BRANDS - POLISH
===================================== */

.brands-note {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 22px 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-align: center;
    color: #64748b;
    line-height: 1.7;
}

.brands-note strong {
    color: #0f172a;
    margin-right: 5px;
}

@media (max-width: 600px) {

    .brands-note {
        margin-top: 30px;
        padding: 20px;
        text-align: left;
    }

}