/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050b07;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  background:rgba(0,0,0,0.2);
  backdrop-filter:blur(15px);
}

.logo-area{
  display:flex;  
  align-items:center;
  gap:12px;
}

.logo-area img{
    
  border-radius: 95%;
  width:55px;
}

.logo-area h2{
  color:#72ff3e;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#72ff3e;
}

/* HERO */

.hero{
  width:100%;
  min-height:100vh;
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:130px 8%;
  overflow:hidden;
}

/* MAP BG */

.map-bg{
  position:absolute;
  inset:0;
  background-image:url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=2000&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  opacity:0.13;
  animation:zoomMap 20s linear infinite alternate;
}

@keyframes zoomMap{
  from{
    transform:scale(1);
  }
  to{
    transform:scale(1.1);
  }
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right,#050b07 20%,rgba(5,11,7,0.4));
}

/* MARKERS */

.marker{
  position:absolute;
  width:20px;
  height:20px;
  background:#72ff3e;
  border-radius:50%;
  box-shadow:0 0 30px #72ff3e;
  animation:pulse 2s infinite;
}

.marker::after{
  content:'';
  position:absolute;
  width:40px;
  height:40px;
  border:2px solid #72ff3e;
  border-radius:50%;
  top:-10px;
  left:-10px;
  opacity:0.4;
}

.marker1{
  top:25%;
  left:70%;
}

.marker2{
  top:60%;
  left:80%;
}

.marker3{
  top:70%;
  left:60%;
}

.marker4{
  top:40%;
  left:88%;
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.2);
  }
  100%{
    transform:scale(1);
  }
}

.hero-left{
  width:55%;
  position:relative;
  z-index:5;
}

.top-badge{
  padding:12px 20px;
  border:1px solid rgba(114,255,62,0.4);
  border-radius:50px;
  color:#72ff3e;
  font-size:14px;
  background:rgba(255,255,255,0.05);
}

.hero-left h1{
  font-size:75px;
  line-height:90px;
  margin-top:30px;
  margin-bottom:30px;
}

.hero-left h1 span{
  color:#72ff3e;
}

.hero-left p{
  font-size:19px;
  color:#d1d1d1;
  line-height:35px;
  max-width:700px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.btn-primary{
  background:#72ff3e;
  color:black;
  padding:18px 35px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:0.4s;
}

.btn-primary:hover{
  transform:translateY(-5px);
  box-shadow:0 0 35px #72ff3e;
}

.btn-secondary{
  border:1px solid #72ff3e;
  color:#72ff3e;
  padding:18px 35px;
  border-radius:50px;
  text-decoration:none;
}

.stats{
  display:flex;
  gap:25px;
  margin-top:60px;
}

.stat-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:25px;
  border-radius:25px;
  backdrop-filter:blur(10px);
}

.stat-card h2{
  color:#72ff3e;
  margin-bottom:8px;
}

/* PHONE */

.hero-right{
  width:40%;
  display:flex;
  justify-content:center;
  position:relative;
  z-index:5;
}

.phone-frame{
  width:350px;
  border-radius:45px;
  overflow:hidden;
  border:4px solid rgba(255,255,255,0.1);
  box-shadow:0 0 60px rgba(114,255,62,0.25);
  animation:floatPhone 4s ease-in-out infinite;
}

.phone-frame img{
  width:100%;
  display:block;
}

@keyframes floatPhone{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-20px);
  }
  100%{
    transform:translateY(0px);
  }
}

/* SECTION */

section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:55px;
  margin-bottom:20px;
}

.section-title p{
  color:#b8b8b8;
}

/* WHY */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.why-card{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.why-card:hover{
  transform:translateY(-10px);
  border-color:#72ff3e;
  box-shadow:0 0 35px rgba(114,255,62,0.15);
}

/* EXPERIENCE */

.property-cards{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
}

.property-card{
  width:320px;
  padding:35px;
  border-radius:30px;
  background:linear-gradient(145deg,#101b13,#0a120c);
  border:1px solid rgba(114,255,62,0.2);
  transition:0.4s;
}

.property-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 40px rgba(114,255,62,0.2);
}

.property-card span{
  color:#72ff3e;
  font-size:14px;
}

.property-card h3{
  margin-top:15px;
  margin-bottom:10px;
}

/* FEATURES */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.feature-card{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:30px;
  transition:0.4s;
}

.feature-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 35px rgba(114,255,62,0.15);
}

.feature-card h3{
  color:#72ff3e;
  margin-bottom:20px;
}

/* SHOWCASE */

.showcase-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.showcase-phone{
  width:300px;
  border-radius:35px;
  overflow:hidden;
  border:3px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.showcase-phone:hover{
  transform:translateY(-10px);
}

.showcase-phone img{
  width:100%;
  display:block;
}

/* CTA */

.cta{
  text-align:center;
}

.cta h2{
  font-size:60px;
  margin-bottom:20px;
}

.cta p{
  color:#c8c8c8;
  margin-bottom:40px;
}

/* CONTACT */

.contact-card{
  max-width:600px;
  margin:auto;
  background:rgba(255,255,255,0.05);
  padding:50px;
  border-radius:30px;
  text-align:center;
}

.contact-card p{
  color:#72ff3e;
  margin-bottom:20px;
}

/* FOOTER */

footer{
  padding:30px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#9f9f9f;
}

/* MOBILE */

@media(max-width:950px){

  .hero{
    flex-direction:column;
    text-align:center;
    gap:70px;
  }

  .hero-left{
    width:100%;
  }

  .hero-right{
    width:100%;
  }

  .hero-left h1{
    font-size:50px;
    line-height:65px;
  }

  nav{
    display:none;
  }

  .stats{
    justify-content:center;
    flex-wrap:wrap;
  }

  .section-title h2{
    font-size:40px;
  }

  .cta h2{
    font-size:42px;
  }

}