* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f9fb;
    color: #222;
    line-height: 1.6;
}

/* HEADER */

header{
    background:#0d2d62;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    box-shadow:0 3px 12px rgba(0,0,0,.2);
}

.site-logo{
    height:140px;
    width:auto;
}

.logo a {
    display: inline-block;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #f7c948;
}

/* HERO */

.hero {
    background:
        linear-gradient(rgba(13,45,98,.75), rgba(13,45,98,.75)),
        url("images/cleaning.jpg") center center/cover no-repeat;

    color: white;
    text-align: center;
   padding: 120px 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.button {
    background: #f7c948;
    color: #0d2d62;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: .3s;
}

.button:hover {
    background: white;
}/* SERVICES */

.services {
    padding: 80px 8%;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #0d2d62;
}

.service-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #0d2d62;
    margin-bottom: 15px;
    font-size: 28px;
}

.service-box p {
    font-size: 18px;
    color: #555;
}

.service-box ul {
    margin-top: 20px;
    margin-left: 20px;
}

.service-box li {
    margin-bottom: 10px;
}

/* ABOUT */

.about {
    background: white;
    padding: 80px 8%;
}

.about h2 {
    text-align: center;
    color: #0d2d62;
    font-size: 40px;
    margin-bottom: 40px;
}

.about p {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}/* CONTACT */

.contact {
    padding: 80px 8%;
    background: #eef3f8;
}

.contact h2 {
    text-align: center;
    color: #0d2d62;
    font-size: 40px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    background: #0d2d62;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #f7c948;
    color: #0d2d62;
}

/* FOOTER */

footer {
    background: #0d2d62;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #f7c948;
    text-decoration: none;
}/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        height: 65px;
        margin-bottom: 15px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

    .hero {
        padding: 90px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 32px;
    }

    .service-box {
        padding: 20px;
    }
}/* WHY CHOOSE US */

.why-us{
    padding:80px 8%;
    background:#ffffff;
    text-align:center;
}

.why-us h2{
    font-size:40px;
    color:#0d2d62;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature{
    background:#f8f9fb;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:0.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature h3{
    color:#0d2d62;
    margin-bottom:15px;
    font-size:24px;
}

.feature p{
    color:#555;
    line-height:1.6;
}/* SERVICES PAGE */

.services-page{
    padding:80px 8%;
    background:#f8f9fb;
    text-align:center;
}

.services-page h1{
    font-size:48px;
    color:#0d2d62;
    margin-bottom:20px;
}

.services-page p{
    font-size:20px;
    color:#555;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:left;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.service-card h2{
    color:#0d2d62;
    margin-bottom:20px;
    font-size:28px;
}

.service-card p{
    font-size:18px;
    margin:0;
    color:#666;
}/* ABOUT PAGE */

.about-page{
    padding:80px 8%;
    background:#f8f9fb;
}

.about-page h1{
    text-align:center;
    color:#0d2d62;
    font-size:52px;
    margin-bottom:25px;
}

.about-page .intro{
    text-align:center;
    font-size:22px;
    max-width:900px;
    margin:0 auto 60px;
    color:#555;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.about-card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h2{
    color:#0d2d62;
    margin-bottom:15px;
}

.about-card p{
    color:#666;
    line-height:1.7;
}

.about-text{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.about-text h2{
    color:#0d2d62;
    margin-bottom:20px;
    font-size:38px;
}

.about-text p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}/* CONTACT PAGE */

.contact-page{
    padding:80px 8%;
    background:#f8f9fb;
    text-align:center;
}

.contact-page h1{
    font-size:52px;
    color:#0d2d62;
    margin-bottom:20px;
}

.contact-page p{
    font-size:20px;
    color:#555;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.contact-card{
    background:white;
    padding:45px 35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card h2{
    color:#0d2d62;
    margin-bottom:15px;
    font-size:32px;
}

.contact-card a{
    color:#0d2d62;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    word-break:break-word;
    line-height:1.4;
}

.contact-card a:hover{
    color:#f7c948;
}.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    background:#20ba5a;
/* QUOTE FORM */

.quote-form{
    padding:80px 8%;
    background:#ffffff;
    text-align:center;
}

.quote-form h2{
    font-size:42px;
    color:#0d2d62;
    margin-bottom:15px;
}

.quote-form p{
    color:#666;
    margin-bottom:40px;
    font-size:18px;
}

.quote-form form{
    max-width:700px;
    margin:0 auto;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.quote-form textarea{
    resize:vertical;
}

.quote-form button{
    width:100%;
    padding:18px;
    background:#0d2d62;
    color:white;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.quote-form button:hover{
    background:#f7c948;
    color:#0d2d62;
}