*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#000;
  color:white;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
  position:relative;
}

/* Background */
.bg-radial{
  position:fixed;
  inset:0;
  background:radial-gradient(circle at top, rgba(212,160,23,0.15), transparent 40%);
  z-index:-2;
}

.bg-gradient{
  position:fixed;
  inset:0;
  background:linear-gradient(to bottom,#000000,#120a02,#000000);
  z-index:-3;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Navbar */
.navbar{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,0.4);
  border-bottom:1px solid rgba(255,215,0,0.2);
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-area img{
  width:65px;
  height:65px;
  border-radius:20px;
  object-fit:cover;
}

.logo-area h1{
  color:#f6C023;
  font-size:28px;
  letter-spacing:4px;
}

.logo-area p{
  color:#aaa;
  font-size:12px;
  letter-spacing:4px;
}

nav{
  display:flex;
  align-items:center;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#f6C023;
}

/* Buttons */
.gold-btn{
  background:#f6C023;
  color:black;
  border:none;
  padding:14px 26px;
  border-radius:50px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.gold-btn:hover{
  transform:scale(1.05);
}

.outline-btn{
  border:1px solid rgba(255,215,0,0.4);
  background:transparent;
  color:white;
  padding:14px 26px;
  border-radius:20px;
  cursor:pointer;
  transition:0.3s;
}

.outline-btn:hover{
  background:rgba(255,215,0,0.1);
}

.large-btn{
  padding:18px 32px;
}

/* Hero */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:80px 0;
  position:relative;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  opacity:0.2;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,215,0,0.3);
  background:rgba(255,215,0,0.08);
  padding:10px 20px;
  border-radius:50px;
  margin-bottom:30px;
  color:#fde68a;
  font-size:14px;
  letter-spacing:2px;
}

.dot{
  width:10px;
  height:10px;
  background:#f6C023;
  border-radius:50%;
}

.hero-title{
  font-size:90px;
  font-weight:900;
  line-height:0.95;
  margin-bottom:30px;
}

.hero-title span{
  color:#f6C023;
}

.hero-text{
  color:#ccc;
  font-size:20px;
  line-height:1.8;
  max-width:650px;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}

.stats h3{
  color:#f6C023;
  font-size:40px;
  font-weight:900;
}

.stats p{
  color:#aaa;
  margin-top:10px;
}

/* Hero Card */
.hero-card{
  position:relative;
}

.glow{
  position:absolute;
  inset:-40px;
  background:rgba(255,215,0,0.2);
  filter:blur(80px);
  border-radius:50%;
}

.property-card{
  position:relative;
  background:linear-gradient(to bottom right, rgba(255,215,0,0.08), black);
  border:1px solid rgba(255,215,0,0.2);
  padding:30px;
  border-radius:50px;
  backdrop-filter:blur(10px);
}

.property-card img{
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:35px;
}

.featured-box{
  position:absolute;
  left:50px;
  right:50px;
  bottom:50px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,215,0,0.2);
  padding:25px;
  border-radius:30px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.featured-box p{
  color:#aaa;
}

.featured-box h3{
  font-size:32px;
  margin-top:10px;
}

.price{
  text-align:right;
}

.price h3{
  color:#f6C023;
}

/* Features */
.features{
  padding:120px 0;
}

.section-header{
  text-align:center;
  margin-bottom:80px;
}

.section-tag{
  color:#f6C023;
  letter-spacing:5px;
  margin-bottom:20px;
}

.section-header h2{
  font-size:70px;
  font-weight:900;
  margin-bottom:20px;
}

.section-header span{
  color:#f6C023;
}

.section-text{
  max-width:800px;
  margin:auto;
  color:#aaa;
  font-size:20px;
  line-height:1.8;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.feature-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,215,0,0.1);
  padding:40px;
  border-radius:35px;
  transition:0.5s;
}

.feature-card:hover{
  transform:translateY(-10px);
  border-color:rgba(255,215,0,0.4);
}

.icon{
  width:65px;
  height:65px;
  border-radius:20px;
  background:rgba(255,215,0,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f6C023;
  font-size:30px;
  margin-bottom:30px;
}

.feature-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.feature-card p{
  color:#aaa;
  line-height:1.7;
}


/* =========================
   PROPERTIES SECTION
========================= */

.properties-section{
  padding:120px 0;
  background:rgba(255,255,255,0.03);
}

.property-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.property-item{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  border:1px solid rgba(255,215,0,0.2);
  background:black;
  transition:0.5s;
}

.property-item img{
  width:100%;
  height:520px;
  object-fit:cover;
  transition:0.8s;
}

.property-item:hover img{
  transform:scale(1.1);
}

.property-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.2),
    transparent
  );

  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding:30px;
}

.property-overlay h3{
  font-size:32px;
  margin-bottom:10px;
}

.property-overlay p{
  color:#ddd;
}

.property-price{
  text-align:right;
}

.property-price span{
  color:#aaa;
  font-size:14px;
}

.property-price h4{
  color:#f6C023;
  font-size:34px;
  margin-top:5px;
}


/* =========================
   VIRTUAL TOUR SECTION
========================= */

.virtual-tour{
  padding:120px 0;
  background:rgba(0,0,0,0.7);
}

/* Layout */
.virtual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* Image Side */
.view-image{
  position:relative;
  border-radius:50px;
  overflow:hidden;
  border:1px solid rgba(255,215,0,0.2);
}

.view-image img{
  width:100%;
  height:550px;
  object-fit:cover;
  transition:0.8s;
}

.view-image:hover img{
  transform:scale(1.1);
}

/* Glow */
.view-image .glow{
  position:absolute;
  inset:-40px;
  background:rgba(255,215,0,0.15);
  filter:blur(80px);
  z-index:0;
}

/* LIVE badge */
.live-badge{
  position:absolute;
  bottom:25px;
  left:25px;
  background:rgba(0,0,0,0.75);
  border:1px solid rgba(255,215,0,0.3);
  padding:12px 18px;
  border-radius:30px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#f6C023;
  font-size:13px;
  letter-spacing:2px;
  backdrop-filter:blur(10px);
}

.pulse{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#f6C023;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{transform:scale(1); opacity:1;}
  50%{transform:scale(1.6); opacity:0.5;}
  100%{transform:scale(1); opacity:1;}
}

/* Content */
.view-title{
  font-size:70px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:25px;
}

.view-title span{
  color:#f6C023;
}

.view-text{
  font-size:18px;
  color:#ccc;
  line-height:1.8;
  margin-bottom:40px;
}

/* List */
.view-list{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:40px;
}

.view-item{
  display:flex;
  align-items:center;
  gap:15px;
  padding-bottom:15px;
  border-bottom:1px solid rgba(255,215,0,0.1);
}

.view-item .icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,215,0,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f6C023;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
  .virtual-grid{
    grid-template-columns:1fr;
  }

  .view-title{
    font-size:48px;
  }
}

@media(max-width:768px){
  .view-title{
    font-size:36px;
  }

  .view-image img{
    height:400px;
  }
}

/* =========================
   INVEST SECTION
========================= */

.invest-section{
  padding:120px 0;
}

.invest-box{
  position:relative;
  overflow:hidden;
  border-radius:50px;
  padding:90px 50px;
  text-align:center;

  background:linear-gradient(
    to bottom right,
    rgba(255,215,0,0.08),
    black
  );

  border:1px solid rgba(255,215,0,0.2);
}

.invest-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at top,
    rgba(255,215,0,0.15),
    transparent 50%
  );
}

.invest-box h2{
  position:relative;
  z-index:2;

  font-size:72px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:30px;
}

.invest-text{
  position:relative;
  z-index:2;

  max-width:850px;
  margin:auto;
  font-size:22px;
  line-height:1.8;
  color:#ccc;
  margin-bottom:50px;
}

.invest-buttons{
  position:relative;
  z-index:2;

  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .property-grid{
    grid-template-columns:1fr;
  }

  .ai-grid{
    grid-template-columns:1fr;
  }

  .ai-title{
    font-size:50px;
  }

  .invest-box h2{
    font-size:50px;
  }
}

@media(max-width:768px){

  .property-overlay{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .property-price{
    text-align:left;
  }

  .ai-title{
    font-size:42px;
  }

  .invest-box{
    padding:70px 25px;
  }

  .invest-box h2{
    font-size:40px;
  }

  .invest-text{
    font-size:18px;
  }

  .ai-feature p{
    font-size:18px;
  }
}



/* Responsive */
@media(max-width:992px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .feature-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-title{
    font-size:70px;
  }

  nav{
    display:none;
  }
}

@media(max-width:768px){

  .feature-grid{
    grid-template-columns:1fr;
  }

  .hero-title{
    font-size:55px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .featured-box{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .price{
    text-align:center;
  }

  .section-header h2{
    font-size:45px;
  }
}
