/* TOKENS */
:root {
  --bg: #141414;
  --card: #1a1a1a;
  --border: #262626;
  --text-muted: #999;
  --primary: #703bf7;
  --bg_second: #191919;
}

/* GLOBAL */
body {
  background: var(--bg) !important;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
}

.bg-primary {
  background: var(--bg);
}
.bg-secondary {
  background: var(--bg_second);
}

/* NAVBAR */
.custom-navbar {
  border-bottom: 1px solid var(--border);
  transition: .3s;
}

.top-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.custom-navbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20,20,20,.9);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero-section {
  padding: 80px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
}

.hero-desc {
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 50px;
}

.stat-box {
  background: var(--card);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

/* FEATURES */
.features-section {
  padding: 20px 0;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* PROPERTY */
.property-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
}

.property-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.muted {
  color: var(--text-muted);
}

.price {
  margin: 10px 0;
  font-weight: 600;
}

/* TESTIMONIAL / FAQ */
.card-dark {
  background: var(--card);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* CTA */
.cta-section {
  background: var(--card);
  padding: 80px 0;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.ab-foot-left {
	width: 30%;
}
.ab-foot-right {
	width: 50%;
}
footer ul li a {
  color: #9CA3AF; /* gray-400 */
  transition: all 0.3s;
}
footer ul li a:hover {
  color: #FFF; /* white */
}

@media (max-width: 390px){

	.ab-foot-left,
	.ab-foot-right {
		width: 100%
	}
	
}
