 *{margin:0;padding:0;box-sizing:border-box}

        body{
            font-family:Arial,Helvetica,sans-serif;
            background:#ececec;
            color:#666;
        }

        a{text-decoration:none;color:inherit}

        .container{
            width:95%;
            max-width:1100px;
            margin:auto;
        }

        /* Header */
        header{
            background:#fff;
            padding:28px 0 25px;
        }

        .nav{
            display:flex;
            align-items:center;
            justify-content:space-between;
        }

        .logo{
            display:flex;
            align-items:center;
            gap:10px;
        }

        .logo img{
            width:75px;
        }

        .logo h2{
            font-size:18px;
            color:#2d2100;
            font-weight:800;
        }

        .logo p{
            color:#9b6a00;
            font-size:16px;
            margin-top:5px;
        }

        .nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            font-weight: 600;
            color: #2d2100;
        }

       .nav ul li a.active {
            color: #f5a400;
        }
        

        .call{
            color:#2d2100;
            white-space:nowrap;
            font-weight:800;
        }

        .call i{
            color:#e83e8c;
            margin-right:6px;
        }

        /* Hero */
        .hero img{
            width:100%;
            height:405px;
            object-fit:cover;
            display:block;
        }

        .intro-main{
            padding:0 70px;
        }

        .pest-intro{
            background:#fff;
        }

        .intro {
            padding: 40px 0px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            line-height: 30px;
        }

        .intro b{
            color:#f5a400;
        }

        .section-title{
            display:flex;
            align-items:center;
            justify-content:center;
            gap:12px;
            color:#f5a400;
            font-size:34px;
            font-weight:400;
            margin:38px 0 25px;
        }

        .section-title:before,
        .section-title:after{
            content:"";
            height:2px;
            background:#666;
            flex:1;
        }

        /* Services */
        .services{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:20px;
        }

        .service-card h3{
            text-align:center;
            font-size:18px;
            font-weight:400;
            margin-bottom:15px;
        }

        .service-card img{
            width:100%;
            height:365px;
            object-fit:cover;
            display:block;
        }

        .service-card p {
            /* font-size: 18px; */
            line-height: 26px;
            padding: 18px 0;
            /* font-weight: 400; */
        }

        .btn-green{
            display:inline-block;
            background:#009b16;
            color:#fff;
            padding:11px 22px;
            font-size:12px;
            font-weight:800;
            margin-bottom:25px;
        }

        /* Pest Grid */
        .pests {
            background: #fff8f0;
            padding: 18px 21px 10px;
            margin-top: 25px;
        }

        .pest-grid{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:13px;
        }

        .pest-grid img{
            width:100%;
            height:145px;
            object-fit:cover;
            display:block;
        }

        .pest-grid span{
            display:block;
            background:#6ca000;
            color:#fff;
            text-align:center;
            padding:10px 5px;
            font-size:12px;
            font-weight:800;
            text-transform:uppercase;
        }

        /* Moto */
        .moto-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:42px;
        }

        .moto-grid>img{
            width:100%;
            height:570px;
            object-fit:cover;
            margin-top:45px;
        }

        .moto p{
            font-size:14px;
            line-height:21px;
        }

        .features{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:42px 28px;
            margin-top:65px;
        }

        .features h4{
            color:#555;
            font-size:16px;
            font-weight:800;
            text-transform:uppercase;
            margin-bottom:8px;
        }

        .features i{
            margin-right:8px;
        }

        /* Reviews */
        .reviews{
            padding-bottom:65px;
        }

        .review-grid{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:18px;
        }

        .review-card{
            background:#f4f4f4;
            border-radius:8px;
            min-height:155px;
            padding:22px;
            font-size:14px;
        }

        
        
        
        @media(max-width:991px){
            .container{width:94%}
            .intro-main{padding:0}
            header{padding:18px 0}

            .nav{
                flex-direction:column;
                gap:18px;
            }

            .nav ul{
                flex-wrap:wrap;
                justify-content:center;
                gap:15px;
            }

            .hero img{
                height:260px;
            }

            .intro{
                padding:28px 18px;
                font-size:15px;
                line-height:25px;
            }

            .services,
            .pest-grid,
            .moto-grid,
            .features,
            .review-grid,
            .footer-top{
                grid-template-columns:1fr;
            }

            .section-title{
                font-size:25px;
            }

            .service-card img,
            .moto-grid>img{
                height:auto;
            }
        }
        
        
        .footer {
    background: #25272b;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.footer-info-card {
    background: #1f2125;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid #00aa37;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border-radius: 8px;
}

.footer-info-card i {
    color: #00aa37;
    font-size: 26px;
    margin-top: 4px;
}

.footer-info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-info-card p {
    margin: 0;
    color: #ddd;
    font-size: 15px;
    line-height: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 45px;
    align-items: stretch;
}

.footer-col {
    background: transparent;
}

.footer-about h2 {
    font-size: 34px;
    line-height: 38px;
    font-weight: 900;
    margin-bottom: 25px;
}

.footer-about p,
.footer-branch p {
    color: #ddd;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #1f2125;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00aa37;
    color: #fff;
}

.footer-branch {
    background: #1f2125;
    border-radius: 10px;
    padding: 28px;
    border-left: 5px solid #00aa37;
}

.footer-branch h3,
.footer-map h3 {
    color: #00aa37;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-branch h3 i,
.footer-branch p i {
    color: #00aa37;
    margin-right: 8px;
}

.footer-map iframe {
    border-radius: 10px;
    filter: grayscale(15%);
}

.footer-service-area {
    margin-top: 50px;
    background: #1f2125;
    border-radius: 8px;
    padding: 22px 25px;
    color: #ddd;
    font-size: 16px;
    line-height: 27px;
}

.footer-service-area strong {
    color: #00aa37;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 45px;
    padding-top: 25px;
    color: #ccc;
    font-size: 14px;
    text-align: center;
}

.copyright span {
    color: #d6b100;
}

@media (max-width: 991px) {
    .footer {
        padding: 45px 0 25px;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-map iframe {
        height: 260px;
    }
}