*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',system-ui,sans-serif;
background:#f6f7f9;
color:#111;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */
.main-header{
background:rgba(255,255,255,0.92);
backdrop-filter:blur(12px);
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:999;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:26px;
font-weight:800;
text-decoration:none;
color:#111;
letter-spacing:-1px;
}

.nav-links{
display:flex;
gap:28px;
align-items:center;
}

.nav-links a{
text-decoration:none;
color:#555;
font-size:14px;
font-weight:500;
position:relative;
transition:0.25s;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#111;
transition:0.3s;
}

.nav-links a:hover{
color:#000;
}

.nav-links a:hover::after{
width:100%;
}

.nav-actions{
display:flex;
gap:12px;
}

/* HERO */
.hero{
height:85vh;
min-height:550px;
background:url('https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
text-align:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:850px;
}

.hero h1{
font-size:56px;
line-height:1.1;
color:#fff;
margin-bottom:16px;
}

.hero p{
color:#ddd;
margin-bottom:28px;
font-size:18px;
}

/* SEARCH */
.search-bar{
display:flex;
gap:12px;
background:#fff;
padding:14px;
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
flex-wrap:wrap;
}

.search-bar input,
.search-bar select{
flex:1;
min-width:140px;
padding:14px;
border:none;
background:#f2f2f2;
border-radius:10px;
font-size:14px;
}

.search-bar input:focus,
.search-bar select:focus{
outline:none;
background:#e8e8e8;
}

/* TRUST BAR */
.trust-bar{
background:#fff;
padding:18px 0;
border-bottom:1px solid #eee;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
font-size:13px;
color:#666;
}

/* SECTIONS */
.listings-section,
.info-section,
.cta-section{
padding:80px 0;
}

.listings-section h2,
.info-section h2{
font-size:34px;
margin-bottom:35px;
}

/* FOOTER */
.main-footer{
background:#0d0d0f;
color:#aaa;
padding:38px 0 24px;
font-size:13px;
}

.footer-cols{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:24px;
}

.footer-cols p,
.footer-cols a,
.footer-bottom{
font-size:13px;
line-height:1.7;
.footer-cols h3,
.footer-cols h4{
color:#fff;
margin-bottom:16px;
}

.footer-cols ul{
list-style:none;
}

.footer-cols li{
margin-bottom:10px;
}

.footer-cols a{
text-decoration:none;
color:#999;
font-size:14px;
}

.footer-cols a:hover{
color:#fff;
}

.footer-divider{
height:1px;
background:#222;
margin:24px 0;
}

.footer-bottom{
display:flex;
justify-content:space-between;
font-size:13px;
flex-wrap:wrap;
}

/* MOBILE */
@media(max-width:900px){

.hero h1{
font-size:38px;
}

.search-bar{
flex-direction:column;
}

.nav-links{
display:none;
}

.trust-grid{
grid-template-columns:1fr 1fr;
gap:12px;
}

.footer-cols{
grid-template-columns:1fr;
}

}