body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#0f172a;
    color:white;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    background:#020617;
}

header h2{
    margin:0;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background:linear-gradient(90deg,#0284c7,#4f46e5);
}

.section{
    padding:60px 50px;
}

.properties{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

.card{
    background:#1e293b;
    width:300px;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
}

.card:hover{
    transform:scale(1.05);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.price{
    color:#38bdf8;
    font-weight:bold;
    margin-top:10px;
}

.contact-box{
    background:#1e293b;
    padding:30px;
    max-width:500px;
    margin:auto;
    border-radius:12px;
}

input{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:6px;
    border:none;
}

button{
    width:100%;
    padding:12px;
    background:#0284c7;
    color:white;
    border:none;
    border-radius:6px;
    font-weight:bold;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:20px;
    background:#020617;
    color:gray;
}

.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    padding:12px 20px;
    border-radius:30px;
    color:white;
    text-decoration:none;
    font-weight:bold;
}