*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f4f6fb;
color:#1e293b;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAVBAR */
.navbar{
background:white;
position:sticky;
top:0;
z-index:100;
box-shadow:0 3px 15px rgba(0,0,0,0.05);
}

.nav-content{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#1e293b;
font-weight:500;
}

.btn-login{
background:#2563eb;
color:white;
padding:8px 18px;
border-radius:6px;
}

/* HERO */
.hero{
background:url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2") center/cover;
height:90vh;
position:relative;
}

.hero-overlay{
background:rgba(15,23,42,0.65);
height:100%;
display:flex;
align-items:center;
}

.hero-content{
color:white;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.search-box{
margin-top:30px;
}

.search-box input{
padding:14px;
border:none;
border-radius:8px;
margin:6px;
width:220px;
}

.search-box button{
padding:14px 30px;
border:none;
border-radius:8px;
background:#2563eb;
color:white;
font-size:16px;
cursor:pointer;
}

/* FEATURES */
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin:80px auto;
}

.feature{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* LISTINGS */
.listings h2{
margin-bottom:30px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
}

.card-body{
padding:20px;
}

.price{
font-size:22px;
font-weight:bold;
margin:10px 0;
color:#2563eb;
}

.card button{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:#2563eb;
color:white;
cursor:pointer;
}

/* CTA */
.cta{
margin-top:80px;
color:black;
text-align:center;
padding:70px 20px;
}

.cta button{
margin-top:20px;
padding:14px 30px;
border:none;
border-radius:8px;
background:#007bff;
color:white;
font-weight:bold;
cursor:pointer;
}

/* FOOTER */
footer{
background:#0f172a;
color:white;
text-align:center;
padding:30px;
margin-top:60px;
}
.contact-box{
    background:#fff3cd;
    padding:15px;
    border-radius:8px;
    margin-top:15px;
    text-align:center;
}
.msg-btn{
    background:#007bff;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:6px;
    cursor:pointer;
    margin-top:10px;
}
.msg-btn:hover{
    background:#0056b3;
}
.role-select{
    margin:15px 0;
    padding:10px;
    background:#f5f5f5;
    border-radius:8px;
}

.role-option{
    display:block;
    margin-top:8px;
    cursor:pointer;
}

/* SEARCH */
.search-box{
display:flex;
gap:8px;
flex-wrap:wrap;
}

.search-box input,
.search-box select{
padding:14px;
border-radius:8px;
border:none;
width:220px;

}