<style>

/* ===================================
   RESET
=================================== */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
line-height:1.6;
color:#222;
background:#fff;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

html,
body{
    overflow-x:hidden;
}

/* ===================================
   VARIABLES
=================================== */

:root{

--navy:#08254f;
--navy-light:#133d78;
--gold:#c79c3a;
--light:#f7f7f7;
--grey:#666;
--border:#e5e5e5;

}

.header-contact{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:auto;
}

.phone-link{
    color:#fff;
    font-size:22px;
    font-weight:700;
    white-space:nowrap;
}

.phone-link:hover{
    color:var(--gold);
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:10px 16px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.whatsapp-btn:hover{
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:9999;
}

/* ===================================
   GLOBAL
=================================== */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:30px 0;
}

.section-title{
font-size:42px;
font-weight:800;
text-align:center;
margin-bottom:20px;
color:var(--navy);
}

.section-subtitle{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.btn{
    display:inline-block;
    padding:15px 28px;
    font-weight:700;
    border-radius:6px;
    transition:.3s;
}

.btn-primary{
background:var(--navy);
color:white;
}

.btn-primary:hover{
background:var(--navy-light);
}

.btn-secondary{
border:2px solid var(--navy);
color:var(--navy);
}

.btn-secondary:hover{
background:var(--navy);
color:white;
}

.hero-buttons .btn{
    padding:10px 18px;
    font-size:15px;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1ebe57;
    transform:translateY(-2px);
}

.btn-primary:hover{
    background:var(--navy-light);
    transform:translateY(-2px);
}

.btn-secondary:hover{
    background:var(--navy);
    color:white;
    transform:translateY(-2px);
}

/* ===================================
   HEADER
=================================== */

header{
background:var(--navy);
position:sticky;
top:0;
z-index:999;
}

.navbar{
    display:flex;
    align-items:center;
    padding:20px 0;
    position:relative;
}

.logo{
    color:white;
    font-weight:800;
    font-size:28px;
    line-height:1;
    flex-shrink:0;
}

.logo span{
    font-size:0.45em;
    color:var(--gold);
    margin-left:8px;
    vertical-align:middle;
}

.nav-menu{
    display:flex;
    gap:18px;
    margin-left:40px;
    flex:1;
}

.nav-menu a{
    color:white;
    font-weight:500;
    font-size:15px;
    white-space:nowrap;
}

.header-contact{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:20px;
    flex-shrink:0;
}

.nav-menu a{
color:white;
font-weight:500;
}

.nav-menu a:hover{
color:var(--gold);
}

.phone{
font-size:22px;
font-weight:700;
color:white;
}

.nav-menu a{
    color:white;
    font-weight:500;
    white-space:nowrap;
}

.nav-menu a:hover{
    color:var(--gold);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
    margin-left:auto;
    z-index:1001;
}

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

.hero{
padding:50px 0;
background:
linear-gradient(
90deg,
#fff 0%,
#fff 60%,
#f3f3f3 100%
);
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:1.05;
color:var(--navy);
margin-bottom:20px;
}

.hero h1 span{
display:block;
color:var(--gold);
}

.hero p{
font-size:22px;
margin-bottom:40px;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
flex-wrap:wrap;
}

.hero-badges{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.badge{
font-weight:700;
color:var(--navy);
}

.hero-image{
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
}

.hero-image p{
font-size:14px;
margin-top:15px;
text-align:center;
color:#666;
}

/* ===================================
   WHY US
=================================== */

.why-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
}

.why-card{
padding:10px;
text-align:center;
border:1px solid var(--border);
border-radius:10px;
}

.why-card h3{
margin:15px 0;
color:var(--navy);
}

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

.services{
background:var(--light);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(5,1fr));
    gap:25px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-card h3{
margin-bottom:15px;
color:var(--navy);
}

/* ===================================
   AREAS
=================================== */

.area-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.area-card{
padding:20px;
border-left:4px solid var(--gold);
background:white;
box-shadow:0 3px 10px rgba(0,0,0,.05);
}


/* ===================================
   REVIEWS
=================================== */

.reviews{
background:var(--light);
}

.review-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.review{
background:white;
padding:30px;
border-radius:10px;
}

.stars{
color:var(--gold);
font-size:24px;
margin-bottom:15px;
}

/* ===================================
   CTA
=================================== */

.cta{
background:var(--navy);
color:white;
text-align:center;
padding:100px 20px;
}

.cta h2{
font-size:48px;
margin-bottom:20px;
}

.cta p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.google-form-wrap{
    background:#fff;
    padding:40px;
    border-radius:30px;
    max-width:800px;
    margin:auto;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.google-form-wrap h2{
    text-align:center;
    margin-bottom:12px;
    font-size:42px;
}

.google-form-wrap p{
    text-align:center;
    margin-bottom:35px;
    color:#6b7280;
}

.form-control{
    width:100%;
    padding:18px;
    border-radius:14px;
    border:1px solid #d1d5db;
    font-size:17px;
    font-family:'Inter',sans-serif;
}

textarea.form-control{
    min-height:160px;
    resize:vertical;
}

.form-group{
    margin-bottom:22px;
}

.submit-btn{
    width:100%;
    background:#111827;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.submit-btn:hover{
    background:#000;
}

.cta .btn{
    padding:18px 36px;
    font-size:18px;
    font-weight:700;
}

.cta-phone{
    background:4A95FF;
    color:#fff;
}

.cta-phone:hover{
    background:#1b4d95;
}

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

footer{
background:#05172f;
color:white;
padding:70px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
margin-bottom:50px;
}

footer h4{
margin-bottom:20px;
color:var(--gold);
}

footer ul li{
margin-bottom:10px;
}

footer a{
color:white;
}

.copyright{
border-top:1px solid rgba(255,255,255,.1);
padding-top:25px;
text-align:center;
}

/* ===================================
   TABLET & MOBILE
=================================== */

@media(max-width:992px){

    .navbar{
        justify-content:space-between;
    }

    .logo{
        font-size:20px;
        max-width:180px;
    }

    .logo span{
        font-size:10px;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
        margin-right:10px;
        z-index:1001;
        order:2;
    }

    .header-contact{
        margin-left:0;
        gap:8px;
        order:3;
        flex-shrink:0;
    }

    .phone-link{
        font-size:14px;
        white-space:nowrap;
    }

    .whatsapp-btn{
        padding:8px 10px;
        font-size:13px;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--navy);
        flex-direction:column;
        margin:0;
        padding:0;
        z-index:9999;
        box-shadow:0 10px 20px rgba(0,0,0,.2);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        padding:18px 25px;
        border-top:1px solid rgba(255,255,255,.1);
    }

    .hero-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .why-grid,
    .service-grid,
    .review-grid,
    .area-grid{
        grid-template-columns:1fr 1fr;
    }

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

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .container{
        width:90%;
    }

    .logo{
        font-size:18px;
        max-width:140px;
    }

    .phone-link{
        display:none;
    }

    .hero{
        padding:60px 0;
    }

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

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .hero-badges{
        flex-direction:column;
        gap:15px;
    }

    .why-grid,
    .service-grid,
    .review-grid,
    .area-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:34px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}

</style>