:root{
  --bg:#ffffff;
  --accent:#0b3d91;
  --accent-2:#d4a23a;
  --muted:#6b7280;
  --radius:10px;
  --container:1100px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.container{max-width:var(--container);margin:0 auto;padding:1rem}

.site-header{background:#fff;border-bottom:1px solid #eef2f7;position:sticky;top:0;z-index:40}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 0}
.brand{display:flex;align-items:center;gap:0.6rem;text-decoration:none;color:inherit}
.logo{height:44px;width:auto}
.brand-name{font-weight:600;color:var(--accent)}
.nav-list{list-style:none;margin:0;padding:0;display:flex;gap:1rem}
.nav-list a{text-decoration:none;color:inherit;padding:0.5rem;border-radius:6px}
.nav-list a:hover{background:#f1f5f9}
.nav-toggle{display:none;background:transparent;border:none;font-size:18px}

.hero{padding:3rem 0;background:linear-gradient(180deg,#fbfdff 0%,#f7fbff 100%)}
.hero-inner{display:flex;gap:2rem;align-items:center;justify-content:space-between}
.hero-copy{max-width:640px}
.hero h1{margin:0 0 0.6rem 0;font-size:clamp(1.4rem,2.6vw,2.2rem)}
.lead{color:var(--muted);margin-bottom:1rem}
.cta-row{display:flex;gap:0.7rem;margin-bottom:1rem}
.btn{display:inline-block;padding:0.6rem 1rem;border-radius:8px;text-decoration:none;border:1px solid transparent;font-weight:600}
.btn.primary{background:var(--accent);color:white}
.btn.outline{background:transparent;border:1px solid var(--accent);color:var(--accent)}
.btn.small{padding:0.35rem 0.6rem;font-size:0.9rem}
.quick-cards{display:flex;gap:0.6rem;flex-wrap:wrap;margin-top:1rem}
.card{background:#fff;padding:0.6rem 0.8rem;border-radius:8px;box-shadow:0 6px 18px rgba(11,61,145,0.03);min-width:150px}
.hero-media{max-width:420px}
.hero-img{width:100%;border-radius:12px;object-fit:cover;height:260px}

.section{padding:3rem 0}
.pale{background:#fbfbfd}
h2{margin-top:0}
.grid{display:grid}
.cols-2{grid-template-columns:1fr 420px}
.cols-3{grid-template-columns:repeat(3,1fr)}
.gap{gap:1.25rem}
.property-grid .property{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 8px 30px rgba(16,24,40,0.06)}
.property img{width:100%;height:180px;object-fit:cover}
.prop-body{padding:0.75rem}
.price{color:var(--accent-2);font-weight:700}

.team-grid .member{background:#fff;padding:1rem;border-radius:10px;text-align:center}
.team-grid img{width:100%;height:140px;object-fit:cover;border-radius:8px}
.about-stats{display:grid;gap:0.8rem}
.stat{background:#fff;padding:0.8rem;border-radius:8px;display:flex;flex-direction:column;align-items:flex-start}
.stat .num{font-size:1.2rem;font-weight:700;color:var(--accent)}

.contact-list{list-style:none;padding:0;margin:0 0 1rem 0}
.map-wrap iframe{width:100%;height:220px;border:0;border-radius:8px}

.site-footer{border-top:1px solid #eef2f7;padding:1rem 0;background:#fff}
.footer-inner{display:flex;justify-content:space-between;align-items:center}

.whatsapp-fab{position:fixed;right:18px;bottom:18px;background:#25D366;width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 8px 26px rgba(37,211,102,0.18);z-index:60}

.center{text-align:center}
.muted{color:var(--muted)}
.small{font-size:0.9rem}

@media (max-width:980px){
  .cols-3{grid-template-columns:repeat(2,1fr)}
  .hero-inner{flex-direction:column-reverse}
  .hero-img{height:220px}
  .cols-2{grid-template-columns:1fr}
}
@media (max-width:600px){
  .nav-list{display:none;position:absolute;right:12px;top:64px;background:white;padding:0.5rem;border-radius:8px;box-shadow:0 8px 24px rgba(2,6,23,0.08)}
  .nav-list.open{display:flex;flex-direction:column}
  .nav-toggle{display:block}
  .cols-3{grid-template-columns:1fr}
  .brand-name{display:none}
}
