/* ==========================================

   A Cut Above Argyll V4

   Safe. Reliable. Professional.

========================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#f7f7f4;

    color:#2d2d2d;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:min(90%,1200px);

    margin:auto;

}

/* ==========================

   Header

========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#234126;

    z-index:1000;

    box-shadow:0 3px 15px rgba(0,0,0,.15);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 5%;

}

.logo img{

    height:70px;

    width:auto;

}

.nav-links{

    display:flex;

    gap:30px;

    list-style:none;

}

.nav-links a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#b5d46b;

}

.call-btn{

    background:#84a83f;

    color:#fff;

    text-decoration:none;

    padding:12px 24px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;

}

.call-btn:hover{

    background:#6d8d33;

}

/* ==========================

   Mobile Button

========================== */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:2rem;

    cursor:pointer;

}

/* ==========================

   Hero

========================== */

.hero{

    min-height:100vh;

    background:

    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),

    url("images/hero.jpg") center center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:120px 20px 80px;

}

.hero-content{

    max-width:850px;

}

.hero h1{

    font-size:4rem;

    margin-bottom:20px;

}

.hero h2{

    color:#b5d46b;

    font-size:2rem;

    margin-bottom:20px;

}

.hero p{

    font-size:1.25rem;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary,

.btn-secondary,

.btn-outline{

    padding:16px 34px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn-primary{

    background:#84a83f;

    color:white;

}

.btn-primary:hover{

    background:#6d8d33;

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:#234126;

}

.btn-outline{

    background:white;

    color:#234126;

}

.btn-outline:hover{

    background:#84a83f;

    color:white;

}
/* ==========================================

   Trust Bar

========================================== */

.trust-bar{

    background:#234126;

    color:white;

    padding:25px 0;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

    text-align:center;

    font-weight:600;

}

/* ==========================================

   Sections

========================================== */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.8rem;

    color:#234126;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:1.1rem;

}

/* ==========================================

   Services

========================================== */

.services{

    background:#f7f7f4;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.service-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.service-card h3{

    color:#234126;

    padding:25px 25px 10px;

    font-size:1.4rem;

}

.service-card p{

    padding:0 25px 30px;

    color:#555;

}

/* ==========================================

   Gallery

========================================== */

.gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:16px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

/* ==========================================

   About

========================================== */

.about{

    background:#eef3e8;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.about-text h2{

    color:#234126;

    margin-bottom:20px;

    font-size:2.5rem;

}

.about-text p{

    margin-bottom:20px;

    color:#444;

}

.about-list{

    list-style:none;

}

.about-list li{

    margin-bottom:12px;

    font-weight:600;

    color:#234126;

}
/* ==========================================

   Contact

========================================== */

.contact{

    background:#234126;

    color:white;

    text-align:center;

}

.contact h2{

    font-size:2.8rem;

    margin-bottom:20px;

}

.contact p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:1.1rem;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.service-area{

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

    padding:30px;

    border-radius:18px;

    max-width:850px;

    margin:0 auto;

}

.service-area h3{

    margin-bottom:15px;

    color:#b5d46b;

}

/* ==========================================

   Footer

========================================== */

footer{

    background:#182b1b;

    color:white;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    margin-bottom:40px;

}

.footer-logo{

    height:80px;

    margin-bottom:20px;

}

.footer-tagline{

    color:#b5d46b;

    font-weight:bold;

}

footer h3{

    margin-bottom:15px;

    color:#b5d46b;

}

footer ul{

    list-style:none;

}

footer li{

    margin-bottom:10px;

}

footer p{

    margin-bottom:10px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding-top:25px;

    color:#ccc;

    font-size:.9rem;

}

/* ==========================================

   Responsive

========================================== */

@media (max-width:900px){

    .hero h1{

        font-size:3rem;

    }

    .hero h2{

        font-size:1.6rem;

    }

    .nav-links{

        display:none;

        flex-direction:column;

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#234126;

        padding:25px 0;

        text-align:center;

    }

    .nav-links.active{

        display:flex;

    }

    .menu-toggle{

        display:block;

    }

    .call-btn{

        display:none;

    }

}

@media (max-width:600px){

    .hero{

        padding-top:140px;

    }

    .hero h1{

        font-size:2.4rem;

    }

    .hero h2{

        font-size:1.3rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    section{

        padding:70px 0;

    }

    .section-title h2{

        font-size:2.2rem;

    }

}
