*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:#ffffff;
    border-bottom:1px solid #e2e8f0;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.menu a{
    text-decoration:none;
    margin:0 10px;
    color:#1e293b;
    font-weight:600;
    transition:0.3s;
}

.menu a:hover{
    color:#0284c7;
}

.phone-btn,
.main-btn{
    background:#0284c7;
    color:#fff;
    text-decoration:none;
    padding:14px 26px;
    border-radius:8px;
    font-weight:bold;
    display:inline-block;
    transition:0.3s;
}

.phone-btn:hover,
.main-btn:hover{
    background:#0369a1;
}

.hero{
    min-height:650px;
    background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    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;
    padding:60px 20px;
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:54px;
    margin-bottom:25px;
    color:#ffffff;
}

.hero p{
    font-size:20px;
    color:#ffffff;
    margin-bottom:35px;
}

.services,
.districts,
.seo-content,
.why-us,
.faq{
    padding:80px 0;
}

.services h2,
.districts h2,
.seo-content h2,
.why-us h2,
.faq h2{
    text-align:center;
    margin-bottom:45px;
    font-size:38px;
    color:#0f172a;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-box{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-5px);
}

.service-box h3{
    margin-bottom:15px;
    color:#0284c7;
}

.service-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

.district-links{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.district-links a{
    background:#ffffff;
    border:1px solid #cbd5e1;
    padding:12px 18px;
    border-radius:6px;
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
    transition:0.3s;
}

.district-links a:hover{
    background:#0284c7;
    color:#fff;
}

.seo-content p{
    margin-bottom:25px;
    font-size:18px;
    color:#475569;
}

.faq-box{
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.faq-box h3{
    margin-bottom:12px;
    color:#0284c7;
}

.whatsapp-fixed{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:16px 22px;
    border-radius:50px;
    font-weight:bold;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.footer{
    background:#0f172a;
    color:#ffffff;
    padding:70px 0 20px;
    margin-top:40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#38bdf8;
}

.footer-box p{
    margin-bottom:12px;
    color:#cbd5e1;
}

.footer-box a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #334155;
    margin-top:40px;
    padding-top:20px;
    color:#94a3b8;
}

.maps-section{
    padding:60px 0;
}

.maps-section h2{
    font-size:36px;
    margin-bottom:20px;
    text-align:center;
}

.maps-section p{
    font-size:18px;
    line-height:1.7;
    text-align:center;
    margin-bottom:30px;
}

.maps-btn{
    display:inline-block;
    padding:15px 35px;
    background:#d71920;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.maps-center{
    text-align:center;
    margin-top:25px;
}

@media(max-width:768px){

    .header .container{
        flex-direction:column;
        gap:12px;
    }

    .logo img{
        height:55px;
    }

    .menu{
        text-align:center;
    }

    .menu a{
        display:inline-block;
        margin:6px;
        font-size:14px;
    }

    .phone-btn{
        padding:10px 18px;
        font-size:14px;
    }

    .hero{
        min-height:480px;
        padding:50px 15px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
    }

    .services,
    .districts,
    .seo-content,
    .why-us,
    .faq{
        padding:50px 0;
    }

    .services h2,
    .districts h2,
    .seo-content h2,
    .why-us h2,
    .faq h2,
    .maps-section h2{
        font-size:28px;
    }

    .district-links a{
        width:100%;
        text-align:center;
    }

    .whatsapp-fixed{
        right:12px;
        bottom:12px;
        padding:12px 16px;
        font-size:13px;
    }

}