/* ===================================================
   ABOUT PAGE
   =================================================== */


/* HERO */

.about-hero{
    position:relative;
    min-height:500px;
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/service-installation.png")
        center center / cover no-repeat;
    display:flex;
    align-items:center;
    padding:130px 0 70px;
}

.about-hero-content{
    position:relative;
    z-index:2;
}

.about-eyebrow{
    margin-bottom:18px;
    color:#df3028;
    font-size:16px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.about-hero h1{
    margin:0;
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:clamp(58px,7vw,90px);
    font-style:italic;
    font-weight:800;
    line-height:.9;
    text-transform:uppercase;
}

.about-hero h1 span{
    display:block;
    color:#fff;
}


/* STORY */

.about-story{
    background:#111;
}

.about-story-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    min-height:650px;
}

.about-story-content{
    padding:100px 9%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
}

.about-story-content h2{
    margin-bottom:38px;
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-style:italic;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
}

.about-story-content h2 span{
    color:#df3028;
}

.about-story-content p{
    margin-bottom:25px;
    color:#fff;
    font-size:17px;
    line-height:1.7;
}

.about-story-content p:last-child{
    margin-bottom:0;
}

.about-story-image{
    height:650px;
    overflow:hidden;
}

.about-story-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}


/* SERVICES */

.about-services{
    padding:105px 0 115px;
    background:#fff;
}

.about-services-heading{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.about-services-heading .about-eyebrow{
    margin-bottom:20px;
}

.about-services-heading h2{
    margin-bottom:28px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-style:italic;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
}

.about-services-heading > p:last-child{
    color:#666;
    font-size:17px;
    line-height:1.7;
}

.about-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
}

.about-service{
    min-height:330px;
    padding:45px 38px;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    background:#fff;
    transition:.3s ease;
}

.about-service > span{
    display:block;
    margin-bottom:28px;
    color:#df3028;
    font-family:'Barlow Condensed',sans-serif;
    font-size:50px;
    font-style:italic;
    font-weight:800;
    line-height:1;
}

.about-service h3{
    margin-bottom:20px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:30px;
    font-weight:800;
    line-height:1.05;
    text-transform:uppercase;
}

.about-service p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.about-service:hover{
    background:#111;
    transform:translateY(-5px);
}

.about-service:hover h3,
.about-service:hover p{
    color:#fff;
}


/* BOTTOM CTA */

.about-services-bottom{
    max-width:950px;
    margin:70px auto 0;
    text-align:center;
}

.about-services-bottom > p{
    margin-bottom:38px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.about-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.about-call-btn{
    display:inline-flex;
    min-width:210px;
    min-height:58px;
    padding:14px 28px;
    align-items:center;
    justify-content:center;
    border:2px solid #111;
    color:#111;
    font-size:14px;
    font-weight:800;
    letter-spacing:.7px;
    text-transform:uppercase;
}

.about-call-btn:hover{
    background:#111;
    color:#fff;
}


/* TABLET */

@media(max-width:900px){

    .about-story-grid{
        grid-template-columns:1fr;
    }

    .about-story-content{
        padding:75px 8%;
    }

    .about-story-image,
    .about-story-image img{
        height:500px;
    }

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

}


/* MOBILE */

@media(max-width:600px){

    .about-hero{
        min-height:420px;
        padding:100px 0 60px;
    }

    .about-story-content{
        padding:60px 7%;
    }

    .about-story-content h2,
    .about-services-heading h2{
        font-size:42px;
    }

    .about-story-image,
    .about-story-image img{
        height:350px;
    }

    .about-services{
        padding:70px 0;
    }

    .about-services-grid{
        grid-template-columns:1fr;
    }

    .about-service{
        min-height:0;
        padding:38px 30px;
    }

    .about-cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .about-cta-buttons a{
        width:100%;
        max-width:300px;
    }

}/* ===================================================
   SERVICE PAGE SYSTEM
   =================================================== */

.service-page{
    background:#fff;
}


/* HERO */

.service-page-hero{
    min-height:520px;
    padding:140px 0 80px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),
        url("/assets/images/service-installation.png")
        center center / cover no-repeat;
}

.service-page-hero-content{
    width:100%;
}

.service-eyebrow{
    margin-bottom:18px;
    color:#df3028;
    font-size:16px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.service-page-hero h1{
    max-width:950px;
    margin:0;
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:clamp(58px,7vw,92px);
    font-style:italic;
    font-weight:800;
    line-height:.9;
    text-transform:uppercase;
}

.service-page-hero h1 span{
    display:block;
    color:#df3028;
}

.service-hero-location{
    margin-top:28px;
    color:#fff;
    font-size:18px;
    font-weight:600;
}


/* INTRO */

.service-intro{
    background:#111;
}

.service-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:650px;
}

.service-intro-content{
    padding:95px 9%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-intro-content h2,
.service-details-main h2,
.service-why-heading h2,
.service-cta h2{
    margin-bottom:32px;
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-style:italic;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
}

.service-intro-content h2{
    color:#fff;
}

.service-intro-content h2 span,
.service-details-main h2 span,
.service-why-heading h2 span,
.service-cta h2 span{
    color:#df3028;
}

.service-intro-content p{
    margin-bottom:24px;
    color:#fff;
    font-size:17px;
    line-height:1.7;
}

.service-intro-image{
    height:650px;
    overflow:hidden;
}

.service-intro-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}


/* DETAILS */

.service-details{
    padding:105px 0;
}

.service-details-grid{
    display:grid;
    grid-template-columns:1.5fr .75fr;
    gap:80px;
    align-items:center;
}

.service-details-main h2{
    color:#111;
}

.service-details-main > p:not(.service-eyebrow){
    margin-bottom:24px;
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.service-brand-panel{
    padding:50px 45px;
    background:#df3028;
    color:#fff;
}

.service-brand-panel > span{
    display:block;
    margin-bottom:25px;
    font-size:14px;
    font-weight:800;
    letter-spacing:1.5px;
}

.service-brand-panel h3{
    margin-bottom:30px;
    font-family:'Barlow Condensed',sans-serif;
    font-size:52px;
    font-style:italic;
    font-weight:800;
    line-height:1;
}

.service-brand-panel p{
    color:#fff;
    font-size:15px;
    line-height:1.7;
}


/* WHY */

.service-why{
    padding:105px 0;
    background:#f3f3f3;
}

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

.service-why-heading h2{
    color:#111;
}

.service-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.service-benefit{
    min-height:330px;
    padding:42px 34px;
    border-right:1px solid #ccc;
}

.service-benefit:last-child{
    border-right:none;
}

.service-benefit > span{
    display:block;
    margin-bottom:28px;
    color:#df3028;
    font-family:'Barlow Condensed',sans-serif;
    font-size:52px;
    font-style:italic;
    font-weight:800;
}

.service-benefit h3{
    margin-bottom:20px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:29px;
    font-weight:800;
    line-height:1.05;
    text-transform:uppercase;
}

.service-benefit p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}


/* CTA */

.service-cta{
    padding:85px 0;
    background:#111;
}

.service-cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.service-cta h2{
    margin-bottom:20px;
    color:#fff;
}

.service-cta-content > div:first-child > p:last-child{
    color:#fff;
    font-size:16px;
    line-height:1.7;
}

.service-cta-buttons{
    display:flex;
    gap:18px;
    flex-shrink:0;
}

.service-call-btn{
    display:inline-flex;
    min-width:190px;
    min-height:58px;
    padding:14px 28px;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
}

.service-call-btn:hover{
    background:#fff;
    color:#111;
}


/* TABLET */

@media(max-width:900px){

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

    .service-intro-image,
    .service-intro-image img{
        height:500px;
    }

    .service-details-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

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

    .service-benefit{
        border-bottom:1px solid #ccc;
    }

    .service-cta-content{
        flex-direction:column;
        align-items:flex-start;
    }

}


/* MOBILE */

@media(max-width:600px){

    .service-page-hero{
        min-height:430px;
        padding:110px 0 60px;
    }

    .service-intro-content{
        padding:65px 7%;
    }

    .service-intro-content h2,
    .service-details-main h2,
    .service-why-heading h2,
    .service-cta h2{
        font-size:42px;
    }

    .service-intro-image,
    .service-intro-image img{
        height:350px;
    }

    .service-details,
    .service-why{
        padding:70px 0;
    }

    .service-brand-panel{
        padding:40px 30px;
    }

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

    .service-benefit{
        min-height:0;
        border-right:none;
    }

    .service-cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .service-cta-buttons a{
        width:100%;
    }

}/* ===================================================
   SPRING REPAIR PAGE
   =================================================== */

.spring-hero{
    background:
        linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),
        url("/assets/images/service-springs.png")
        center center / cover no-repeat;
}/* ===================================================
   GARAGE DOOR OPENERS PAGE
   =================================================== */

.opener-hero{
    background:
        linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),
        url("/assets/images/service-operators.png")
        center center / cover no-repeat;
}/* ===================================================
   GARAGE DOOR REPAIR PAGE
   =================================================== */

.repair-hero{
    background:
        linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),
        url("/assets/images/service-repair.png")
        center center / cover no-repeat;
}/* ===================================================
   GARAGE DOOR REPAIR PAGE
   =================================================== */

.repair-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/service-repair.png")
        center center / cover no-repeat;
}


/* REPAIR BENEFITS 3 X 2 GRID */

.repair-benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
}

.repair-benefits-grid .service-benefit{
    min-height:320px;
    padding:42px 34px;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
}


/* TABLET */

@media(max-width:900px){

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

}


/* MOBILE */

@media(max-width:600px){

    .repair-benefits-grid{
        grid-template-columns:1fr;
    }

    .repair-benefits-grid .service-benefit{
        min-height:0;
    }

}/* ===================================================
   GARAGE DOOR MAINTENANCE PAGE
   =================================================== */

.maintenance-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/service-maintenance.png")
        center center / cover no-repeat;
}

.maintenance-benefits-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
}

.maintenance-benefits-grid .service-benefit{
    grid-column:span 2;
}

.maintenance-benefits-grid .maintenance-plan-card{
    grid-column:3 / span 2;
}

@media(max-width:900px){

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

    .maintenance-benefits-grid .service-benefit,
    .maintenance-benefits-grid .maintenance-plan-card{
        grid-column:auto;
    }

}

@media(max-width:600px){

    .maintenance-benefits-grid{
        grid-template-columns:1fr;
    }

}/* ===================================================
   GARAGE DOOR SEALS PAGE
   =================================================== */

.seals-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/service-seals.png")
        center center / cover no-repeat;
}/* ===================================================
   AREAS WE SERVE PAGE
   =================================================== */

.areas-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url("/assets/images/home-intro.png")
        center center / cover no-repeat;
}


/* ===================================================
   AREAS INTRO
   =================================================== */

.areas-simple-intro{
    padding:120px 0;
    background:#fff;
}

.areas-simple-intro-content{
    max-width:1050px;
    text-align:center;
}

.areas-simple-intro h2{
    margin-bottom:28px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:58px;
    font-style:italic;
    font-weight:800;
    line-height:.95;
    text-transform:uppercase;
}

.areas-simple-intro h2 span{
    display:block;
    color:#df3028;
}

.areas-simple-intro p:not(.service-eyebrow){
    max-width:950px;
    margin:0 auto 18px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}


/* ===================================================
   MAP AND SERVICE INFORMATION
   =================================================== */

.areas-map-section{
    padding:110px 0;
    background:#111;
}

.areas-map-layout{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:80px;
    align-items:center;
}

.areas-large-map{
    height:680px;
}

.areas-large-map iframe{
    width:100%;
    height:100%;
    border:0;
}

.areas-info{
    color:#fff;
}

.areas-info-block + .areas-info-block{
    margin-top:65px;
}

.areas-info h2{
    margin-bottom:25px;
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:52px;
    font-style:italic;
    font-weight:800;
    line-height:.95;
    text-transform:uppercase;
}

.areas-info h2 span{
    display:block;
    color:#df3028;
}

.areas-info-block > p:not(.service-eyebrow){
    margin-bottom:25px;
    color:#bbb;
    font-size:15px;
    line-height:1.7;
}


/* SERVICE BULLETS */

.areas-service-bullets{
    margin:0;
    padding:0;
    list-style:none;
}

.areas-service-bullets li{
    position:relative;
    padding:13px 0 13px 22px;
    border-bottom:1px solid #333;
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

.areas-service-bullets li::before{
    content:"";
    position:absolute;
    top:22px;
    left:0;
    width:7px;
    height:7px;
    background:#df3028;
}

.areas-service-bullets a{
    color:#fff;
    font-weight:700;
}

.areas-service-bullets a:hover{
    color:#df3028;
}


/* CITY LIST */

.areas-city-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:0;
    padding:0;
    list-style:none;
}

.areas-city-list li{
    padding:16px 18px;
    border-left:4px solid #df3028;
    background:#1b1b1b;
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
}


/* ===================================================
   TABLET
   =================================================== */

@media(max-width:1000px){

    .areas-map-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

    .areas-large-map{
        height:550px;
    }

}


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

@media(max-width:600px){

    .areas-simple-intro{
        padding:75px 0;
    }

    .areas-simple-intro h2{
        font-size:42px;
    }

    .areas-map-section{
        padding:70px 0;
    }

    .areas-large-map{
        height:400px;
    }

    .areas-info h2{
        font-size:42px;
    }

    .areas-city-list{
        grid-template-columns:1fr;
    }

}/* ===================================================
   GALLERY PAGE
   =================================================== */

.gallery-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url("/assets/images/1.png")
        center center / cover no-repeat;
}


/* GALLERY INTRO */

.gallery-intro{
    padding:100px 0 70px;
    background:#fff;
}

.gallery-intro-content{
    max-width:850px;
    text-align:center;
}

.gallery-intro h2{
    margin-bottom:25px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:58px;
    font-style:italic;
    font-weight:800;
    line-height:.95;
    text-transform:uppercase;
}

.gallery-intro h2 span{
    display:block;
    color:#df3028;
}

.gallery-intro p:not(.service-eyebrow){
    color:#666;
    font-size:16px;
    line-height:1.8;
}


/* GALLERY GRID */

.gallery-section{
    padding:0 0 110px;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.gallery-item{
    position:relative;
    height:420px;
    overflow:hidden;
    background:#111;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:background .35s ease;
    pointer-events:none;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

.gallery-item:hover::after{
    background:rgba(0,0,0,.18);
}


/* TABLET */

@media(max-width:900px){

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

}


/* MOBILE */

@media(max-width:600px){

    .gallery-intro{
        padding:70px 0 50px;
    }

    .gallery-intro h2{
        font-size:42px;
    }

    .gallery-section{
        padding-bottom:70px;
    }

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

    .gallery-item{
        height:350px;
    }

}/* ===================================================
   GALLERY PAGE FORCE FIX
   =================================================== */

.gallery-intro{
    padding:100px 0 70px !important;
    background:#fff !important;
}

.gallery-intro-content{
    max-width:850px !important;
    margin:0 auto !important;
    text-align:center !important;
}

.gallery-intro h2{
    margin-bottom:25px !important;
    color:#111 !important;
    font-family:'Barlow Condensed',sans-serif !important;
    font-size:58px !important;
    font-style:italic !important;
    font-weight:800 !important;
    line-height:.95 !important;
    text-transform:uppercase !important;
}

.gallery-intro h2 span{
    display:block !important;
    color:#df3028 !important;
}

.gallery-intro p:not(.service-eyebrow){
    color:#666 !important;
    font-size:16px !important;
    line-height:1.8 !important;
}

.gallery-section{
    padding:0 0 110px !important;
    background:#fff !important;
}

.gallery-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:18px !important;
}

.gallery-item{
    position:relative !important;
    width:100% !important;
    height:420px !important;
    overflow:hidden !important;
    background:#111 !important;
}

.gallery-item img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    object-fit:cover !important;
    transition:transform .5s ease !important;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

@media(max-width:900px){

    .gallery-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

}

@media(max-width:600px){

    .gallery-intro{
        padding:70px 0 50px !important;
    }

    .gallery-intro h2{
        font-size:42px !important;
    }

    .gallery-grid{
        grid-template-columns:1fr !important;
    }

    .gallery-item{
        height:350px !important;
    }

}/* ===================================================
   GALLERY LIGHTBOX
   =================================================== */

.gallery-item{
    border:0;
    padding:0;
    cursor:pointer;
}

.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:99999;

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

    padding:40px;

    background:rgba(0,0,0,.92);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
}

.gallery-lightbox-image{
    display:block;

    max-width:90vw;
    max-height:88vh;

    width:auto;
    height:auto;

    object-fit:contain;
}

.gallery-lightbox-close{
    position:absolute;

    top:25px;
    right:35px;

    border:0;
    background:none;

    color:#fff;

    font-size:55px;
    line-height:1;

    cursor:pointer;
}

body.gallery-lightbox-open{
    overflow:hidden;
}

@media(max-width:600px){

    .gallery-lightbox{
        padding:20px;
    }

    .gallery-lightbox-image{
        max-width:95vw;
        max-height:82vh;
    }

    .gallery-lightbox-close{
        top:15px;
        right:20px;
    }

}/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/9.png")
        center center / cover no-repeat;
}

.contact-section{
    padding:110px 0;
    background:#f3f3f3;
}

.contact-layout{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:center;
}

.contact-content h2,
.contact-form-panel h2{
    margin-bottom:30px;
    color:#111;
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-style:italic;
    font-weight:800;
    line-height:.95;
    text-transform:uppercase;
}

.contact-content h2 span,
.contact-form-panel h2 span{
    display:block;
    color:#df3028;
}

.contact-content > p:not(.service-eyebrow){
    margin-bottom:18px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.contact-details{
    margin-top:45px;
}

.contact-detail{
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 0;
    border-top:1px solid #ccc;
    color:#111;
}

.contact-detail:last-child{
    border-bottom:1px solid #ccc;
}

.contact-detail > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    background:#df3028;
    color:#fff;
    font-size:20px;
}

.contact-detail small{
    display:block;
    margin-bottom:4px;
    color:#777;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-detail strong{
    font-family:'Barlow Condensed',sans-serif;
    font-size:24px;
    text-transform:uppercase;
}

.contact-form-panel{
    padding:55px;
    background:#111;
}

.contact-form-panel h2{
    color:#fff;
}

.contact-form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-field{
    margin-bottom:22px;
}

.contact-field label{
    display:block;
    margin-bottom:9px;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
    width:100%;
    border:1px solid #444;
    border-radius:0;
    padding:16px;
    background:#1b1b1b;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    outline:none;
}

.contact-field textarea{
    resize:vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
    border-color:#df3028;
}

.contact-submit{
    width:100%;
    padding:18px 25px;
    background:#df3028;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:13px;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.contact-message{
    margin-bottom:25px;
    padding:18px;
    font-size:14px;
    line-height:1.6;
}

.contact-success{
    border-left:4px solid #df3028;
    background:#1b1b1b;
    color:#fff;
}

.contact-error{
    border-left:4px solid #df3028;
    background:#1b1b1b;
    color:#fff;
}

.contact-honeypot{
    position:absolute;
    left:-9999px;
}

@media(max-width:900px){

    .contact-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

}

@media(max-width:600px){

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

    .contact-content h2,
    .contact-form-panel h2{
        font-size:42px;
    }

    .contact-form-panel{
        padding:35px 25px;
    }

    .contact-form-row{
        grid-template-columns:1fr;
        gap:0;
    }

}/* ===================================================
   CONTACT PAGE FORCE FIX
   =================================================== */

.contact-hero{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("/assets/images/9.png")
        center center / cover no-repeat !important;
}

.contact-section{
    padding:110px 0 !important;
    background:#f3f3f3 !important;
}

.contact-layout{
    display:grid !important;
    grid-template-columns:.85fr 1.15fr !important;
    gap:80px !important;
    align-items:center !important;
}

.contact-content h2,
.contact-form-panel h2{
    margin-bottom:30px !important;
    font-family:'Barlow Condensed',sans-serif !important;
    font-size:56px !important;
    font-style:italic !important;
    font-weight:800 !important;
    line-height:.95 !important;
    text-transform:uppercase !important;
}

.contact-content h2{
    color:#111 !important;
}

.contact-form-panel h2{
    color:#fff !important;
}

.contact-content h2 span,
.contact-form-panel h2 span{
    display:block !important;
    color:#df3028 !important;
}

.contact-content > p:not(.service-eyebrow){
    margin-bottom:18px !important;
    color:#666 !important;
    font-size:16px !important;
    line-height:1.8 !important;
}

.contact-details{
    margin-top:45px !important;
}

.contact-detail{
    display:flex !important;
    align-items:center !important;
    gap:20px !important;
    padding:22px 0 !important;
    border-top:1px solid #ccc !important;
    color:#111 !important;
}

.contact-detail:last-child{
    border-bottom:1px solid #ccc !important;
}

.contact-detail > span{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:0 0 52px !important;
    width:52px !important;
    height:52px !important;
    background:#df3028 !important;
    color:#fff !important;
    font-size:20px !important;
}

.contact-detail small{
    display:block !important;
    margin-bottom:4px !important;
    color:#777 !important;
    font-size:11px !important;
    font-weight:700 !important;
    letter-spacing:1px !important;
}

.contact-detail strong{
    display:block !important;
    font-family:'Barlow Condensed',sans-serif !important;
    font-size:24px !important;
    font-weight:800 !important;
    text-transform:uppercase !important;
}

.contact-form-panel{
    padding:55px !important;
    background:#111 !important;
}

.contact-form-row{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:20px !important;
}

.contact-field{
    margin-bottom:22px !important;
}

.contact-field label{
    display:block !important;
    margin-bottom:9px !important;
    color:#fff !important;
    font-size:11px !important;
    font-weight:700 !important;
    letter-spacing:1px !important;
    text-transform:uppercase !important;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
    display:block !important;
    width:100% !important;
    border:1px solid #444 !important;
    border-radius:0 !important;
    padding:16px !important;
    background:#1b1b1b !important;
    color:#fff !important;
    font-family:'Montserrat',sans-serif !important;
    font-size:14px !important;
    outline:none !important;
}

.contact-field textarea{
    min-height:170px !important;
    resize:vertical !important;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
    border-color:#df3028 !important;
}

.contact-submit{
    display:block !important;
    width:100% !important;
    border:0 !important;
    padding:18px 25px !important;
    background:#df3028 !important;
    color:#fff !important;
    font-family:'Montserrat',sans-serif !important;
    font-size:13px !important;
    font-weight:800 !important;
    letter-spacing:.5px !important;
    text-transform:uppercase !important;
    cursor:pointer !important;
}

.contact-submit:hover{
    background:#fff !important;
    color:#111 !important;
}

.contact-message{
    margin-bottom:25px !important;
    padding:18px !important;
    border-left:4px solid #df3028 !important;
    background:#1b1b1b !important;
    color:#fff !important;
    font-size:14px !important;
    line-height:1.6 !important;
}

.contact-honeypot{
    position:absolute !important;
    left:-99999px !important;
    top:-99999px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}

@media(max-width:900px){

    .contact-layout{
        grid-template-columns:1fr !important;
        gap:60px !important;
    }

}

@media(max-width:600px){

    .contact-section{
        padding:70px 0 !important;
    }

    .contact-content h2,
    .contact-form-panel h2{
        font-size:42px !important;
    }

    .contact-form-panel{
        padding:35px 25px !important;
    }

    .contact-form-row{
        grid-template-columns:1fr !important;
        gap:0 !important;
    }

}/* CONTACT FORM PLACEHOLDER TEXT */

.contact-field input::placeholder,
.contact-field textarea::placeholder{
    color:#fff !important;
    opacity:.75 !important;
}

.contact-field select{
    color:#fff !important;
}

.contact-field select option{
    color:#fff !important;
    background:#1b1b1b !important;
}/* ===================================================
   FINAL INTERIOR PAGE RESPONSIVE SYSTEM
   TABLET + MOBILE
   =================================================== */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img,
iframe{
    max-width:100%;
}


/* ===================================================
   TABLET
   =================================================== */

@media(max-width:1024px){

    .about-hero,
    .service-page-hero{
        min-height:460px;
        padding:110px 0 70px;
    }

    .about-story-grid,
    .service-intro-grid{
        grid-template-columns:1fr;
    }

    .about-story-content,
    .service-intro-content{
        min-height:auto;
        padding:75px 7%;
    }

    .about-story-image,
    .about-story-image img,
    .service-intro-image,
    .service-intro-image img{
        width:100%;
        height:480px;
    }

    .about-services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .service-details-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .service-benefits-grid,
    .repair-benefits-grid,
    .maintenance-benefits-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .maintenance-benefits-grid .service-benefit,
    .maintenance-benefits-grid .maintenance-plan-card{
        grid-column:auto;
    }

    .service-benefit{
        border-bottom:1px solid #ccc;
    }

    .service-cta-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .areas-map-layout{
        grid-template-columns:1fr;
        gap:55px;
    }

    .areas-large-map{
        height:500px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }

    .contact-layout{
        grid-template-columns:1fr !important;
        gap:55px !important;
    }

    .contact-content{
        max-width:760px;
    }

    .contact-form-panel{
        width:100%;
    }

}


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

@media(max-width:767px){

    .about-hero,
    .service-page-hero{
        min-height:390px;
        padding:95px 0 55px;
    }

    .about-eyebrow,
    .service-eyebrow{
        margin-bottom:14px;
        font-size:12px;
        line-height:1.5;
    }

    .about-hero h1,
    .service-page-hero h1{
        font-size:44px;
        line-height:.94;
    }

    .service-hero-location{
        margin-top:20px;
        font-size:15px;
    }


    /* ABOUT */

    .about-story-content{
        padding:55px 7%;
    }

    .about-story-content h2,
    .about-services-heading h2{
        font-size:38px;
        line-height:1;
    }

    .about-story-content p,
    .about-services-heading > p:last-child{
        font-size:16px;
        line-height:1.65;
    }

    .about-story-image,
    .about-story-image img{
        height:330px;
    }

    .about-services{
        padding:65px 0;
    }

    .about-services-heading{
        margin-bottom:45px;
    }

    .about-services-grid{
        grid-template-columns:1fr;
    }

    .about-service{
        min-height:0;
        padding:35px 28px;
    }

    .about-service > span{
        margin-bottom:20px;
        font-size:44px;
    }

    .about-service h3{
        font-size:27px;
    }

    .about-services-bottom{
        margin-top:50px;
    }

    .about-services-bottom > p{
        font-size:16px;
        line-height:1.7;
    }

    .about-cta-buttons{
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }

    .about-cta-buttons a,
    .about-call-btn{
        width:100%;
        max-width:none;
    }


    /* SERVICE PAGES */

    .service-intro-content{
        padding:55px 7%;
    }

    .service-intro-content h2,
    .service-details-main h2,
    .service-why-heading h2,
    .service-cta h2{
        font-size:38px;
        line-height:1;
    }

    .service-intro-content p,
    .service-details-main > p:not(.service-eyebrow){
        font-size:16px;
        line-height:1.65;
    }

    .service-intro-image,
    .service-intro-image img{
        height:330px;
    }

    .service-details,
    .service-why{
        padding:65px 0;
    }

    .service-details-grid{
        gap:40px;
    }

    .service-brand-panel{
        padding:38px 28px;
    }

    .service-brand-panel h3{
        font-size:42px;
    }

    .service-why-heading{
        margin-bottom:45px;
    }

    .service-benefits-grid,
    .repair-benefits-grid,
    .maintenance-benefits-grid{
        grid-template-columns:1fr;
    }

    .service-benefit,
    .repair-benefits-grid .service-benefit{
        min-height:0;
        padding:35px 28px;
        border-right:0;
        border-bottom:1px solid #ccc;
    }

    .service-benefit:last-child{
        border-bottom:0;
    }

    .service-benefit > span{
        margin-bottom:20px;
        font-size:45px;
    }

    .service-benefit h3{
        font-size:27px;
    }

    .service-cta{
        padding:65px 0;
    }

    .service-cta-content{
        gap:35px;
    }

    .service-cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .service-cta-buttons a,
    .service-call-btn{
        width:100%;
        min-width:0;
    }


    /* AREAS WE SERVE */

    .areas-simple-intro{
        padding:65px 0;
    }

    .areas-simple-intro h2,
    .areas-info h2{
        font-size:38px;
        line-height:1;
    }

    .areas-simple-intro p:not(.service-eyebrow){
        font-size:15px;
        line-height:1.7;
    }

    .areas-map-section{
        padding:65px 0;
    }

    .areas-map-layout{
        gap:45px;
    }

    .areas-large-map{
        height:360px;
    }

    .areas-info-block + .areas-info-block{
        margin-top:50px;
    }

    .areas-city-list{
        grid-template-columns:1fr;
    }

    .areas-city-list li{
        padding:15px 16px;
        font-size:20px;
    }


    /* GALLERY */

    .gallery-intro{
        padding:65px 0 45px !important;
    }

    .gallery-intro h2{
        font-size:38px !important;
        line-height:1 !important;
    }

    .gallery-intro p:not(.service-eyebrow){
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .gallery-section{
        padding-bottom:65px !important;
    }

    .gallery-grid{
        grid-template-columns:1fr !important;
        gap:14px !important;
    }

    .gallery-item{
        height:330px !important;
    }

    .gallery-lightbox{
        padding:15px;
    }

    .gallery-lightbox-image{
        max-width:95vw;
        max-height:82vh;
    }

    .gallery-lightbox-close{
        top:12px;
        right:18px;
        font-size:48px;
    }


    /* CONTACT */

    .contact-section{
        padding:65px 0 !important;
    }

    .contact-layout{
        grid-template-columns:1fr !important;
        gap:45px !important;
    }

    .contact-content h2,
    .contact-form-panel h2{
        font-size:38px !important;
        line-height:1 !important;
    }

    .contact-content > p:not(.service-eyebrow){
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .contact-details{
        margin-top:35px !important;
    }

    .contact-detail{
        gap:15px !important;
        padding:18px 0 !important;
    }

    .contact-detail > span{
        flex:0 0 48px !important;
        width:48px !important;
        height:48px !important;
    }

    .contact-detail strong{
        font-size:20px !important;
        overflow-wrap:anywhere;
    }

    .contact-form-panel{
        padding:35px 25px !important;
    }

    .contact-form-row{
        grid-template-columns:1fr !important;
        gap:0 !important;
    }

    .contact-field input,
    .contact-field select,
    .contact-field textarea{
        font-size:16px !important;
    }

    .contact-submit{
        min-height:54px !important;
    }

}


/* ===================================================
   SMALL MOBILE
   =================================================== */

@media(max-width:479px){

    .about-hero,
    .service-page-hero{
        min-height:360px;
        padding:85px 0 50px;
    }

    .about-hero h1,
    .service-page-hero h1{
        font-size:38px;
    }

    .about-story-content h2,
    .about-services-heading h2,
    .service-intro-content h2,
    .service-details-main h2,
    .service-why-heading h2,
    .service-cta h2,
    .areas-simple-intro h2,
    .areas-info h2{
        font-size:34px;
    }

    .about-story-image,
    .about-story-image img,
    .service-intro-image,
    .service-intro-image img{
        height:285px;
    }

    .about-service,
    .service-benefit,
    .repair-benefits-grid .service-benefit{
        padding:30px 22px;
    }

    .service-brand-panel{
        padding:32px 22px;
    }

    .service-brand-panel h3{
        font-size:37px;
    }

    .areas-large-map{
        height:300px;
    }

    .gallery-intro h2{
        font-size:34px !important;
    }

    .gallery-item{
        height:285px !important;
    }

    .contact-content h2,
    .contact-form-panel h2{
        font-size:34px !important;
    }

    .contact-form-panel{
        padding:30px 18px !important;
    }

    .contact-detail strong{
        font-size:18px !important;
    }

}