*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:#222;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  z-index:1000;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(8px);
}

.logo{
  color:#fff;
  font-size:28px;
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#f4b400;
}

/* HERO */

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop')
  center/cover no-repeat;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.hero-content{
  max-width:900px;
  animation:fadeIn 1.5s ease;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero p{
  font-size:22px;
  color:#e0e0e0;
  margin-bottom:40px;
}

/* BUTTONS */

.btn-group{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;
  border-radius:40px;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
  text-decoration:none;
  display:inline-block;
}

.btn-primary{
  background:#f4b400;
  color:#000;
}

.btn-primary:hover{
  background:#ffca28;
  transform:translateY(-3px);
}

.btn-secondary{
  border:2px solid white;
  color:white;
  background:transparent;
}

.btn-secondary:hover{
  background:white;
  color:black;
}

/* SECTIONS */

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:46px;
  margin-bottom:15px;
}

.section-title p{
  color:#666;
  max-width:700px;
  margin:auto;
}

/* SERVICES */

.services{
  background:#f7f7f7;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
}

.card{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.card-content{
  padding:30px;
}

.card-content h3{
  font-size:28px;
  margin-bottom:15px;
}

.card-content p{
  color:#666;
  line-height:1.7;
}

/* PROPERTIES */

.properties-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.property-card{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
  transition:0.4s;
}

.property-card:hover{
  transform:scale(1.02);
}

.property-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.property-info{
  padding:25px;
}

.property-info h3{
  font-size:26px;
  margin-bottom:10px;
}

.price{
  color:#f4b400;
  font-size:24px;
  font-weight:700;
  margin-bottom:15px;
}

/* ABOUT */

.about{
  background:#111;
  color:white;
}

.about-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:25px;
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.about h2{
  font-size:52px;
  margin-bottom:25px;
}

.about p{
  color:#ccc;
  line-height:1.9;
  margin-bottom:25px;
}

/* CONTACT */

.contact{
  background:#f7f7f7;
}

.contact-form{
  max-width:900px;
  margin:auto;
  background:white;
  padding:50px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-info{
  margin-bottom:30px;
  text-align:center;
  line-height:2;
}

.contact-info h3{
  font-size:28px;
  margin-bottom:10px;
}

.contact-info a{
  color:#f4b400;
  text-decoration:none;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

input,
textarea{
  width:100%;
  padding:16px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:16px;
  font-family:inherit;
}

textarea{
  min-height:160px;
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#f4b400;
}

/* SUCCESS MESSAGE */

.success-message{
  display:none;
  background:#e8f9ee;
  color:#1c7c45;
  padding:18px;
  border-radius:12px;
  margin-bottom:25px;
  text-align:center;
  font-weight:500;
  border:1px solid #b7e4c7;
}

/* FOOTER */

footer{
  background:#111;
  color:#aaa;
  text-align:center;
  padding:30px;
}

/* ANIMATION */

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */

@media(max-width:768px){

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .nav-links{
    display:none;
  }

  .section-title h2{
    font-size:36px;
  }

  .about h2{
    font-size:38px;
  }
}