:root{
  --primary:#3158ff;
  --secondary:#6c2cff;
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --line:#e2e8f0;
  --bg:#f8fafc;
  --white:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--bg);
  font-family:Manrope,sans-serif;
  color:var(--text);
}

.wide-content{
  max-width:1200px;
  margin:auto;
  padding:40px 24px 120px;
}

.page-title{
  margin-bottom:24px;
}

.page-title h1{
  font-size:42px;
  font-weight:800;
  color:var(--dark);
  margin-bottom:10px;
}

.page-title p{
  color:var(--muted);
  font-size:15px;
}

.project-nav-tabs{
  display:flex;
  gap:12px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.project-nav-btn{
  padding:14px 22px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font-weight:700;
  color:var(--dark);
  transition:.25s;
}

.project-nav-btn:hover{
  border-color:var(--primary);
}

.project-nav-btn.active{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  border:none;
}

.filter-bar{
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  gap:12px;
  padding:18px;
  background:#fff;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  margin-bottom:50px;
}

.filter{
  height:56px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:600;
}

.btn.accent{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border:none;
  color:#fff;
  border-radius:14px;
  padding:0 28px;
  font-weight:700;
}

.listing-section-head{
  margin-bottom:24px;
}

.listing-section-head span{
  display:block;
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:8px;
}

.listing-section-head h2{
  font-size:34px;
  font-weight:800;
  color:var(--dark);
  margin-bottom:8px;
}

.listing-section-head p{
  color:var(--muted);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.property-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  transition:.3s;
}

.property-card:hover{
  transform:translateY(-5px);
}

.thumb{
  height:250px;
  background-size:cover;
  background-position:center;
}

.card-body{
  padding:22px;
}

.card-body h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
  color:var(--dark);
}

.card-price{
  font-size:24px;
  font-weight:800;
  color:var(--primary);
  margin:14px 0;
}

.card-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.card-meta span{
  padding:8px 12px;
  background:#f1f5f9;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.empty-listing-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:35px;
  max-width:100%;
  width:100%;
  box-shadow:0 12px 40px rgba(0,0,0,.05);
}

.empty-listing-card h3{
  font-size:26px;
  color:var(--dark);
  margin-bottom:10px;
}

.empty-listing-card p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}

.empty-listing-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:50px;
  padding:0 24px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  font-weight:700;
}

.cross-section{
  margin-top:70px;
  padding-top:50px;
  border-top:1px solid var(--line);
}

@media(max-width:991px){

  .filter-bar{
    grid-template-columns:1fr;
  }

  .grid-3{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .grid-3{
    grid-template-columns:1fr;
  }

  .page-title h1{
    font-size:32px;
  }

}
/* SALE PAGE HERO DESIGN */

.sale-project-hero{
  position:relative;
  min-height:340px;
  padding:70px 50px;
  border-radius:0 0 34px 34px;
  overflow:hidden;
  background:#0f172a;
  color:#fff;
}

.sale-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(15,23,42,.92),rgba(15,23,42,.55)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.sale-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.sale-mini{
  display:inline-flex;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  padding:9px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.sale-project-hero h1{
  font-size:52px;
  line-height:1;
  font-weight:900;
  margin-bottom:14px;
}

.sale-project-hero p{
  color:rgba(255,255,255,.86);
  font-size:17px;
  max-width:620px;
  margin-bottom:26px;
}

.sale-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:620px;
    margin-bottom:26px;
}

.sale-hero-stats div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:18px;
}

.sale-hero-stats strong{
  display:block;
  font-size:30px;
  font-weight:900;
  color:#ffd166;
}

.sale-hero-stats span{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.sale-page-wrap{
  max-width:1180px;
  margin:auto;
  padding:50px 24px 120px;
}

.bhk-filter-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:45px;
}

.bhk-chip{
  border:1px solid #e2e8f0;
  background:#fff;
  border-radius:999px;
  padding:12px 20px;
  font-weight:800;
  cursor:pointer;
}

.bhk-chip.active{
  background:linear-gradient(135deg,#3158ff,#6c2cff);
  color:#fff;
  border:0;
}

.inventory-section{
  margin-bottom:60px;
}

.sale-cta{
  margin-top:70px;
  background:linear-gradient(135deg,#3158ff,#6c2cff);
  color:#fff;
  border-radius:30px;
  padding:44px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.sale-cta h2{
  font-size:34px;
  font-weight:900;
}

.sale-cta p{
  color:rgba(255,255,255,.85);
}

.sale-cta a{
  background:#fff;
  color:#0f172a;
  padding:16px 22px;
  border-radius:14px;
  font-weight:900;
  white-space:nowrap;
}
.sale-simple-header{
  height:86px;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 52px;
  position:sticky;
  top:0;
  z-index:50;
}

.sale-logo{
  font-size:26px;
  font-weight:900;
  color:#0f172a;
  text-decoration:none;
}

.sale-menu{
  display:flex;
  gap:28px;
}

.sale-menu a{
  color:#0f172a;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.sale-menu a.active{
  color:#3158ff;
}

.sale-call{
  background:linear-gradient(135deg,#3158ff,#6c2cff);
  color:#fff;
  padding:13px 22px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
}
.sale-simple-header{
  height:86px !important;
  background:#fff !important;
  border-bottom:1px solid #e2e8f0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:0 52px !important;
  position:sticky !important;
  top:0 !important;
  z-index:999 !important;
}

.sale-logo{
  font-size:26px !important;
  font-weight:900 !important;
  color:#0f172a !important;
  text-decoration:none !important;
}

.sale-menu{
  display:flex !important;
  gap:28px !important;
}

.sale-menu a{
  color:#0f172a !important;
  font-size:14px !important;
  font-weight:900 !important;
  text-decoration:none !important;
}

.sale-menu a.active{
  color:#3158ff !important;
}

.sale-call{
  background:linear-gradient(135deg,#3158ff,#6c2cff) !important;
  color:#fff !important;
  padding:13px 22px !important;
  border-radius:14px !important;
  font-weight:900 !important;
  text-decoration:none !important;
}
/* MASTER HEADER FIX */
.top-header {
  height: 48px;
}

.navbar {
  min-height: 116px;
  padding: 0 32px !important;
  background: #fff !important;
}

.navbar-brand img {
  width: 100px !important;
  height: auto !important;
}

.navbar-nav {
  align-items: center !important;
  gap: 18px;
}

.navbar .nav-link {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #071225 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.call-action {
  padding: 14px 24px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg,#3158ff,#6c2cff) !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}