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

body{
  font-family:'Poppins',sans-serif;
  background:#0b0b0c;
  color:#fff;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#111;
}

.logo{height:50px;}

.nav-links a{
  color:#ccc;
  margin-left:25px;
  text-decoration:none;
}

.nav-links a:hover{color:#d4af37;}

.active{color:#d4af37;}

/* HERO (PREMIUM) */
.hero{
  height:70vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
}

.hero-content{
  position:relative;
  z-index:1;
  max-width:700px;
}

.hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero p{
  opacity:0.8;
}

/* PAGE BACKGROUNDS */
.home-hero{
  background:url('https://images.unsplash.com/photo-1497366216548-37526070297c') center/cover;
}

.property-hero{
  background:url('https://images.unsplash.com/photo-1568605114967-8130f3a36994') center/cover;
}

.healthcare-hero{
  background:url('https://images.unsplash.com/photo-1580281657527-47a3d0e5bfc8') center/cover;
}

.event-hero{
  background:url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3') center/cover;
}

.contact-hero{
  background:url('https://images.unsplash.com/photo-1556761175-4b46a572b786') center/cover;
}

/* SECTION */
.section{
  max-width:900px;
  margin:50px auto;
  padding:20px;
}

/* CARD */
.card{
  background:#111;
  padding:25px;
  border-radius:12px;
  margin-bottom:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#d4af37;
  color:#000;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
  margin-top:10px;
}

/* FORM */
input, textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:none;
  border-radius:8px;
}

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  background:#111;
  margin-top:40px;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:15px;
  border-radius:50%;
  color:#fff;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}
.logo {
  height: 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b0b0b;
  padding: 15px 30px;
}