/* =====================================================
   BRAJ PROPERTIES — Premium Real Estate
   CSS Stylesheet | Saffron & Gold Spiritual Theme
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --saffron:     #1B2F6E;
  --gold:        #C9A84C;
  --gold-dark:   #A8873A;
  --bg:          #F4F6FB;
  --bg-card:     #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #666666;
  --border:      #D6DCF0;
  --shadow-sm:   0 2px 12px rgba(27,47,110,0.10);
  --shadow-md:   0 8px 32px rgba(27,47,110,0.15);
  --shadow-lg:   0 20px 60px rgba(27,47,110,0.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font-heading:'Playfair Display', serif;
  --font-body:   'DM Sans', sans-serif;
  --whatsapp:    #25D366;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--text); }

a { text-decoration: none; transition: all .25s ease; }

img { max-width: 100%; display: block; }

/* ── Utility ── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.tag-line {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron) 0%, #392b1b  100%);
  color: #fff;
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: all .3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-saffron:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,153,51,.4); color: #fff; }

.btn-outline-saffron {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-outline-saffron:hover { background: var(--saffron); color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--text);
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,213,128,.5); }

/* ── Navbar ── */
.navbar-braj {
  background: rgba(255,248,240,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all .3s ease;
}

.navbar-braj.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--saffron); }
.nav-logo-tagline { font-size: .62rem; color: var(--text-muted); font-family: var(--font-body); letter-spacing: .06em; }

.nav-link-custom {
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .85rem !important;
  border-radius: 30px;
  transition: all .25s ease;
  position: relative;
}
.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--saffron);
  background: rgba(255,153,51,.08);
}

.nav-container{
  gap: 4rem;
}

/* ── Hero Section ── */
.hero {
  /* min-height: 88vh; */
  background: linear-gradient(135deg, rgba(13,27,69,0.80) 0%, rgba(27,47,110,0.55) 100%),
              url('/assets/img/bg.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,153,51,.2);
  border: 1px solid rgba(255,153,51,.4);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 900;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* ── Search Bar ── */
.search-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: .6rem .6rem .6rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.search-box .form-select,
.search-box .form-control {
  border: none;
  background: transparent;
  font-size: .88rem;
  color: var(--text);
  padding: .45rem .75rem;
  flex: 1;
  min-width: 130px;
  outline: none;
  box-shadow: none;
}
.search-box .form-select:focus, .search-box .form-control:focus { box-shadow: none; }
.search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }

/* ── Property Card ── */
.prop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  border: 1px solid var(--border);
  height: 100%;
}
.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,153,51,.3);
}

.prop-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.08); }

.prop-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--saffron);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
}
.prop-badge.for-rent { background: #2563EB; }
.prop-badge.commercial { background: #7C3AED; }

.prop-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}
.prop-fav:hover { background: #fff; transform: scale(1.1); }
.prop-fav.active { color: #e53e3e; }

.prop-card-body { padding: 1.2rem; }

.prop-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: .2rem;
}

.prop-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-location {
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .8rem;
}

.prop-meta {
  display: flex;
  gap: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
}
.prop-meta span { display: flex; align-items: center; gap: .3rem; }

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, var(--saffron) 0%, #E67E00 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; }

/* ── About Braj Section ── */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-heading); }
.about-img-badge span { font-size: .78rem; opacity: .9; }

.why-invest-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.wi-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wi-text h6 { font-weight: 700; margin-bottom: .2rem; font-size: .92rem; }
.wi-text p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #1A0A00 0%, #3D1500 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,153,51,.15) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; font-size: 2.4rem; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 2rem; position: relative; }
.cta-section .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Listing Page ── */
.filter-sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: sticky;
  top: 85px;
}
.filter-sidebar h6 {
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.filter-label { display: flex; align-items: center; gap: .5rem; font-size: .88rem; cursor: pointer; padding: .3rem 0; }
.filter-label input { accent-color: var(--saffron); width: 16px; height: 16px; }

.price-range-input { accent-color: var(--saffron); width: 100%; cursor: pointer; }

/* ── Property Details ── */
.detail-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.detail-thumb {
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  width: 100%;
}
.detail-thumb:hover, .detail-thumb.active { border-color: var(--saffron); }

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  margin: .25rem;
}

.map-placeholder {
  background: linear-gradient(135deg, #f0e8dc 0%, #ffe8c8 100%);
  border-radius: var(--radius-md);
  height: 280px;
  overflow: hidden; /* important */
  border: 2px dashed var(--border);
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ── About Page ── */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s ease;
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 1.2rem; }

/* ── Contact Page ── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ── Form Styles ── */
.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  background: #fff;
  transition: border-color .25s;
  width: 100%;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,.12);
}
.form-label-custom {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
  display: block;
}

/* ── Footer ── */
.footer {
  background: #0D1B45;
  color: rgba(255,255,255,.75);
  padding: 60px 0 20px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .4rem;
}
.footer-logo-text span { color: var(--gold-dark); }
.footer p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer h6 { color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .25s; }
.footer-links a:hover { color: var(--saffron); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 2rem 0 1rem; }
.footer-bottom { font-size: .82rem; color: rgba(255,255,255,.4); text-align: center; }

.social-icons { display: flex; gap: .6rem; margin-top: .5rem; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .25s ease;
  border: 1px solid rgba(255,255,255,.1);
}
.social-icon:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); transform: translateY(-2px); }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 998;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Chatbot ── */
.chat-float-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), #E67E00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  transition: all .3s ease;
}
.chat-float-btn:hover { transform: scale(1.1); }

.chat-window {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  z-index: 997;
  overflow: hidden;
  display: none;
  border: 1px solid var(--border);
  animation: slideUp .3s ease;
}
.chat-window.open { display: block; }

.chat-float-btn.hidden { opacity: 0; pointer-events: none; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: linear-gradient(135deg, var(--saffron), #E67E00);
  color: #fff;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header .chat-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-right: .7rem;
}
.chat-header h6 { margin: 0; font-size: .9rem; }
.chat-header small { font-size: .72rem; opacity: .85; }
.chat-close { background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; }

.chat-messages { padding: 1rem; height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .7rem; }
.chat-msg {
  padding: .6rem .9rem;
  border-radius: 12px;
  font-size: .83rem;
  max-width: 85%;
  line-height: 1.5;
}
.chat-msg.bot { background: var(--bg); color: var(--text); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg.user { background: var(--saffron); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }

.chat-quick { display: flex; flex-wrap: wrap; gap: .4rem; padding: .5rem 1rem; }
.chat-quick-btn {
  background: rgba(255,153,51,.1);
  border: 1px solid rgba(255,153,51,.3);
  color: var(--saffron);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}
.chat-quick-btn:hover { background: var(--saffron); color: #fff; }

.chat-input-area { display: flex; border-top: 1px solid var(--border); }
.chat-input-area input { flex: 1; border: none; padding: .75rem 1rem; font-size: .85rem; outline: none; font-family: var(--font-body); }
.chat-input-area button { background: var(--saffron); border: none; color: #fff; padding: .75rem 1rem; cursor: pointer; font-size: .9rem; }

/* ── Modal ── */
.modal-braj .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); }
.modal-braj .modal-header { border-bottom: 1px solid var(--border); padding: 1.5rem; }
.modal-braj .modal-title { font-family: var(--font-heading); font-weight: 700; }
.auth-toggle { background: var(--bg); border-radius: 30px; padding: .25rem; display: flex; gap: .2rem; }
.auth-toggle-btn {
  flex: 1; border: none; background: transparent; padding: .5rem 1rem;
  border-radius: 25px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .25s;
}
.auth-toggle-btn.active { background: var(--saffron); color: #fff; }
.social-login-btn {
  width: 100%; border: 1.5px solid var(--border); background: #fff; border-radius: var(--radius-sm);
  padding: .65rem 1rem; font-size: .88rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: .5rem; transition: all .25s; font-family: var(--font-body);
}
.social-login-btn:hover { background: var(--bg); }

/* ── Scroll Animation ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── Breadcrumb ── */
.braj-breadcrumb {
  background: linear-gradient(135deg, var(--saffron) 0%, #E67E00 100%);
  padding: 50px 0 30px;
  color: #fff;
}
.braj-breadcrumb h1 { color: #fff; font-size: 2rem; margin-bottom: .3rem; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.75); font-size: .85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.95); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── Page specific: listing ── */
.listing-header { background: var(--bg); padding: 20px 0; border-bottom: 1px solid var(--border); }
.sort-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }
.result-count { font-weight: 600; color: var(--text); font-size: .9rem; }
.result-count span { color: var(--saffron); }

/* ── Mobile ── */
@media (max-width: 767px) {
  /* .hero { min-height: 100vh; } */
  .hero h1 { font-size: 2rem; }
  .search-box { padding: .8rem; }
  .about-img-badge { right: 10px; bottom: -15px; }
  .whatsapp-float { width: 50px; height: 50px; }
  .chat-float-btn { width: 52px; height: 52px; }
  .chat-window { width: calc(100vw - 32px); right: 16px; }
  .filter-sidebar { position: static; }
  .stat-number { font-size: 2.2rem; }
  .section-pad { padding: 50px 0; }
  .cta-section h2 { font-size: 1.7rem; }
  .detail-hero-img { height: 250px; }
}

@media (max-width: 575px) {
  .search-divider { display: none; }
  .search-box .form-select, .search-box .form-control { min-width: 100%; }
  .search-box { flex-direction: column; padding: .8rem; }
}


/* nav update in sm */
/* ── Mobile Navbar Fix ── */
@media (max-width: 991px) {

  body {
    overflow-x: hidden;
  }

  .navbar-braj {
    position: relative;
    z-index: 9999;
  }

  #navMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 1rem 0 1.5rem;
    z-index: 9998;
    text-align: center;
  }

  #navMenu .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    gap: 0 !important;
  }

  .nav-link-custom {
    display: block;
    width: 100%;
    text-align: center;
    padding: .75rem 1rem !important;
    font-size: .95rem;
    /* border-bottom: 1px solid var(--border); */
  }

  .nav-link-custom:last-child {
    border-bottom: none;
  }

  .nav-logo img {
    height: 38px !important;
    width: auto !important;
  }

  .nav-logo {
    flex-shrink: 0;
  }

  .nav-container {
    gap: 0 !important;
    position: relative;
  }

}