/* Upload via FileZilla to: /public_html/style.css */
/* BhiwandiDirectory.com — Ajmeria Realtor Brand CSS */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --dark: #0f0f14;
  --dark2: #1a1a24;
  --dark3: #22222f;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e8c0;
  --white: #f8f6f0;
  --gray: #9a9a9a;
  --gray-light: #e5e3dd;
  --green: #1d7a4a;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  background: #f4f2ec;
  color: #1a1a1a;
  line-height: 1.65;
}

/* ── HEADER ── */
header {
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding: 0 24px;
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 4px;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--dark); letter-spacing: -1px;
}
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.logo-text span { color: var(--gold); }
nav { display: flex; gap: 4px; }
nav a {
  color: var(--gray); text-decoration: none; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius); transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.header-cta {
  background: var(--gold); color: var(--dark); font-weight: 700;
  font-size: 13px; padding: 9px 18px; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: var(--dark2);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
}
.hero::before {
  content: 'BHIWANDI';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Barlow Condensed', sans-serif; font-size: 200px; font-weight: 800;
  color: rgba(201,168,76,0.04); letter-spacing: -8px; white-space: nowrap;
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3); margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 16px; letter-spacing: -1px;
}
.hero h1 span { color: var(--gold); }
.hero p { color: var(--gray); font-size: 17px; max-width: 580px; margin: 0 auto 32px; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat { text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* ── SEARCH BAR ── */
.search-wrap { background: var(--dark3); padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.search-inner { max-width: 1200px; margin: auto; display: flex; gap: 12px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
  color: var(--white); padding: 10px 16px; border-radius: var(--radius);
  font-size: 14px; font-family: 'Lato', sans-serif; outline: none;
}
.search-input::placeholder { color: var(--gray); }
.search-input:focus { border-color: var(--gold); }
.filter-btn {
  background: transparent; border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-pale); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 16px; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; font-family: 'Lato', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── MAIN LAYOUT ── */
.main-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.section-head { margin-bottom: 28px; }
.section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 700; color: var(--dark);
}
.section-head h2 span { color: var(--gold); }
.section-head p { color: var(--gray); font-size: 14px; margin-top: 4px; }

/* ── PROJECT GRID ── */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

/* ── PROJECT CARD ── */
.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

.card-image {
  height: 190px;
  background: var(--dark2);
  position: relative; overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
.project-card:hover .card-image img { opacity: 1; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.badge-mmrda { background: #1d7a4a; color: #fff; }
.badge-peb { background: #1a5fa8; color: #fff; }
.badge-rcc { background: #7a1d3a; color: #fff; }
.badge-new { background: var(--gold); color: var(--dark); }
.badge-commercial { background: #5a3a8a; color: #fff; }

.card-art-score {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.75); border: 1px solid var(--gold);
  border-radius: 6px; padding: 5px 10px; text-align: center;
}
.art-label { font-size: 8px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.art-value { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }

.card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card-location { font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 12px;
}
.card-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.spec { display: flex; flex-direction: column; }
.spec-label { font-size: 10px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.spec-val { font-size: 15px; font-weight: 700; color: var(--dark); font-family: 'Barlow Condensed', sans-serif; }
.spec-val.gold { color: var(--gold); }

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  background: #f0ede4; color: #555; border: 1px solid #ddd;
}

.card-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--gray-light); display: flex; gap: 8px; }
.btn-primary {
  flex: 1; background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 13px; padding: 10px 14px;
  border: none; border-radius: var(--radius); cursor: pointer;
  text-align: center; text-decoration: none; display: block;
  font-family: 'Lato', sans-serif; transition: all 0.2s; letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  background: transparent; color: var(--dark); font-weight: 700;
  font-size: 13px; padding: 10px 14px; border: 1px solid #ccc;
  border-radius: var(--radius); cursor: pointer; text-decoration: none;
  display: block; font-family: 'Lato', sans-serif; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25d366; color: #fff; width: 60px; height: 60px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── MICRO SIGNATURE ── */
.micro-sig {
  background: var(--dark); padding: 10px 24px;
  text-align: center; font-size: 11px; color: var(--gray);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.micro-sig span { color: var(--gold); margin: 0 8px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 48px 24px 24px;
  border-top: 2px solid rgba(201,168,76,0.2);
}
.footer-inner { max-width: 1200px; margin: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--gray); font-size: 13px; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--gray); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { color: var(--gray); font-size: 12px; }
.disclaimer { color: #666; font-size: 11px; margin-top: 6px; }

/* ── INDIVIDUAL PROJECT PAGE ── */
.project-hero { background: var(--dark2); padding: 56px 24px; border-bottom: 1px solid rgba(201,168,76,0.2); }
.project-hero-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.project-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 12px; }
.project-hero h1 span { color: var(--gold); }
.project-hero .subtitle { color: var(--gray); font-size: 16px; margin-bottom: 24px; }
.hero-img-wrap { border-radius: 10px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.hero-img-wrap img { width: 100%; display: block; }

.spec-table { max-width: 1100px; margin: 40px auto; padding: 0 24px; }
.spec-table table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
.spec-table th { background: var(--dark); color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 14px 18px; text-align: left; }
.spec-table td { padding: 12px 18px; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.spec-table td:first-child { font-weight: 700; color: #444; width: 35%; }
.spec-table tr:last-child td { border-bottom: none; }

.amenities-grid { max-width: 1100px; margin: 0 auto 40px; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.amenity-chip { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #333; }
.amenity-chip::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 15px; }

.cta-section { background: var(--dark2); padding: 56px 24px; text-align: center; border-top: 1px solid rgba(201,168,76,0.15); }
.cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-section p { color: var(--gray); margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-wa { background: #25d366; color: #fff; font-weight: 700; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; font-size: 15px; transition: all 0.2s; }
.cta-wa:hover { background: #1eb558; }
.cta-call { background: var(--gold); color: var(--dark); font-weight: 700; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; font-size: 15px; transition: all 0.2s; }
.cta-call:hover { background: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--dark3); padding: 12px 24px; font-size: 12px; color: var(--gray); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-hero-inner { grid-template-columns: 1fr; }
  nav { display: none; }
  .header-inner { gap: 12px; }
}
@media (max-width: 480px) {
  .project-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
