:root{
--blue:#172851;
--blue2:#22386f;
--gold:#d6aa5a;
--gold2:#f1d38b;
--white:#ffffff;
--soft:#f6f3ec;
--text:#1c2742;
--muted:#6f778a;
--radius:24px;
--shadow:0 22px 60px rgba(23,40,81,.14);
}

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

html{
scroll-behavior:smooth
}

body{
font-family:Arial,Helvetica,sans-serif;
background:var(--white);
color:var(--text);
line-height:1.55
}

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

a{
text-decoration:none;
color:inherit
}

section{
padding:90px 7%
}

.site-header{
position:sticky;
top:0;
z-index:999;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 7%;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(0,0,0,.06)
}

.brand img{
height:60px
}

.nav{
display:flex;
gap:25px;
font-weight:700
}

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

.menu-btn{
display:none;
border:none;
background:var(--blue);
color:white;
padding:8px 12px;
border-radius:10px
}

.btn{
display:inline-flex;
padding:14px 22px;
border-radius:999px;
font-weight:700;
transition:.3s
}

.btn-gold{
background:var(--gold);
color:var(--blue)
}

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

.btn-outline{
border:1px solid rgba(255,255,255,.4);
color:white
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(
rgba(23,40,81,.85),
rgba(23,40,81,.7)
),
url("img1.jpg");
background-size:cover;
background-position:center;
color:white
}

.hero-content{
max-width:700px
}

.hero h1{
font-size:70px;
line-height:1;
margin-bottom:20px
}

.hero h1 span{
color:var(--gold2)
}

.hero p{
font-size:20px;
margin-bottom:30px;
opacity:.9
}

.hero-actions{
display:flex;
gap:15px;
flex-wrap:wrap
}

.trust{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:40px
}

.trust div{
background:rgba(255,255,255,.08);
padding:20px;
border-radius:20px
}

.quick-box{
background:white;
padding:30px;
margin-top:-80px;
border-radius:30px;
box-shadow:var(--shadow)
}

.quick-box form{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:10px
}

input,
select,
textarea{
padding:14px;
border-radius:15px;
border:1px solid #ddd;
width:100%
}

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

.property{
border-radius:25px;
overflow:hidden;
box-shadow:var(--shadow);
background:white
}

.property img{
height:260px;
width:100%;
object-fit:cover
}

.property div{
padding:25px
}

.property h3{
margin:10px 0
}

.tag{
display:inline-block;
padding:6px 12px;
background:#eee;
border-radius:30px
}

.benefits{
background:var(--blue);
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
color:white
}

.benefits div{
padding:20px;
background:rgba(255,255,255,.08);
border-radius:20px
}

.contact{
background:var(--blue);
color:white;
display:grid;
grid-template-columns:1fr 1fr;
gap:30px
}

.contact-actions{
display:grid;
gap:15px
}

footer{
background:#0f1c3b;
color:white;
padding:60px
}

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

.legal{
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.15)
}

@media(max-width:768px){

.menu-btn{
display:block
}

.nav{
display:none
}

.nav.open{
display:flex;
flex-direction:column
}

.hero h1{
font-size:42px
}

.quick-box form,
.property-grid,
.benefits,
.footer-grid,
.contact{
grid-template-columns:1fr
}

}