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

body{
  font-family:Arial,sans-serif;
  color:#102033;
  background:#fff;
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

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

.topbar{
  background:#0052b5;
  color:#fff;
  font-size:15px;
  padding:8px 0;
}

.topbar-inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:30px;
}

.topbar-left a,
.topbar-right{
  color:#fff;
  font-weight:500;
}

.navbar{
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:99;
}

.nav-inner{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{display:flex;align-items:center}
.logo img{width:150px}

#menu{
  display:flex;
  align-items:center;
  list-style:none;
  gap:28px;
  font-weight:600;
  color:#0052b5;
}

.nav-btn,.main-btn{
  background:#0052b5;
  color:#fff;
  padding:13px 22px;
  border-radius:6px;
  font-weight:700;
  display:inline-block;
}

.outline-btn{
  border:2px solid #0052b5;
  color:#0052b5;
  background:#fff;
  padding:11px 20px;
  border-radius:6px;
  font-weight:700;
  display:inline-block;
}

.menu-btn{
  display:none;
  background:#0052b5;
  color:#fff;
  border:none;
  font-size:24px;
  padding:7px 13px;
  border-radius:5px;
}

.hero{
  position:relative;
  min-height:620px;
  background:url("hero-house.png") center center/cover no-repeat;
  border-bottom:8px solid #0052b5;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.20);
  z-index:1;
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:5;
  width:90%;
  max-width:1180px;
  margin:auto;
  text-align:center;
  padding-top:20px;
}

.hero h1{
  font-size:64px;
  line-height:1.15;
  color:#29466b;
  margin-bottom:18px;
  font-weight:800;
}

.hero h2{
  font-size:46px;
  color:#1f69c9;
  margin-bottom:18px;
  font-weight:800;
}

.hero p{
  font-size:23px;
  color:#1f1f1f;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

.hero-buttons a{
  position:relative;
  z-index:10;
  cursor:pointer;
}

.section{padding:70px 0}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

h2{
  font-size:34px;
  margin-bottom:18px;
  color:#001b3d;
}

.about p,.desc{
  color:#4a4a4a;
  font-size:17px;
}

.about img{
  width:100%;
  max-width:500px;
  height:500px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  margin:auto;
}

.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:25px;
}

.features span{
  background:#f1f6ff;
  padding:13px;
  border-left:4px solid #0052b5;
  font-weight:600;
}

.center{text-align:center}

.services{background:#f7f9fc}

.service-grid{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.card{
  background:#fff;
  padding:28px 22px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  border-top:5px solid #0052b5;
}

.card h3{
  color:#0052b5;
  margin-bottom:10px;
}

.cta{
  background:#0052b5;
  padding:60px 0;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
}

.cta-text{max-width:650px}

.cta h2{
  color:#fff;
  font-size:44px;
  margin-bottom:15px;
  line-height:1.2;
}

.cta p{
  color:#fff;
  opacity:.95;
  font-size:18px;
}

.cta-buttons{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.cta-call,.cta-whatsapp{
  width:280px;
  text-align:center;
  padding:16px 20px;
  border-radius:12px;
  font-size:18px;
  font-weight:700;
  transition:.3s;
}

.cta-call{
  background:#fff;
  color:#0052b5;
}

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

.gallery-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery-grid img{
  height:260px;
  width:100%;
  object-fit:cover;
  border-radius:10px;
}

.contact{
    background:#f7f9fc;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box h2{
    margin-bottom:30px;
}

.contact-item{
    margin-bottom:25px;
}

.contact-item strong{
    display:block;
    color:#0052b5;
    margin-bottom:8px;
}

.contact-item span{
    color:#444;
    line-height:1.7;
}

.contact-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.contact-call,
.contact-whatsapp{
    padding:15px 25px;
    border-radius:10px;
    font-weight:700;
}

.contact-call{
    background:#0052b5;
    color:#fff;
}

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

.map-box iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:900px){

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

.contact-box{
    padding:30px;
}

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

.map-box iframe{
    height:350px;
}

}

footer{
  background:#001b3d;
  color:#fff;
  padding:22px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:15px;
}

.fixed-call,.fixed-wp{
  position:fixed;
  bottom:18px;
  z-index:100;
  color:#fff;
  padding:13px 18px;
  border-radius:50px;
  font-weight:700;
}

.fixed-call{
  left:18px;
  background:#0052b5;
}

.fixed-wp{
  right:18px;
  background:#25d366;
}

@media(max-width:900px){
  .menu-btn{display:block}

  #menu{
    display:none;
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
  }

  #menu.active{display:flex}

  .hero{
    min-height:540px;
    background-position:center;
  }

  .hero h1{font-size:38px}
  .hero h2{font-size:30px}
  .hero p{font-size:18px}

  .grid-2{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr 1fr}

  .cta-inner{
    flex-direction:column;
    text-align:center;
  }

  .cta-buttons{
    width:100%;
    align-items:center;
  }

  .cta-call,.cta-whatsapp{
    width:100%;
    max-width:320px;
  }
}

@media(max-width:768px){
  .topbar{padding:10px 0}

  .topbar-inner{
    justify-content:center;
    gap:20px;
    flex-direction:row;
  }

  .topbar-left,.topbar-right{
    font-size:14px;
    white-space:nowrap;
  }

  .cta h2{font-size:34px}
}

@media(max-width:600px){
  .logo img{width:145px}

  .nav-inner{height:72px}

  #menu{top:72px}

  .hero{
    min-height:480px;
    background-position:center;
  }

  .hero-content{padding-top:10px}

  .hero h1{font-size:31px}
  .hero h2{font-size:25px}
  .hero p{font-size:16px}

  .hero-buttons{flex-direction:column}

  .main-btn,.outline-btn{
    width:220px;
    text-align:center;
  }

  .service-grid,
  .gallery-grid,
  .features{
    grid-template-columns:1fr;
  }

  .about img{
    height:330px;
  }

  .fixed-call,.fixed-wp{
    bottom:12px;
    padding:11px 14px;
    font-size:14px;
  }
}