/* ======================================
   RESET
====================================== */
html{

    scroll-behavior:smooth;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

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

    background:#ffffff;

    color:#333;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a {
    text-decoration:none;
    transition:0.3s;
}

nav a:hover {
    color:#F57C00;
}

section{

    padding:110px 8%;

}
/* ======================================
   HEADER
====================================== */
header{

    position:sticky;

    top:0;

    z-index:1000;

    background:white;

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

}
header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:#1B5E20;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:120px;
    height:auto;

}

.logo h1{

    color:white;

    font-size:42px;

}

.logo span{

    color:#F57C00;
font-weight:700;
}

nav{

    display:flex;

    gap:45px;

}

nav a{

    color:white;

    font-weight:bold;

}

.call-btn{

    background:#ff7a00;

    color:white;

    padding:15px 32px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;

     box-shadow:0 8px 25px rgba(255,122,0,.45);

}

.call-btn:hover{

    transform:translateY(-3px);

    background:#ff8d1a;

}


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

.hero{
    min-height:750px;

    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    color:white;
}

.hero-content{

    max-width:900px;

    padding:auto;

}

.hero h2{

    color:#F57C00;

    font-size:36px;

    letter-spacing:6px;

    margin-bottom:10px;

}

.hero h1{

    font-size:78px;

    font-weight:800;

}

.hero p{

    font-size:20px;

    margin-bottom:20px;

}

.hero-location{

    font-weight:bold;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:35px 0;

}

.hero-call{

    background:#F57C00;

    color:white;

    padding:16px 34px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.hero-call:hover{

    background:#d96c00;

}

.hero-service{

    background:white;

    color:#1B5E20;

    padding:16px 34px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.hero-service:hover{

    background:#eeeeee;

}

.hero-badges{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:25px;

}

.hero-badges span{

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

    padding:10px 18px;

    border-radius:20px;

    backdrop-filter:blur(3px);

}
/* ======================================
   HERO MOBILE
====================================== */

@media (max-width:768px){

    .hero{

        height:auto;

        padding:80px 20px;

    }

    .hero h1{

        font-size:40px;

    }

    .hero h2{

        font-size:24px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-call,
    .hero-service{

        width:250px;

        text-align:center;

    }

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

.services{

    padding:90px 8%;

    background:#f8f8f8;

    text-align:center;

}

.services h2{

    font-size:42px;

    color:#1B5E20;

    margin-bottom:15px;

}

.section-text{

    font-size:20px;

    color:#666;

    margin-bottom:50px;

}

.service-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:white;

    padding:35px;

    border-radius:15px;

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

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

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

}

.icon{

    font-size:55px;

    margin-bottom:20px;

}

.service-card h3{

    color:#1B5E20;

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:#666;

    line-height:1.7;

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

    .services h2{

        font-size:34px;

    }

    .section-text{

        font-size:18px;

    }

}
/* ===================================
   WHY CHOOSE US
=================================== */

.why{

    padding:90px 8%;

    background:white;

    text-align:center;

}

.why h2{

    font-size:42px;

    color:#1B5E20;

    margin-bottom:15px;

}

.why-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.why-card{

    background:#ffffff;

    border-radius:15px;

    padding:35px;

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

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

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

}

.why-icon{

    font-size:50px;

    margin-bottom:20px;

}

.why-card h3{

    color:#1B5E20;

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.7;

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

    .why h2{

        font-size:34px;

    }

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

.areas{

    padding:100px 8% 130px;

    background:#f8f8f8;

    

}

.areas h2{

    font-size:42px;

    color:#1B5E20;

    margin-bottom:15px;

}

.areas-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.area-card{

    background:white;

    border-radius:15px;

    padding:35px;

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

    transition:.3s;

}

.area-card:hover{

    transform:translateY(-8px);

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

}

.area-card h3{

    color:#F57C00;

    margin-bottom:15px;

    font-size:26px;

}

.area-card p{

    color:#666;

    line-height:1.8;

}

.service-call{

    margin-top:60px;

}

.service-call h3{

    color:#1B5E20;

    font-size:32px;

    margin-bottom:10px;

}

.call-area-btn{

    display:inline-block;

    margin-top:25px;

    background:#ff7a00;

    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;

    box-shadow:0 8px 20px rgba(255,122,0,.35);

}

.call-area-btn:hover{

    background:#e66f00;

    transform:translateY(-3px);

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

    .areas h2{

        font-size:34px;

    }

    .service-call h3{

        font-size:26px;

    }

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

.brands{

    padding:100px 8%;

    background:white;

    text-align:center;

}

.brands h2{

    color:#1B5E20;

    font-size:42px;

    margin-bottom:15px;

}

.brands-grid{

    display:grid;

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

    gap:20px;

    margin-top:50px;

}

.brand-card{

    background:#f7f7f7;

    padding:25px;

    border-radius:12px;

    font-size:22px;

    font-weight:700;

    color:#555;

    transition:.3s;

    border:1px solid #e8e8e8;

}

.brand-card:hover{

    background:#F57C00;

    color:white;

    transform:translateY(-5px);

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

.contact{

    padding:90px 8%;

    background:#f7f7f7;

    text-align:center;

}

.contact h2{

    color:#1B5E20;

    font-size:42px;

    margin-bottom:15px;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:50px;

    align-items:start;

}

.contact-info{

    text-align:left;

}

.contact-info h3{

    color:#1B5E20;

    margin-bottom:25px;

    font-size:30px;

}

.info-box{

    background:#f8f8f8;

    padding:20px;

    border-radius:10px;

    margin-bottom:20px;

}

.info-box strong{

    color:#F57C00;

}

.info-box a{

    color:#1B5E20;

    font-weight:bold;

}

.contact-form{

    background:#f8f8f8;

    padding:35px;

    border-radius:15px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    background:#F57C00;

    color:white;

    border:none;

    padding:18px;

    border-radius:10px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#e66f00;

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

.contact-container{

grid-template-columns:1fr;

}

.contact-info{

text-align:center;

}

}
/* ===============================
   GOOGLE REVIEWS
================================ */

.reviews{

    padding:130px 8%;

    background:white;

    text-align:center;
border-top:1px solid #e5e5e5;
}

.reviews h2{

    color:#1B5E20;

    font-size:42px;

    margin-bottom:20px;

}

.review-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:35px;

}

.review-btn,
.leave-review-btn{

    display:inline-block;

    background:#F57C00;

    color:white;

    padding:16px 32px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;

}

.review-btn:hover,
.leave-review-btn:hover{

    background:#e66f00;

    transform:translateY(-3px);

}
/* GOOGLE RATING CARD */

.rating-box{

    width:320px;

    margin:40px auto;

    background:white;

    padding:30px;

    border-radius:15px;

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

    text-align:center;

}

.google-icon{

    width:60px;

    display:block;

    margin:0 auto 20px;

}

.rating{

    color:#FFD700;

    font-size:30px;

    letter-spacing:4px;

    margin:15px 0;

}

.rating-box h1{

    font-size:60px;

    color:#1B5E20;

    margin:10px 0;

}

.rating-box h3{

    color:#333;

    margin-bottom:10px;

}

.rating-box p{

    color:#666;

    margin-top:10px;

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

footer{

    background:#1B5E20;

    color:white;

    padding:60px 8% 20px;

}

.footer-container{

    display:grid;

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

    gap:40px;

}

.footer-logo img{

    width:80px;

    margin-bottom:15px;

}

.footer-logo h3{

    margin-bottom:10px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links h4,
.footer-contact h4{

    margin-bottom:15px;

    color:#F57C00;

}

.footer-links a{

    color:white;

    margin-bottom:10px;

    transition:.3s;

}

.footer-links a:hover{

    color:#F57C00;

}

.footer-contact p{

    margin-bottom:10px;

}

.footer-bottom{

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

    margin-top:40px;

    padding-top:20px;

    text-align:center;

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

.footer-container{

    text-align:center;

}

.footer-logo img{

    margin:auto;

    margin-bottom:20px;

}

}
.floating-call{

    position:fixed;

    bottom:25px;

    right:25px;

    background:#F57C00;

    color:white;

    padding:16px 24px;

    border-radius:50px;

    font-weight:bold;

    text-decoration:none;

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

    z-index:999;

    transition:.3s;

}

.floating-call:hover{

    transform:scale(1.05);

    background:#ff8c00;

}
.back-top{

    position:fixed;

    bottom:90px;

    right:25px;

    width:50px;

    height:50px;

    background:#1B5E20;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

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

    .review-buttons{

        flex-direction:column;

        align-items:center;

    }

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

    .brands h2{

        font-size:34px;

    }

    .brand-card{

        font-size:18px;

        padding:18px;

    }

}

/* ===============================
   WHY CHOOSE
================================ */

.why-choose{

    padding:90px 8%;

    background:#ffffff;

    text-align:center;

}

.why-choose h2{

    color:#1B5E20;

    font-size:42px;

    margin-bottom:20px;

}

.why-grid{

    display:grid;

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

    gap:25px;

    margin-top:40px;

}

.why-card{

    background:#f8f8f8;

    padding:30px;

    border-radius:12px;

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

}

.why-card h3{

    color:#F57C00;

    margin-bottom:15px;

}

.why-card p{

    color:#555;

    line-height:1.6;

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

.faq{

    padding:90px 8%;

    background:#f8f8f8;

}

.faq h2{

    text-align:center;

    color:#1B5E20;

    font-size:42px;

    margin-bottom:40px;

}

.faq-item{

    background:white;

    padding:25px;

    margin-bottom:20px;

    border-radius:12px;

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

}

.faq-item h3{

    color:#F57C00;

    margin-bottom:12px;

}

.faq-item p{

    color:#555;

    line-height:1.7;

}
/* ===============================
   SERVICE LINKS
================================ */

.service-link{

    text-decoration:none;

    color:inherit;

    display:block;

}

.service-link:hover{

    text-decoration:none;

}

.service-link .service-card{

    transition:.3s;

}

.service-link:hover .service-card{

    transform:translateY(-8px);

}
/* ===============================
   RELATED SERVICES
================================ */

.related-services{

    padding:90px 8%;

    background:#ffffff;

    text-align:center;

}

.related-grid{

    display:grid;

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

    gap:25px;

    margin-top:40px;

}

.related-card{

    background:#f8f8f8;

    padding:35px;

    border-radius:12px;

    text-decoration:none;

    color:#1B5E20;

    font-weight:bold;

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

    transition:.3s;

}

.related-card:hover{

    transform:translateY(-6px);

    background:#1B5E20;

    color:white;

}

.related-card h3{

    margin-top:15px;

}
/* Brands */

.brands{
    padding:70px 10%;
    text-align:center;
}

.brand-grid{

    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
    gap:15px;
    margin-top:35px;

}

.brand-grid span{

    background:#fff;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);

}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.brand-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s ease;
}

.brand-card img {
    max-width: 140px;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* Testimonials */

.testimonials{

    padding:70px 10%;
    background:#f8f8f8;
    text-align:center;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:40px;

}

.testimonial{

    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.testimonial p{

    margin:20px 0;

}
.service-cta{

    padding:80px 10%;
    text-align:center;
    background:#1d3557;
    color:white;

}

.service-cta h2{

    margin-bottom:20px;

}

.service-cta p{

    margin-bottom:30px;

}
/* ======================================
   MOBILE size 
====================================== */


@media (max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    header{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:18px;
        padding:20px;
    }

    .logo{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
    }

    .logo img{
        width:65px;
        height:auto;
    }

    .logo h1{
        font-size:34px;
        margin:0;
    }

    nav{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    nav a{
        font-size:16px;
    }

    .call-btn{
        width:220px;
        text-align:center;
    }

    section{
        padding:60px 20px;
    }

    .hero{
        padding:90px 20px 70px;
    }

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

    .hero h2{
        font-size:24px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero-call,
    .hero-service{
        width:100%;
        max-width:300px;
    }

.service-grid,
.why-grid,
.areas-grid,
.related-grid{
    grid-template-columns:1fr;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}


