/* ======================================================
   SEAN B SOLUTIONS
   SERVICES PAGE STYLES
   File: assets/css/pages/services.css
====================================================== */



/* ======================================================
   SERVICES HERO
====================================================== */


.services-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    color:#ffffff;

}



.services-hero-background{

    position:absolute;

    inset:0;

    background:

    url("/assets/images/services/hero.webp")

    center center / cover no-repeat;

    z-index:0;

}



.services-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(7,18,35,.96),
        rgba(11,31,58,.88),
        rgba(11,31,58,.55)
    );

    z-index:1;

}



.services-hero .container{

    position:relative;

    z-index:2;

}




.services-hero-wrapper{

    display:grid;

    grid-template-columns:1fr 450px;

    gap:60px;

    align-items:center;

    padding:90px 0;

}






/* ======================================================
   CONTENT
====================================================== */


.services-hero-content{

    max-width:760px;

}



.services-hero .section-tag{

    display:inline-flex;

    align-items:center;

    background:#e60000;

    color:#ffffff;

    padding:9px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}



.services-hero h1{

    font-size:clamp(40px,5vw,64px);

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

    color:#ffffff;

}



.services-hero h1 span{

    color:#e60000;

    display:block;

}



.services-hero p{

    max-width:720px;

    font-size:18px;

    line-height:1.8;

    color:#f1f5f9;

    margin-bottom:35px;

}






/* ======================================================
   BUTTONS
====================================================== */


.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



.hero-buttons .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 32px;

    border-radius:8px;

    font-weight:700;

    transition:.3s ease;

}



.hero-buttons .btn-primary{

    background:#e60000;

    color:#ffffff;

}



.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

}



.hero-buttons .btn-secondary{

    border:2px solid #ffffff;

    color:#ffffff;

    background:rgba(255,255,255,.08);

}



.hero-buttons .btn-secondary:hover{

    background:#ffffff;

    color:#0b1f3a;

}







/* ======================================================
   TRUST STATS
====================================================== */


.hero-trust{

    display:flex;

    gap:45px;

    margin-top:50px;

    flex-wrap:wrap;

}



.trust-item{

    display:flex;

    flex-direction:column;

}



.trust-item strong{

    font-size:36px;

    font-weight:800;

    color:#ffffff;

}



.trust-item span{

    color:#dbe4ef;

    font-size:14px;

}







/* ======================================================
   HERO IMAGE
====================================================== */


.services-hero-image{

    position:relative;

}



.hero-image-card{

    background:#ffffff;

    padding:10px;

    border-radius:22px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}



.hero-image-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:18px;

    display:block;

}






/* FLOATING CARD */


.floating-card{

    position:absolute;

    bottom:35px;

    left:-50px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#ffffff;

    color:#0b1f3a;

    padding:18px 22px;

    border-radius:15px;

    box-shadow:

    0 15px 40px rgba(0,0,0,.20);

}



.floating-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e60000;

    color:#ffffff;

    border-radius:12px;

    font-size:22px;

}



.floating-card strong{

    display:block;

    font-size:16px;

}



.floating-card span{

    display:block;

    color:#64748b;

    font-size:13px;

    margin-top:4px;

}







/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1200px){


.services-hero-wrapper{

    grid-template-columns:1fr;

    text-align:center;

}



.services-hero-content{

    margin:auto;

}



.services-hero-image{

    max-width:500px;

    margin:40px auto 0;

}



.hero-buttons{

    justify-content:center;

}



.hero-trust{

    justify-content:center;

}


}





@media(max-width:768px){


.services-hero{

    min-height:auto;

}



.services-hero-wrapper{

    padding:120px 20px 70px;

}



.services-hero h1{

    font-size:36px;

}



.services-hero p{

    font-size:16px;

}



.hero-buttons{

    flex-direction:column;

}



.hero-buttons .btn{

    width:100%;

}



.hero-trust{

    gap:25px;

}



.trust-item strong{

    font-size:28px;

}



.hero-image-card img{

    height:350px;

}



.floating-card{

    position:relative;

    left:0;

    bottom:0;

    margin-top:20px;

    text-align:left;

}


}





@media(max-width:480px){


.services-hero-wrapper{

    padding-left:15px;

    padding-right:15px;

}



.services-hero h1{

    font-size:30px;

}



.services-hero .section-tag{

    font-size:12px;

}



.hero-trust{

    flex-direction:column;

    align-items:center;

}



.hero-image-card img{

    height:280px;

}



.floating-card{

    padding:15px;

}


}

/* ======================================================
   SERVICES OVERVIEW SECTION
====================================================== */


.services-overview{

    padding:100px 0;

    background:#f5f7fa;

}



/* ======================================================
   HEADER
====================================================== */


.services-overview-header{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

}


.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#0b1f3a;

    color:#ffffff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}


.services-overview .section-title{

    color:#0b1f3a;

    font-size:clamp(32px,4vw,48px);

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}


.services-overview .section-title span{

    display:block;

    color:#e60000;

}


.section-description{

    max-width:750px;

    margin:auto;

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}





/* ======================================================
   SERVICE GRID
====================================================== */


.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}





/* ======================================================
   SERVICE CARD
====================================================== */


.service-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    transition:.35s ease;

    box-shadow:

    0 10px 30px rgba(11,31,58,.08);

}





.service-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 20px 45px rgba(11,31,58,.15);

}





/* ======================================================
   SERVICE CARD IMAGES
====================================================== */


.service-image{

    height:260px;

    overflow:hidden;

    background:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

}




.service-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(11,31,58,.18),
        transparent
    );

    pointer-events:none;

}




.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:.5s ease;

}




.service-card:hover .service-image img{

    transform:scale(1.08);

}






/* ======================================================
   CONTENT
====================================================== */


.service-content{

    padding:30px 25px 35px;

    text-align:center;

}



.service-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:-62px auto 20px;

    background:#e60000;

    color:#ffffff;

    border-radius:50%;

    font-size:25px;

    border:6px solid #ffffff;

    position:relative;

    transition:.35s ease;

}



.service-card:hover .service-icon{

    transform:rotateY(360deg);

}





.service-content h3{

    color:#0b1f3a;

    font-size:22px;

    font-weight:800;

    margin-bottom:15px;

}



.service-content p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

    margin-bottom:20px;

}





.service-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#e60000;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}



.service-content a:hover{

    gap:14px;

}







/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1200px){


.services-grid{

    grid-template-columns:repeat(3,1fr);

}


}





@media(max-width:992px){


.services-grid{

    grid-template-columns:repeat(2,1fr);

}


.services-overview{

    padding:80px 0;

}


}





@media(max-width:768px){


.services-grid{

    grid-template-columns:1fr;

}



.services-overview-header{

    margin-bottom:40px;

}



.service-card{

    max-width:420px;

    margin:auto;

}



.service-image{

    height:220px;

}



.service-content{

    padding:25px 20px 30px;

}



.services-overview .section-title{

    font-size:32px;

}



.section-description{

    font-size:16px;

}


}





@media(max-width:480px){


.service-image{

    height:200px;

}


.service-content h3{

    font-size:20px;

}



.section-badge{

    font-size:12px;

    padding:8px 18px;

}


}

/* ======================================================
   SERVICE DETAIL SECTIONS
====================================================== */


.service-detail-section{

    padding:110px 0;

    background:#ffffff;

}





.service-detail-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}





/* ======================================================
   IMAGE AREA
====================================================== */


.service-detail-image{

    position:relative;

    width:100%;

}



.image-box{

    width:100%;

    height:520px;

    overflow:hidden;

    border-radius:28px;

    background:#f8fafc;

    box-shadow:

    0 25px 60px rgba(11,31,58,.18);

    position:relative;

}




.image-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(11,31,58,.18),
        transparent 40%
    );

    z-index:1;

    pointer-events:none;

}




.image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:.6s ease;

}




.image-box:hover img{

    transform:scale(1.06);

}


/* ======================================================
   FLOATING SERVICE CARD
====================================================== */


.service-floating-card{

    position:absolute;

    bottom:30px;

    right:-35px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#ffffff;

    padding:18px 25px;

    border-radius:18px;

    box-shadow:

    0 15px 40px rgba(11,31,58,.20);

    z-index:2;

    max-width:330px;

}



.service-floating-card i{

    width:55px;

    height:55px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e60000;

    color:#ffffff;

    border-radius:14px;

    font-size:24px;

}


.service-floating-card strong{

    display:block;

    color:#0b1f3a;

    font-size:16px;

    font-weight:800;

}



.service-floating-card span{

    display:block;

    color:#64748b;

    font-size:13px;

    margin-top:5px;

}





/* ======================================================
   CONTENT
====================================================== */


.service-detail-content{

    max-width:600px;

}



.service-detail-content .section-badge{

    margin-bottom:25px;

}



.service-detail-content h2{

    color:#0b1f3a;

    font-size:clamp(32px,4vw,48px);

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

}





.service-detail-content h2 span{

    display:block;

    color:#e60000;

}





.service-detail-content p{

    color:#64748b;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}





/* ======================================================
   FEATURES
====================================================== */


.service-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}





.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:#0b1f3a;

    font-weight:600;

    font-size:15px;

}





.feature-item i{

    color:#e60000;

    font-size:18px;

}







/* ======================================================
   BUTTON
====================================================== */


.service-button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#e60000;

    color:#ffffff;

    padding:15px 30px;

    border-radius:8px;

    font-weight:700;

    transition:.3s ease;

    text-decoration:none;

}





.service-button:hover{

    transform:translateY(-4px);

    background:#c90000;

}





/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1100px){


.service-detail-grid{

    grid-template-columns:1fr;

    gap:50px;

}



.service-detail-content{

    max-width:100%;

}



.service-detail-image{

    max-width:700px;

    margin:auto;

}


}





@media(max-width:768px){


.service-detail-section{

    padding:75px 0;

}



.service-detail-grid{

    gap:35px;

}



.image-box img{

    height:380px;
    

}



.service-floating-card{

        position:relative;

        right:auto;

        bottom:auto;

        margin-top:20px;

        max-width:100%;

    }

}


.service-detail-content h2{

    font-size:32px;

}



.service-detail-content p{

    font-size:16px;

}



.service-features{

    grid-template-columns:1fr;

}



.service-button{

    width:100%;

    justify-content:center;

}


}





@media(max-width:480px){


.image-box img{

    height:300px;

}



.service-floating-card{

    padding:15px;

}



.service-floating-card i{

    width:45px;

    height:45px;

    font-size:20px;

}



.service-detail-content h2{

    font-size:28px;

}


}

/* ======================================================
   SERVICE PROCESS SECTION
====================================================== */


.service-process-section{

    padding:110px 0;

    background:#f5f7fa;

}




.process-header{

    max-width:800px;

    margin:0 auto 60px;

    text-align:center;

}




.process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}




.process-card{

    background:#ffffff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    position:relative;

    transition:.35s ease;

    box-shadow:

    0 10px 30px rgba(11,31,58,.08);

}




.process-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 20px 45px rgba(11,31,58,.15);

}




.process-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:40px;

    font-weight:900;

    color:#eef2f7;

}





/* ======================================================
   PROCESS IMAGE
====================================================== */


.process-image{

    width:100%;

    height:190px;

    overflow:hidden;

    border-radius:20px;

    margin-bottom:25px;

}



.process-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}



.process-card:hover .process-image img{

    transform:scale(1.08);

}




.process-card h3{

    color:#0b1f3a;

    font-size:21px;

    font-weight:800;

    margin-bottom:15px;

}





.process-card p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

}





/* RESPONSIVE */


@media(max-width:1200px){


.process-grid{

    grid-template-columns:repeat(3,1fr);

}


}





@media(max-width:768px){


.service-process-section{

    padding:75px 0;

}



.process-grid{

    grid-template-columns:1fr;

}



.process-card{

    padding:30px 22px;

}


}

/* ======================================================
   SERVICES CTA SECTION
====================================================== */


.services-cta{

    position:relative;

    padding:110px 0;

    overflow:hidden;

    background:

    linear-gradient(
        rgba(11,31,58,.94),
        rgba(11,31,58,.94)
    ),

    url("/assets/images/services/fire alarm system 1.jpg")
    center/cover no-repeat;

    color:#ffffff;

}




.services-cta .container{

    position:relative;

    z-index:2;

}





.cta-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(230,0,0,.25),
        transparent 45%
    );

}





.services-cta-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}







.cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(230,0,0,.18);

    border:1px solid rgba(230,0,0,.45);

    color:#ffffff;

    font-weight:700;

    margin-bottom:25px;

}





.services-cta h2{

    font-size:clamp(36px,5vw,58px);

    line-height:1.2;

    font-weight:900;

    margin-bottom:25px;

    color:#ffffff;

}





.services-cta h2 span{

    color:#e60000;

}





.services-cta p{

    max-width:720px;

    margin:0 auto 40px;

    color:#f1f5f9;

    font-size:18px;

    line-height:1.8;

}






.cta-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}





.cta-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 35px;

    border-radius:10px;

    font-weight:800;

    transition:.3s ease;

}






.primary-cta{

    background:#e60000;

    color:#ffffff;

}





.primary-cta:hover{

    transform:translateY(-4px);

}







.secondary-cta{

    border:2px solid #ffffff;

    color:#ffffff;

}





.secondary-cta:hover{

    background:#ffffff;

    color:#0b1f3a;

}







@media(max-width:768px){


.services-hero-wrapper{

    padding:110px 20px 70px;

}



.services-hero-image{

    margin-top:30px;

}



.service-detail-section{

    padding:75px 0;

}



.service-detail-grid{

    gap:40px;

}



.service-features{

    grid-template-columns:1fr;

}



.services-cta{

    padding:80px 20px;

}


}



@media(max-width:480px){


.services-hero h1{

    font-size:30px;

}



.service-detail-content h2{

    font-size:28px;

}



.service-floating-card{

    padding:15px;

}



.cta-button{

    width:100%;

}


}

/* ======================================================
   GLOBAL SERVICE POLISH
====================================================== */


.services-hero,
.services-overview,
.service-detail-section,
.service-process-section,
.services-cta{

    overflow:hidden;

}



.service-detail-section:nth-child(even){

    background:#f5f7fa;

}



img{

    max-width:100%;

}

/* ======================================================
   GLOBAL SERVICES MOBILE FIXES
====================================================== */


@media(max-width:768px){


/* CONTAINER */

.services-hero .container,
.services-overview .container,
.service-detail-section .container,
.service-process-section .container,
.services-cta .container{

    padding-left:20px;

    padding-right:20px;

}



/* ======================================================
   HERO MOBILE
====================================================== */


.services-hero-wrapper{

    display:flex;

    flex-direction:column;

    gap:40px;

    padding:120px 0 70px;

}



.services-hero-content{

    text-align:center;

}



.services-hero h1{

    font-size:34px;

    line-height:1.2;

}



.services-hero p{

    font-size:16px;

    line-height:1.7;

}



.hero-buttons{

    flex-direction:column;

    width:100%;

}



.hero-buttons .btn{

    width:100%;

}



.hero-trust{

    justify-content:center;

    gap:25px;

}



.trust-item{

    text-align:center;

}





/* HERO IMAGE */


.hero-image-card img{

    height:320px;

}



.floating-card{

    position:relative;

    left:0;

    bottom:auto;

    margin-top:20px;

    width:100%;

}







/* ======================================================
   SERVICES OVERVIEW
====================================================== */


.services-overview{

    padding:75px 0;

}



.services-grid{

    grid-template-columns:1fr;

    gap:25px;

}



.service-card{

    max-width:420px;

    margin:auto;

}



.service-image{

    height:230px;

}





.service-content{

    padding:30px 20px;

}



.service-content h3{

    font-size:21px;

}







/* ======================================================
   SERVICE DETAIL SECTIONS
====================================================== */


.service-detail-section{

    padding:75px 0;

}



.service-detail-grid{

    grid-template-columns:1fr;

    gap:40px;

}



.service-detail-image{

    order:1;

}



.service-detail-content{

    order:2;

}





.image-box{

    height:350px;

    border-radius:20px;

}



.image-box img{

    object-fit:cover;

}






.service-floating-card{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:20px;

    width:100%;

}





.service-detail-content h2{

    font-size:32px;

}



.service-detail-content p{

    font-size:16px;

}





.service-features{

    grid-template-columns:1fr;

    gap:15px;

}





.service-button{

    width:100%;

    justify-content:center;

}







/* ======================================================
   PROCESS SECTION
====================================================== */


.service-process-section{

    padding:75px 0;

}



.process-grid{

    grid-template-columns:1fr;

    gap:25px;

}



.process-card{

    max-width:420px;

    margin:auto;

}







/* ======================================================
   CTA SECTION
====================================================== */


.services-cta{

    padding:80px 0;

}



.services-cta h2{

    font-size:34px;

}



.services-cta p{

    font-size:16px;

}



.cta-actions{

    flex-direction:column;

    align-items:center;

}



.cta-button{

    width:100%;

    max-width:340px;

}




}







/* ======================================================
   SMALL MOBILE DEVICES
====================================================== */


@media(max-width:480px){



.services-hero-wrapper{

    padding-top:100px;

}



.services-hero h1{

    font-size:30px;

}



.services-hero .section-tag{

    font-size:12px;

    padding:8px 16px;

}



.hero-image-card img{

    height:270px;

}



.trust-item strong{

    font-size:26px;

}



.service-image{

    height:200px;

}



.service-detail-content h2{

    font-size:28px;

}



.service-floating-card{

    padding:15px;

}



.service-floating-card i{

    width:45px;

    height:45px;

    font-size:20px;

}



.process-card h3{

    font-size:20px;

}



.cta-badge{

    font-size:12px;

    padding:8px 16px;

}


}