
:root{
  --dark:#06111d;
  --dark2:#0a1c2d;
  --gold:#c99735;
  --gold-light:#e4bd64;
  --cream:#f7f2e8;
  --text:#111827;
  --muted:#64748b;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#ffffff;
}
a{text-decoration:none;color:inherit}
.topbar{
  background:var(--dark);
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:10px 5%;
  font-size:13px;
}
.topbar span{margin-right:18px}
.lang{color:var(--gold-light);font-weight:800}
.header{
  height:104px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5%;
  position:sticky;
  top:0;
  z-index:40;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.logo{display:flex;align-items:center;gap:15px}
.logo svg{width:74px;height:74px}
.logo-title{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:39px;
  letter-spacing:.5px;
  color:#0b1420;
  line-height:.94;
}
.logo-title small{
  display:block;
  font-family:Arial, sans-serif;
  font-size:13px;
  letter-spacing:4px;
  color:var(--gold);
  margin-top:9px;
}
nav{
  display:flex;
  align-items:center;
  gap:24px;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
}
nav a:hover, nav a.active{color:var(--gold)}
.nav-cta{
  background:var(--gold);
  color:#fff!important;
  padding:14px 20px;
  border-radius:4px;
}
.hero{
  min-height:690px;
  color:#fff;
  display:flex;
  align-items:center;
  padding:82px 6% 145px;
  background:
    linear-gradient(90deg,rgba(2,8,16,.97) 0%,rgba(2,8,16,.82) 38%,rgba(2,8,16,.25) 100%),
    url("assets/hero-villa.svg");
  background-size:cover;
  background-position:center;
}
.hero-content{max-width:700px}
.eyebrow{
  color:var(--gold-light);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:3px;
}
.hero h1{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(48px,7vw,86px);
  line-height:1.03;
  margin:18px 0;
}
.hero h1 span{color:var(--gold-light)}
.hero p{
  max-width:610px;
  font-size:20px;
  line-height:1.65;
}
.actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:30px}
.btn{
  display:inline-block;
  background:var(--gold);
  color:#fff;
  padding:16px 25px;
  border-radius:4px;
  font-weight:900;
  border:0;
  cursor:pointer;
}
.btn.outline{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.85);
}
.search-panel{
  width:86%;
  max-width:1230px;
  margin:-75px auto 0;
  background:var(--dark);
  color:#fff;
  border-radius:8px;
  padding:24px;
  display:grid;
  grid-template-columns:repeat(4,1fr) 190px;
  gap:18px;
  position:relative;
  z-index:10;
  box-shadow:0 22px 58px rgba(0,0,0,.30);
}
.field label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  color:#cbd5e1;
  margin-bottom:8px;
}
.field input,.field select{
  width:100%;
  padding:15px;
  border:0;
  border-radius:4px;
  background:#fff;
  color:#111827;
}
.search-panel button{
  border:0;
  border-radius:4px;
  background:var(--gold);
  color:white;
  text-transform:uppercase;
  font-weight:900;
}
.trust{
  padding:58px 7%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  background:#fff;
}
.trust-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  border-right:1px solid #ddd;
  padding-right:22px;
}
.trust-item:last-child{border-right:0}
.icon{font-size:40px;color:var(--gold)}
.trust-item b{display:block;margin-bottom:6px}
.section{padding:78px 6%;text-align:center}
.section h2{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:44px;
  margin:8px 0 35px;
}
.properties{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  text-align:left;
}
.property{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.13);
}
.property-photo{
  height:250px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.photo-1{background-image:url("assets/property-modern-house.svg")}
.photo-2{background-image:url("assets/property-apartment.svg")}
.photo-3{background-image:url("assets/property-building.svg")}
.badge{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 12px;
  background:var(--dark);
  color:#fff;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
}
.badge.gold{background:var(--gold)}
.property-body{padding:24px}
.property-body h3{margin:0 0 8px;font-size:23px}
.price{color:var(--gold);font-size:22px;font-weight:900}
.services{background:var(--cream)}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service{
  background:#fff;
  padding:30px;
  border-radius:12px;
  text-align:left;
  box-shadow:0 10px 32px rgba(0,0,0,.07);
}
.service h3{font-size:24px;margin-top:0}
.about{
  background:var(--dark);
  color:#fff;
  padding:82px 6%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.about h2{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:46px;
  line-height:1.12;
}
.about p{line-height:1.75}
.about-img{
  min-height:440px;
  border-radius:12px;
  background:url("assets/interior-luxury.svg") center/cover;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.contact-strip{
  background:#fff;
  padding:55px 6%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
}
.contact-card{
  background:#fff;
  padding:34px;
  border-radius:12px;
  box-shadow:0 16px 40px rgba(0,0,0,.12);
}
.form{display:grid;gap:13px}
.form input,.form select,.form textarea{
  width:100%;
  padding:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:15px;
}
.form textarea{min-height:130px}
.page{padding:78px 6%;min-height:63vh}
.page h1{font-family:Georgia, 'Times New Roman', serif;font-size:52px}
.page-card{
  max-width:930px;
  padding:34px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,.10);
}
.footer{
  background:#030b13;
  color:white;
  padding:54px 6% 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1.5fr 1fr 1fr;
  gap:35px;
}
.footer h3{color:var(--gold-light)}
.footer a{display:block;color:#d5d5d5;margin:8px 0}
.copy{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:30px;
  padding-top:18px;
  text-align:center;
  color:#aaa;
  font-size:13px;
}
.whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  background:#22c55e;
  color:#fff;
  padding:14px 19px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}
@media(max-width:980px){
  .topbar{font-size:12px}
  .header{height:auto;display:block;padding:16px 5%}
  .logo{margin-bottom:15px}
  .logo-title{font-size:29px}
  .logo svg{width:55px;height:55px}
  nav{gap:12px;flex-wrap:wrap;font-size:12px}
  .hero{min-height:585px;padding-bottom:105px}
  .hero p{font-size:17px}
  .search-panel,.trust,.properties,.service-grid,.about,.contact-strip,.footer-grid{grid-template-columns:1fr}
  .search-panel{width:92%;margin-top:-50px}
  .trust-item{border-right:0;border-bottom:1px solid #ddd}
}
