/* ============================================
   KRANTI PROPERTY — PROFESSIONAL NOBROKER+ STYLE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #111827;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --bg: #f3f4f6;
  --card-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.5;
  padding-bottom: 80px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* TOP HEADER */
.top-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  height: 58px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.header-left { display: flex; align-items: center; gap: 12px; }
.header-right { display: flex; align-items: center; gap: 8px; }

.top-hamburger-btn {
  background: none;
  border: none;
  color: var(--secondary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.top-hamburger-btn:hover { background: var(--bg); }

.brand-container { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-logo { width: 32px; height: 32px; border-radius: 8px; }
.brand-text h1 { font-size: 0.95rem; font-weight: 800; color: var(--secondary); line-height: 1.1; letter-spacing: -0.3px; }
.brand-text p { font-size: 0.62rem; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; }

.btn-post-header {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-post-header:hover { background: var(--primary-hover); }

/* LOCATION PICKER BADGE & NOTIFICATION BELL */
.location-picker-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.location-picker-badge:hover { background: #e2e8f0; }
.loc-pin { font-size: 0.95rem; }
.loc-text { display: flex; flex-direction: column; line-height: 1.1; }
.loc-state { font-size: 0.60rem; color: var(--text-muted); font-weight: 600; }
.loc-city { font-size: 0.74rem; color: var(--secondary); font-weight: 800; }

.header-notif-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.header-notif-btn:hover { background: #e2e8f0; }
.notif-badge-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  border: 1.5px solid #fff;
}

.btn-login-header {
  background: var(--bg);
  color: var(--secondary);
  border: 1.5px solid var(--border);
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-login-header:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* ANNOUNCEMENT BANNER */
.announcement-banner {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #dbeafe;
}

/* MAIN CONTAINER */
.app-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* HERO CHITRAKOOT BANNER (EXACT REFERENCE DESIGN) */
.hero-chitrakoot-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 230px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: flex-start;
  padding: 18px 20px;
}
.hero-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 46, 0.60) 0%, rgba(11, 25, 46, 0.85) 100%);
  z-index: 2;
}
.hero-content-layer {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 580px;
}
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hero-subtext {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero-main-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-tagline-hindi {
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlight-gold {
  color: #fbbf24;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* MAIN SEARCH CONTAINER WITH FILTER BUTTON */
.main-search-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.search-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}
.search-lens-icon { font-size: 1.1rem; margin-right: 6px; }
.search-input-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b;
  background: transparent;
}
.btn-filter-trigger {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-filter-trigger:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
}

/* 4 MAIN FEATURE CARDS (EXACT REPLICA OF USER REFERENCE DESIGN) */
.four-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .four-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.feature-card {
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 180px;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}
.card-orange { background: linear-gradient(180deg, #ea580c 0%, #f97316 100%); }
.card-green { background: linear-gradient(180deg, #15803d 0%, #16a34a 100%); }
.card-blue { background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%); }
.card-purple { background: linear-gradient(180deg, #7e22ce 0%, #6b21a8 100%); }

.fc-header {
  padding: 12px 12px 8px 12px;
}
.fc-icon-wrap {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.fc-title {
  font-size: 0.90rem;
  font-weight: 800;
  margin: 0 0 2px 0;
  line-height: 1.2;
}
.fc-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.2;
}
.fc-image-wrap {
  position: relative;
  height: 95px;
  width: 100%;
  overflow: hidden;
  margin-top: auto;
}
.fc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.feature-card:hover .fc-image-wrap img {
  transform: scale(1.08);
}
.fc-arrow-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #ffffff;
  color: #1e293b;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* HORIZONTAL CIRCULAR CATEGORIES SECTION */
.categories-section-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.categories-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cat-sec-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-see-all-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat-see-all-btn:hover { text-decoration: underline; }

.categories-circle-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.categories-circle-row::-webkit-scrollbar { height: 4px; }
.categories-circle-row::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 62px;
  transition: transform 0.15s;
}
.cat-circle-item:hover { transform: translateY(-2px); }
.cat-circle-item.active .circle-icon-box {
  outline: 2.5px solid var(--primary);
  outline-offset: 2px;
}
.circle-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.circle-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
}

/* TRUST DEAL BANNER CARD (SAHI JAGAH, SAHI DAAM) */
.trust-deal-banner-card {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border-radius: 16px;
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(6, 78, 59, 0.25);
}
.tdb-left { flex: 1; min-width: 250px; }
.tdb-title {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}
.tdb-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.74rem;
  color: #d1fae5;
  font-weight: 600;
}
.btn-explore-now {
  background: #facc15;
  color: #1e293b;
  border: none;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 9px 18px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  white-space: nowrap;
  transition: transform 0.15s, background 0.15s;
}
.btn-explore-now:hover {
  background: #eab308;
  transform: scale(1.03);
}

/* 4 TRUST METRICS BADGES ROW */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tb-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.tb-icon { font-size: 1.3rem; }
.tb-text { display: flex; flex-direction: column; line-height: 1.15; }
.tb-text strong { font-size: 0.78rem; color: var(--secondary); font-weight: 800; }
.tb-text small { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; }
.service-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 1;
}
.service-banner-card:hover .banner-bg-img {
  transform: scale(1.06);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: background 0.3s;
}
.banner-buy .banner-overlay {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.45) 0%, rgba(15, 23, 42, 0.88) 100%);
}
.banner-post .banner-overlay {
  background: linear-gradient(180deg, rgba(180, 83, 9, 0.45) 0%, rgba(69, 26, 3, 0.88) 100%);
}
.banner-build .banner-overlay {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.45) 0%, rgba(4, 47, 46, 0.90) 100%);
}
.banner-builders .banner-overlay {
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.45) 0%, rgba(46, 16, 101, 0.90) 100%);
}
.banner-content {
  position: relative;
  z-index: 3;
  color: #fff;
}
.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.banner-badge.badge-free {
  background: #10b981;
  color: #fff;
}
.banner-badge.badge-new {
  background: #f59e0b;
  color: #fff;
}
.banner-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}
.banner-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.3;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.banner-action-btn {
  font-size: 0.68rem;
  font-weight: 700;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.2s;
}
.service-banner-card:hover .banner-action-btn {
  gap: 6px;
  color: #bfdbfe;
}

/* LIVE REVIEWS SLIDER SECTION */
.reviews-slider-section {
  margin-top: 30px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
/* SUBPAGE TOP NAVIGATION BAR */
.subpage-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}
.btn-subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.btn-subpage-back:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}
.subpage-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
  padding: 4px 10px;
  border-radius: 12px;
}

.reviews-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.reviews-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
}
.reviews-section-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.btn-write-review-main {
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid #bfdbfe;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-write-review-main:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.slider-arrow-btns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-slider-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  line-height: 1;
}
.btn-slider-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-slider-arrow:active {
  transform: scale(0.92);
}
.reviews-slider-wrapper {
  position: relative;
  width: 100%;
}
.reviews-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-top: 2px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-slider-track::-webkit-scrollbar {
  height: 6px;
}
.reviews-slider-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.review-slide-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-slide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.review-slide-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.review-slide-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-user-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
.review-user-tag {
  font-size: 0.65rem;
  color: var(--success);
  font-weight: 600;
}
.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  font-weight: 800;
}
.review-slide-comment {
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  font-size: 0.7rem;
  color: var(--text-light);
}
.review-target-pill {
  background: #e2e8f0;
  color: #475569;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.65rem;
}

/* SECTION HEADER */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.section-title { font-size: 1.05rem; font-weight: 800; color: var(--secondary); }
.section-count { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg); padding: 3px 10px; border-radius: 20px; }

/* CATEGORY FILTER */
.category-filter-bar {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin-bottom: 14px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-filter-bar::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 6px 13px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s;
  font-family: inherit;
}
.cat-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.cat-pill.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* PROPERTY CARDS */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.property-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-image-wrap { position: relative; height: 185px; width: 100%; background: #f3f4f6; overflow: hidden; }
.card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.property-card:hover .card-image { transform: scale(1.04); }

.category-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(17,24,39,0.82); color: #fbbf24;
  padding: 3px 9px; border-radius: 20px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px; backdrop-filter: blur(4px);
}
.status-tag { position: absolute; top: 10px; right: 10px; padding: 3px 9px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; }
.status-approved { background: #d1fae5; color: #065f46; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-rejected { background: #fee2e2; color: #991b1b; }

.price-tag {
  position: absolute; bottom: 10px; left: 10px; background: #fff; color: var(--primary);
  padding: 4px 12px; border-radius: 20px; font-weight: 800; font-size: 0.98rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); letter-spacing: -0.3px;
}

.card-content { padding: 13px 14px; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.card-location { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 3px; margin-bottom: 7px; font-weight: 500; }
.card-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; padding: 6px 10px; background: var(--bg); border-radius: 7px; font-size: 0.75rem; font-weight: 600; color: #374151; }
.card-description { font-size: 0.78rem; color: #6b7280; line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.owner-info { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f3f4f6; padding-top: 7px; margin-top: auto; font-size: 0.73rem; color: var(--text-light); margin-bottom: 8px; }
.star-rating-display { display: inline-flex; align-items: center; gap: 3px; color: #f59e0b; font-weight: 700; font-size: 0.8rem; cursor: pointer; }
.btn-group { display: flex; gap: 6px; margin-top: 10px; }

/* BUTTONS */
.btn {
  padding: 9px 14px; border-radius: 8px; border: none; font-weight: 600;
  font-size: 0.83rem; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 5px; font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #d97706; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-outline { background: #fff; border: 1.5px solid var(--border); color: #374151; }
.btn-outline:hover { background: var(--bg); }
.btn-dark-outline { background: rgba(255,255,255,0.1) !important; border: 1.5px solid rgba(255,255,255,0.3) !important; color: #fff !important; }

.property-action-row { display: flex; align-items: center; gap: 6px; width: 100%; }
.property-action-row .btn-action-main { flex: 1; padding: 8px 8px !important; font-size: 0.76rem !important; border-radius: 8px !important; height: 34px; white-space: nowrap; display: flex; align-items: center; justify-content: center; gap: 4px; }
.property-action-row .btn-icon-square { width: 34px !important; height: 34px !important; border-radius: 8px !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 0 !important; font-size: 0.9rem !important; flex-shrink: 0 !important; }

/* GPS & GOOGLE MAPS BUTTONS */
.btn-gps-detect {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #bfdbfe;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-gps-detect:hover {
  background: var(--primary);
  color: #fff;
}
.card-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #dbeafe;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}
.card-map-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* DESKTOP TABS */
.view-tabs { display: flex; gap: 7px; margin-bottom: 18px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
.view-tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 8px 14px; border-radius: 8px; background: #fff; color: var(--text-muted); border: 1.5px solid var(--border); font-weight: 600; font-size: 0.83rem; cursor: pointer; display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0; transition: all 0.2s; font-family: inherit; }
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-btn.admin-tab { color: #7c3aed; border-color: #ede9fe; background: #faf5ff; }
.tab-btn.admin-tab.active { background: #7c3aed; color: #fff; border-color: #7c3aed; }

/* FORMS */
.form-card { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.form-title { font-size: 1.15rem; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.form-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; width: 100%; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #374151; }

.form-control {
  width: 100% !important; box-sizing: border-box !important; display: block !important;
  padding: 10px 13px !important; font-size: 15px !important; font-weight: 500 !important;
  font-family: inherit !important; color: var(--text-main) !important;
  background: #fff !important; border: 1.5px solid #d1d5db !important;
  border-radius: 9px !important; outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -webkit-appearance: none !important; appearance: none !important;
}
.form-control::placeholder { color: #9ca3af !important; font-weight: 400 !important; }
.form-control:hover { border-color: #9ca3af !important; }
.form-control:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(37,99,235,0.14) !important; }
.form-control-dark { background: #1e293b !important; color: #f1f5f9 !important; border-color: #334155 !important; }
.form-control-dark::placeholder { color: #64748b !important; }
.form-control-dark:focus { border-color: #f59e0b !important; box-shadow: 0 0 0 3px rgba(245,158,11,0.2) !important; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 12px center !important; background-size: 15px !important; padding-right: 36px !important; cursor: pointer !important; }
textarea.form-control { min-height: 88px !important; resize: vertical !important; line-height: 1.5 !important; }

.file-upload-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; background: #f9fafb; border: 2px dashed #d1d5db; padding: 18px; border-radius: 9px; text-align: center; cursor: pointer; transition: all 0.2s; }
.file-upload-box:hover { border-color: var(--primary); background: var(--primary-light); }
.file-upload-box span { font-size: 0.82rem; font-weight: 600; color: #6b7280; }
.preview-thumb { width: 100%; max-height: 160px; object-fit: cover; border-radius: 9px; margin-top: 8px; border: 1.5px solid var(--border); }

/* CONTRACTOR CARDS */
.contractor-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.2s; }
.contractor-card:hover { box-shadow: var(--shadow-md); }
.contractor-header { display: flex; gap: 12px; align-items: center; }
.contractor-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0; }
.contractor-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.verified-badge { display: inline-flex; align-items: center; gap: 3px; background: #d1fae5; color: #065f46; font-size: 0.68rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.work-gallery { display: flex; gap: 6px; overflow-x: auto; padding: 2px 0; }
.work-thumb { width: 78px; height: 62px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.contractor-actions-grid { display: flex; flex-direction: column; gap: 6px; }
.contractor-btn-row { display: flex; gap: 6px; align-items: center; }
.contractor-btn-row .btn-call { flex: 1; padding: 7px 9px !important; font-size: 0.76rem !important; border-radius: 7px !important; height: 34px; white-space: nowrap; }
.contractor-btn-row .btn-icon-square { width: 34px !important; height: 34px !important; border-radius: 7px !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 0 !important; font-size: 0.9rem !important; flex-shrink: 0 !important; }

/* RATING */
.rating-picker { display: flex; gap: 7px; font-size: 1.6rem; cursor: pointer; color: #d1d5db; justify-content: center; margin: 8px 0; }
.rating-picker span.active { color: #f59e0b; }

/* LEAD PIPELINE */
.pipeline-board { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; }
.pipeline-col { flex: 0 0 250px; background: #f9fafb; border-radius: var(--radius); padding: 12px; display: flex; flex-direction: column; gap: 10px; min-height: 400px; border: 1px solid var(--border); }
.col-header { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.83rem; color: var(--secondary); padding-bottom: 7px; border-bottom: 2px solid var(--border); }
.count-pill { background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 1px 7px; border-radius: 10px; }
.lead-card { background: #fff; border-radius: var(--radius-sm); padding: 11px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 6px; font-size: 0.8rem; }

/* REPORTS */
.metrics-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 12px; margin-bottom: 18px; }
.metric-card { background: #fff; padding: 15px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 4px; }
.metric-title { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.metric-value { font-size: 1.45rem; font-weight: 900; color: var(--secondary); }

/* MODALS */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(17,24,39,0.72); z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 16px; box-sizing: border-box; backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex !important; }
.modal-card {
  background: #fff; width: 100%; max-width: 490px; max-height: 88vh;
  border-radius: 16px; padding: 20px; box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; overflow-y: auto; position: relative;
  animation: modalIn 0.2s ease;
}
@keyframes modalIn { from { opacity:0; transform:scale(0.95) translateY(10px); } to { opacity:1; transform:scale(1) translateY(0); } }
.modal-card::-webkit-scrollbar { width: 4px; }
.modal-card::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
.modal-header-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: inherit; z-index: 1; padding-top: 2px;
}
.modal-card:not([style*="background"]) .modal-header-bar { background: #fff; }
#admin-login-modal .modal-header-bar { background: transparent !important; border-bottom-color: #334155 !important; }
#admin-login-modal .modal-header-bar h3 { color: #ffffff !important; }
#admin-login-modal .modal-close-icon { background: #1e293b !important; color: #f1f5f9 !important; border: 1px solid #334155 !important; }
#admin-login-modal .modal-close-icon:hover { background: #334155 !important; color: #ffffff !important; }
.modal-header-bar h3 { font-size: 1.02rem; font-weight: 800; color: var(--secondary); margin: 0; }
.modal-close-icon { background: #f3f4f6; border: none; color: #6b7280; width: 28px; height: 28px; border-radius: 50%; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; flex-shrink: 0; }
.modal-close-icon:hover { background: #e5e7eb; color: var(--secondary); }

.install-icon-lg { width: 68px; height: 68px; margin: 0 auto; border-radius: 16px; box-shadow: var(--shadow-md); }
.progress-track { width: 100%; height: 9px; background: #e5e7eb; border-radius: 6px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--success)); transition: width 0.3s; }
.step-list { text-align: left; display: flex; flex-direction: column; gap: 7px; font-size: 0.8rem; }
.step-item { display: flex; align-items: center; gap: 7px; color: var(--text-muted); }
.step-item.done { color: var(--success); font-weight: 600; }

/* MOBILE DRAWER MENU */
#mobile-menu-modal {
  padding: 0 !important; align-items: flex-start !important;
  justify-content: flex-start !important; background: rgba(0,0,0,0.5) !important;
}
.mobile-menu-drawer {
  width: 80%; max-width: 285px; height: 100%; background: #fff;
  display: flex; flex-direction: column; overflow-y: auto;
  animation: drawerSlide 0.22s ease; box-shadow: 4px 0 20px rgba(0,0,0,0.14);
}
@keyframes drawerSlide { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; border-bottom: 1px solid var(--border); background: var(--secondary); flex-shrink: 0; }
.drawer-brand { display: flex; align-items: center; gap: 9px; }
.drawer-brand img { width: 30px; height: 30px; border-radius: 7px; }
.drawer-brand-text h3 { font-size: 0.88rem; font-weight: 800; color: #fff; line-height: 1.1; }
.drawer-brand-text p { font-size: 0.58rem; color: #fbbf24; font-weight: 600; }
.drawer-close-btn { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 7px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.drawer-nav { padding: 8px 0; flex: 1; }
.drawer-nav-item { display: flex; align-items: center; gap: 11px; padding: 12px 18px; cursor: pointer; transition: background 0.15s; font-size: 0.86rem; font-weight: 600; color: var(--text-main); border-left: 3px solid transparent; }
.drawer-nav-item:hover { background: var(--primary-light); border-left-color: var(--primary); color: var(--primary); }
.drawer-nav-icon { font-size: 1.15rem; width: 22px; text-align: center; flex-shrink: 0; }
.drawer-divider { height: 1px; background: var(--border); margin: 5px 14px; }
.drawer-footer { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.7rem; color: var(--text-light); text-align: center; flex-shrink: 0; }
.mobile-menu-grid, .menu-tile, .menu-role-btn { display: none !important; }

/* BOTTOM NAV */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 58px;
  background: #fff; border-top: 1px solid var(--border); z-index: 150;
  justify-content: space-around; align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.07);
}
.bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--text-light); font-size: 0.62rem; font-weight: 600; cursor: pointer; flex: 1; padding: 5px 0; transition: color 0.15s; border: none; background: none; }
.bottom-nav-item:hover, .bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.post-btn { color: #fff !important; background: var(--primary); border-radius: 12px; margin: 5px 4px; max-width: 62px; padding: 4px 10px; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.bottom-nav-item.post-btn .bottom-nav-icon { font-size: 1.3rem; }
.bottom-nav-icon { font-size: 1.25rem; line-height: 1; }

/* MISC */
.header-action-btn { border: none; padding: 7px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
.refer-btn { background: linear-gradient(135deg, var(--success), #059669); color: #fff; }
.help-btn { background: linear-gradient(135deg, #3b82f6, var(--primary)); color: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  .top-header { padding: 0 12px; height: 54px; }
  .brand-text h1 { font-size: 0.88rem; }
  .hero-search-section { padding: 20px 14px 18px; border-radius: 13px; }
  .hero-title { font-size: 1.15rem; }
  .mobile-bottom-nav { display: flex; }
  .view-tabs { display: none; }
  .grid-layout { grid-template-columns: 1fr; }
  .form-card { padding: 16px 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-overlay { align-items: center !important; justify-content: center !important; padding: 10px !important; }
  .modal-card { max-height: 86vh !important; max-width: 100% !important; border-radius: 14px !important; padding: 15px !important; }
  .service-banners-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-banner-card { height: 135px; padding: 10px; }
  .banner-buy { grid-column: 1; height: 135px; }
  .banner-post { grid-column: 2; height: 135px; }
  .banner-build { grid-column: 1 / -1; height: 125px; padding: 12px 14px; }
  .banner-builders { grid-column: 1 / -1; height: 115px; padding: 12px 14px; }
  .banner-title { font-size: 0.90rem; }
  .banner-sub { font-size: 0.68rem; margin-bottom: 4px; }
  .banner-badge { font-size: 0.58rem; padding: 2px 6px; }
  .reviews-slider-track { gap: 10px; }
  .review-slide-card { flex: 0 0 250px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1rem; }
  .btn-post-header { padding: 7px 10px; font-size: 0.75rem; }
  .btn-login-header { padding: 6px 8px; font-size: 0.72rem; }
  .brand-text p { display: none; }
}

/* FLOATING WHATSAPP & AI LIVE ASSISTANT */
.floating-ai-btn {
  position: fixed;
  bottom: 70px;
  right: 14px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  padding: 9px 15px;
  border-radius: 30px;
  box-shadow: 0 5px 18px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.floating-ai-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 22px rgba(37, 211, 102, 0.6);
}
.floating-ai-btn:active {
  transform: scale(0.96);
}
.pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 32px;
  border: 2px solid #25D366;
  animation: pulseEffect 2s infinite ease-out;
  pointer-events: none;
}
@keyframes pulseEffect {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.28); opacity: 0; }
}
.ai-btn-icon {
  font-size: 1.15rem;
}

@media (min-width: 769px) {
  .floating-ai-btn {
    bottom: 24px;
    right: 24px;
    padding: 11px 18px;
    font-size: 0.88rem;
  }
}

/* PROPERTY CARD WHATSAPP BUTTON */
.btn-whatsapp-card {
  background: #25D366;
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 11px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.btn-whatsapp-card:hover {
  background: #1eb956;
}

/* CUSTOM BEAUTIFUL HINDI POPUP / SUCCESS DIALOG */
.custom-alert-card {
  background: #ffffff;
  border-radius: 22px;
  max-width: 420px;
  width: 90%;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  animation: alertPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226, 232, 240, 0.8);
}
@keyframes alertPop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.custom-alert-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.custom-alert-icon-wrap.success {
  background: #dcfce7;
  color: #16a34a;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}
.custom-alert-icon-wrap.error {
  background: #fee2e2;
  color: #dc2626;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}
.custom-alert-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.custom-alert-msg {
  font-size: 0.90rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
}
.custom-alert-btn {
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s;
}
.custom-alert-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* FLOATING QUICK ACTIONS CLUSTER (WHATSAPP + CALL + AI) */
.floating-actions-cluster {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

@media (min-width: 769px) {
  .floating-actions-cluster {
    bottom: 26px;
    right: 24px;
  }
}

.floating-circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.floating-circle-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.fc-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.fc-call {
  background: #2563eb;
  color: #ffffff;
}

.fc-ai {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
}

.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  animation: pulse-ring-anim 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  pointer-events: none;
}

@keyframes pulse-ring-anim {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.fc-tooltip {
  position: absolute;
  right: 58px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.floating-circle-btn:hover .fc-tooltip {
  opacity: 1;
}

/* VIDEO TOUR BUTTON ON CARDS */
.video-tour-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.85);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.5);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.video-tour-badge:hover {
  background: #f59e0b;
  color: #111827;
  transform: scale(1.05);
}

/* AI CHAT BUBBLES */
.ai-user-bubble {
  background: #2563eb;
  color: #ffffff;
  align-self: flex-end;
  border-radius: 14px 14px 2px 14px;
  padding: 8px 12px;
  font-size: 0.84rem;
  max-width: 85%;
  line-height: 1.4;
  word-break: break-word;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.ai-bot-bubble {
  background: #f1f5f9;
  color: #0f172a;
  align-self: flex-start;
  border-radius: 14px 14px 14px 2px;
  padding: 8px 12px;
  font-size: 0.84rem;
  max-width: 90%;
  line-height: 1.45;
  border: 1px solid #e2e8f0;
  word-break: break-word;
}


