
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

:root{
    --blue:#003fbd;
    --dark:#111827;
    --light:#f7f9fc;
    --white:#ffffff;
    --green:#12a84a;
    --border:#dbe4f0;
}

body{
    background:var(--white);
    color:var(--dark);
}

html{
    scroll-behavior:smooth;
}

/* HEADER */

header{
    width:100%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #e5eaf2;
}

.header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 30px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:22px;
}

.logo-circle{
    width:115px;
    height:115px;
    border:3px solid var(--blue);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    overflow:hidden;
}

.logo-circle img{
    width:95%;
    height:auto;
}

.divider{
    height:70px;
    width:2px;
    background:var(--blue);
}

.trusted{
    font-size:15px;
    font-weight:800;
    line-height:1.2;
}

.trusted span{
    color:var(--blue);
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    margin-left:28px;
    font-size:15px;
}

.nav-wrap{
    background:var(--blue);
    padding:22px 35px;
    border-bottom-left-radius:45px;
}

/* HERO */

.hero{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:30px;
    padding:65px 30px 40px;
}

.hero h1{
    font-size:58px;
    line-height:1;
    color:var(--blue);
    margin-bottom:25px;
}

.hero h2{
    font-size:25px;
    margin-bottom:25px;
    font-weight:600;
}

.blue-line{
    width:70px;
    height:5px;
    background:var(--blue);
    margin-bottom:25px;
}

.service-list{
    line-height:2;
    font-size:17px;
}

.service-list span{
    color:var(--blue);
    font-weight:bold;
    margin:0 8px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 28px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    font-weight:bold;
    border:none;
    cursor:pointer;
    font-size:16px;
}

.green{
    background:var(--green);
}

.blue{
    background:var(--blue);
}

.hero-image{
    min-height:420px;
    background:
    linear-gradient(rgba(255,255,255,0.15),rgba(255,255,255,0.95)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    border-radius:18px;
}

/* SECTIONS */

section{
    padding:70px 30px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title small{
    color:var(--blue);
    font-weight:bold;
}

.section-title h2{
    font-size:38px;
    margin-top:10px;
}

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

/* CARDS */

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

.card{
    background:white;
    border:1px solid var(--border);
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.card .icon{
    font-size:48px;
    margin-bottom:15px;
}

.card h3{
    color:var(--blue);
    margin-bottom:12px;
}

.card p{
    line-height:1.6;
    font-size:15px;
}

/* CTA */

.cta{
    margin-top:45px;
    background:#eef5ff;
    border-radius:14px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* WORK */

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

.work-card{
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    background:white;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.work-img{
    height:190px;
    background:#dfe7f2;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#667085;
    font-weight:bold;
}

.work-card div:last-child{
    padding:18px;
}

.work-card h3{
    color:var(--blue);
    margin-bottom:8px;
}

/* ABOUT */

.about-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:start;
}

.about-text h3{
    color:var(--blue);
    margin-top:25px;
    margin-bottom:10px;
}

.about-text p,
.about-text li{
    line-height:1.7;
}

.about-box{
    background:#eef5ff;
    border-radius:18px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-feature{
    text-align:center;
    padding:20px;
    background:white;
    border-radius:12px;
    border:1px solid var(--border);
}

.about-feature div{
    font-size:42px;
    margin-bottom:10px;
}

/* CONTACT */

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

.contact-card{
    background:white;
    border:1px solid var(--border);
    border-radius:14px;
    padding:28px;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.contact-card h3{
    color:var(--blue);
    margin-bottom:18px;
}

.contact-card p{
    line-height:1.9;
}

input, textarea{
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border:1px solid var(--border);
    border-radius:8px;
    font-size:15px;
}

textarea{
    height:130px;
}

.map-box{
    height:260px;
    background:#e8f0fa;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

/* FOOTER */

footer{
    background:var(--blue);
    color:white;
}

.footer-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:28px 30px;
    text-align:center;
}

.footer-item{
    border-right:1px solid rgba(255,255,255,0.35);
}

.footer-item:last-child{
    border-right:none;
}

.footer-item strong{
    display:block;
    margin-bottom:5px;
}

.bottom-footer{
    background:#050b18;
    color:white;
    text-align:center;
    padding:16px;
}

/* MODAL */

.modal{
    display:none;
    position:fixed;
    z-index:2000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.modal-content{
    background:white;
    max-width:420px;
    margin:10% auto;
    padding:35px;
    border-radius:18px;
    text-align:center;
}

.modal-content h2{
    margin-bottom:25px;
}

.modal-btn{
    display:block;
    margin:14px 0;
    padding:15px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.close{
    background:#111827;
}

/* MOBILE */

@media(max-width:900px){
    .hero,
    .about-layout,
    .contact-layout{
        grid-template-columns:1fr;
    }

    .grid,
    .work-grid,
    .footer-inner{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .nav-wrap{
        display:none;
    }

    .header-inner{
        justify-content:center;
    }

    .cta{
        flex-direction:column;
        text-align:center;
    }

    .footer-item{
        border-right:none;
    }
}


/* MULTI-PAGE ADDITIONS */
.page-hero{
    background:var(--light);
    padding:55px 30px;
    text-align:center;
}
.page-hero h1{
    color:var(--blue);
    font-size:46px;
    margin-bottom:12px;
}
.page-hero p{
    font-size:18px;
    line-height:1.6;
}
nav a.active{
    text-decoration:underline;
    text-underline-offset:6px;
}
@media(max-width:900px){
    .page-hero h1{font-size:34px;}
}


/* UPDATED HOME PAGE HERO */
.hero-full{
    max-width:none;
    min-height:560px;
    display:flex;
    align-items:center;
    margin:0;
    padding:80px 30px;
    background:
    linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.25), rgba(0,0,0,0.05)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    border-radius:0;
}

.hero-overlay-content{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.hero-full h1{
    color:white;
    max-width:560px;
}

.hero-full h2{
    color:white;
    max-width:560px;
}

.hero-full .blue-line{
    background:var(--blue);
}

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

.paint-roller-icon{
    width:52px;
    height:52px;
    fill:none;
    stroke:var(--blue);
    stroke-width:5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.card .icon{
    color:var(--blue);
    min-height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:1100px){
    .home-services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:700px){
    .home-services-grid{
        grid-template-columns:1fr;
    }

    .hero-full{
        min-height:480px;
    }
}
