/* ============================================================
   Landsquire Design System v2.0 — 99acres Inspired Premium UI
   Overrides for Homelengo template
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --ls-primary: #0078db;
  --ls-primary-dark: #0F4C81;
  --ls-primary-light: #33A5FF;
  --ls-secondary: #0F4C81;
  --ls-secondary-light: #1A6BB5;
  --ls-secondary-dark: #0A3559;
  --ls-success: #27AE60;
  --ls-error: #E74C3C;
  --ls-warning: #139566;

  /* Backgrounds */
  --ls-bg-primary: #F7FAFC;
  --ls-bg-secondary: #FFFFFF;
  --ls-bg-alt: #F0F4F8;
  --ls-bg-dark: #0F172A;

  /* Text */
  --ls-text-primary: #1E293B;
  --ls-text-secondary: #64748B;
  --ls-text-light: #94A3B8;
  --ls-text-white: #FFFFFF;

  /* Gradients */
  --ls-gradient-primary: linear-gradient(135deg, #0078db 0%, #0F4C81 100%);
  --ls-gradient-premium: linear-gradient(135deg, #139566 0%, #1DB57A 100%);
  --ls-gradient-luxury: linear-gradient(135deg, #0F4C81 0%, #0A3559 100%);
  --ls-gradient-cta: linear-gradient(135deg, #0078db 0%, #33A5FF 100%);

  /* Typography */
  --ls-font-heading: 'Plus Jakarta Sans', sans-serif;
  --ls-font-body: 'Inter', sans-serif;

  /* Border Radius */
  --ls-radius-button: 12px;
  --ls-radius-input: 14px;
  --ls-radius-card: 16px;
  --ls-radius-large-card: 24px;
  --ls-radius-modal: 20px;
  --ls-radius-image: 16px;

  /* Shadows — 99acres style soft shadows */
  --ls-shadow-small: 0 2px 8px rgba(15, 76, 129, 0.06);
  --ls-shadow-medium: 0 8px 24px rgba(15, 76, 129, 0.08);
  --ls-shadow-large: 0 16px 48px rgba(15, 76, 129, 0.12);
  --ls-shadow-floating: 0 20px 60px rgba(15, 76, 129, 0.15);

  /* Spacing */
  --ls-section-desktop: 100px;
  --ls-section-tablet: 70px;
  --ls-section-mobile: 50px;
  --ls-card-gap: 28px;
  --ls-grid-gap: 24px;
}

/* Template gradient override */
.grident-text {
  background-image: var(--ls-gradient-primary) !important;
  color: transparent !important;
  background-clip: text !important;
}

/* ============================================================
   BASE OVERRIDES
   ============================================================ */
body {
  font-family: var(--ls-font-body);
  color: var(--ls-text-primary);
  background-color: var(--ls-bg-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ls-font-heading);
  color: var(--ls-text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: 44px; font-weight: 700; }
h2, .h2 { font-size: 36px; font-weight: 700; }
h3, .h3 { font-size: 28px; font-weight: 600; }
h4, .h4 { font-size: 22px; font-weight: 600; }
h5, .h5 { font-size: 18px; font-weight: 600; }
h6, .h6 { font-size: 16px; font-weight: 600; }

p { font-size: 16px; color: var(--ls-text-secondary); line-height: 1.7; }

a {
  color: var(--ls-primary-dark);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--ls-primary);
}

/* Override template text colors */
.text-variant-1 { color: var(--ls-text-secondary) !important; }
.text-variant-2 { color: var(--ls-text-light) !important; }
.text-primary { color: var(--ls-primary-dark) !important; }
.text-black { color: var(--ls-text-primary) !important; }
.text-success { color: var(--ls-success) !important; }
.text-danger { color: var(--ls-error) !important; }
.bg-primary { background: var(--ls-gradient-primary) !important; }
.bg-surface { background-color: var(--ls-bg-alt) !important; }
.bg-primary-new { background-color: var(--ls-bg-alt) !important; }

/* ============================================================
   HEADER — 99acres inspired glassmorphism
   ============================================================ */
.main-header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease;
  height: 64px !important;
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(15, 76, 129, 0.06) !important;
}

.main-header.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-lower .inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.inner-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-box .logo img {
  height: 34px;
  width: auto;
  border-radius: 50%;
}

/* Navigation menu — compact, clean */
.main-menu .navigation > li {
  display: inline-block;
  padding-right: 2px;
}

.main-menu .navigation > li > a {
  font-family: var(--ls-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ls-text-secondary);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: var(--ls-primary-dark);
  background: rgba(77, 168, 255, 0.08);
}

/* Dropdown */
.main-menu .navigation > li.dropdown2 > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--ls-radius-card);
  box-shadow: var(--ls-shadow-medium);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.main-menu .navigation > li.dropdown2:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .navigation > li.dropdown2 > ul li {
  display: block;
}

.main-menu .navigation > li.dropdown2 > ul li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--ls-font-body);
  font-size: 14px;
  color: var(--ls-text-secondary);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.main-menu .navigation > li.dropdown2 > ul li a:hover {
  background: rgba(77, 168, 255, 0.08);
  color: var(--ls-primary-dark);
}

/* User dropdown in header */
.inner-header-right .dropdown .navigation > li > a {
  font-weight: 600;
  color: var(--ls-primary-dark);
  background: rgba(11, 61, 145, 0.06);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sign in / Register buttons */
.inner-header-right .tf-btn {
  font-family: var(--ls-font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1rem;
}

.inner-header-right .tf-btn.btn-line {
  color: var(--ls-primary-dark);
}

.inner-header-right .tf-btn.btn-line::before {
  background: transparent !important;
}

.inner-header-right .tf-btn.btn-line:hover {
  color: white;
}

.inner-header-right .tf-btn.btn-line:hover::before {
  background: var(--ls-primary-dark) !important;
  opacity: 1 !important;
}

.inner-header-right .tf-btn:active {
  opacity: 0.85;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */

/* Toggle button (hamburger) - only visible on mobile via template breakpoint */
.mobile-nav-toggler.mobile-button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: rgba(77, 168, 255, 0.08) !important;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  right: 0 !important;
  top: 0 !important;
  transform: none !important;
  float: none !important;
  margin-left: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease !important;
}

.mobile-nav-toggler.mobile-button:active {
  transform: scale(0.92) !important;
}

.mobile-nav-toggler.mobile-button span,
.mobile-nav-toggler.mobile-button span::before,
.mobile-nav-toggler.mobile-button span::after {
  background: var(--ls-primary-dark) !important;
  height: 2px !important;
  border-radius: 2px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-nav-toggler.mobile-button span {
  width: 16px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.mobile-nav-toggler.mobile-button span::before {
  width: 16px !important;
  transform: translate3d(0, -6px, 0) !important;
}

.mobile-nav-toggler.mobile-button span::after {
  width: 16px !important;
  transform: translate3d(0, 6px, 0) !important;
}

/* Close button (X) */
.close-btn {
  position: fixed !important;
  right: 20px !important;
  top: 20px !important;
  z-index: 9999999999 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu-visible .close-btn {
  opacity: 1 !important;
  visibility: visible !important;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.close-btn::before {
  content: "\2715" !important;
  font-family: none !important;
  font-size: 18px !important;
  color: white !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}

.close-btn .icon {
  display: none !important;
}

/* Mobile menu panel - slide from right */
.mobile-menu {
  position: fixed !important;
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100% !important;
  padding-right: 0 !important;
  visibility: hidden !important;
  z-index: 999999 !important;
}

.mobile-menu-visible .mobile-menu {
  visibility: visible !important;
}

/* Backdrop overlay */
.mobile-menu .menu-backdrop {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s ease !important;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Menu box */
.mobile-menu .menu-box {
  position: absolute !important;
  left: auto !important;
  right: -100% !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  z-index: 5 !important;
  border-radius: 0 !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1) !important;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  right: 0 !important;
}

/* Nav logo */
.mobile-menu .nav-logo {
  padding: 20px 24px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  background: transparent !important;
  box-shadow: none !important;
  flex-shrink: 0;
}

.mobile-menu .nav-logo img {
  max-width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
}

/* Bottom canvas - scrollable content */
.mobile-menu .bottom-canvas {
  padding: 16px 24px 40px !important;
  height: auto !important;
  overflow-y: auto !important;
  flex: 1;
}

/* ---------- User section (logged in) ---------- */
.mobile-user-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.mobile-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ls-gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ls-font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mobile-user-name {
  font-family: var(--ls-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ls-text-primary);
}

.mobile-user-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.mobile-user-links a {
  font-family: var(--ls-font-body);
  font-size: 15px;
  color: var(--ls-text-secondary);
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-user-links a:hover {
  background: rgba(77, 168, 255, 0.08);
  color: var(--ls-primary-dark);
}

.mobile-user-links a:last-child {
  color: var(--ls-error);
}

.mobile-user-links a:last-child:hover {
  background: rgba(220, 38, 38, 0.06);
  color: var(--ls-error);
}

/* ---------- Login box (guest) ---------- */
.mobile-menu .login-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 16px 0 20px !important;
  margin-bottom: 16px !important;
}

.mobile-menu .login-box a,
.mobile-menu .login-box span {
  font-family: var(--ls-font-heading) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--ls-text-primary) !important;
  text-decoration: none;
}

.mobile-menu .login-box a:first-child {
  color: var(--ls-primary-dark) !important;
}

.mobile-menu .login-box a:last-child {
  background: var(--ls-gradient-primary);
  color: white !important;
  padding: 6px 18px;
  border-radius: 8px;
}

/* ---------- Menu items ---------- */
.mobile-menu .menu-outer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

.mobile-menu .navigation {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.mobile-menu .navigation li {
  position: relative !important;
  display: block !important;
}

.mobile-menu .navigation li > a {
  font-family: var(--ls-font-heading) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--ls-text-primary) !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  display: block !important;
  line-height: 1.4 !important;
}

.mobile-menu .navigation li > a:hover,
.mobile-menu .navigation li.current > a {
  background: rgba(77, 168, 255, 0.08) !important;
  color: var(--ls-primary-dark) !important;
}

/* Dropdown toggle */
.mobile-menu .navigation li.dropdown2 .dropdown2-btn {
  position: absolute !important;
  right: 4px !important;
  top: 4px !important;
  width: 40px !important;
  height: 40px !important;
  text-align: center !important;
  line-height: 40px !important;
  cursor: pointer !important;
  z-index: 5 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.mobile-menu .navigation li.dropdown2 .dropdown2-btn::before {
  content: "\e92a" !important;
  font-family: "icomoon" !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ls-text-secondary) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  transition: transform 0.3s ease !important;
  transform: rotate(0deg) !important;
}

.mobile-menu .navigation li.open .dropdown2-btn::before {
  transform: rotate(180deg) !important;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none !important;
  background: rgba(77, 168, 255, 0.06) !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  margin-top: 4px !important;
}

.mobile-menu .navigation li > ul > li > a {
  padding: 10px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ls-text-secondary) !important;
}

.mobile-menu .navigation li > ul > li > a:hover {
  color: var(--ls-primary-dark) !important;
  background: transparent !important;
}

/* ---------- Contact info ---------- */
.mobile-menu .mobi-icon-box {
  padding-top: 4px;
}

.mobile-menu .mobi-icon-box .box {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.mobile-menu .mobi-icon-box .icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(77, 168, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  color: var(--ls-primary-dark) !important;
  flex-shrink: 0;
}

.mobile-menu .mobi-icon-box .box div {
  font-family: var(--ls-font-body) !important;
  font-size: 14px !important;
  color: var(--ls-text-secondary) !important;
}

/* ============================================================
   HEADER RESPONSIVE - Hide desktop buttons on mobile
   ============================================================ */
@media (max-width: 1099px) {
  .inner-header-right .tf-btn {
    display: none !important;
  }

  .inner-header-right .dropdown .main-menu {
    display: block !important;
  }

  .inner-header-right {
    margin-right: 0 !important;
  }

  .inner-header-right ul {
    margin-right: 0 !important;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tf-btn {
  position: relative;
  z-index: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #ffffff;
  font-family: var(--ls-font-heading);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  border-radius: 0.5rem;
  user-select: none;
  text-decoration: none;
}

/* Gradient border layer */
.tf-btn::after {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  z-index: -2;
  transition: all 0.6s ease;
  background: var(--ls-gradient-primary);
}

/* Text content above pseudo-elements */
.tf-btn > *,
.tf-btn .span-content,
.tf-btn .position-relative {
  position: relative;
  z-index: 1;
}

.tf-btn:hover::before {
  opacity: 0;
}

.tf-btn:active {
  opacity: 0.85;
}

.tf-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.tf-btn i {
  font-size: 1rem;
}

/* Primary button */
.tf-btn.primary::before {
  background: var(--ls-primary-dark);
}

/* Accent/Gold button */
.tf-btn.accent::after {
  background: var(--ls-gradient-premium);
}

.tf-btn.accent::before {
  background: var(--ls-secondary);
}

/* Outline button */
.tf-btn.btn-line {
  color: var(--ls-primary-dark);
}

.tf-btn.btn-line::before {
  background: transparent;
}

.tf-btn.btn-line:hover {
  color: white;
}

.tf-btn.btn-line:hover::before {
  background: var(--ls-primary-dark);
  opacity: 1;
}

/* Success green button */
.tf-btn.text-success {
  color: white !important;
}

.tf-btn.text-success::after {
  background: var(--ls-success) !important;
}

.tf-btn.text-success::before {
  background: var(--ls-success) !important;
}

.tf-btn.text-success:hover {
  color: white !important;
}

.tf-btn.text-success:hover::before {
  opacity: 0;
}

/* WhatsApp button in detail sidebar */
.tf-btn[style*="#25D366"] {
  background: transparent !important;
}

.tf-btn[style*="#25D366"]::after {
  background: #25D366 !important;
}

.tf-btn[style*="#25D366"]::before {
  background: #25D366 !important;
}

.tf-btn[style*="#25D366"]:hover::before {
  opacity: 0;
}

/* Bootstrap bg-success override */
.tf-btn.bg-success {
  color: white !important;
}

.tf-btn.bg-success::after {
  background: var(--ls-success) !important;
}

.tf-btn.bg-success::before {
  background: var(--ls-success) !important;
}

.tf-btn.bg-success:hover {
  color: white !important;
}

.tf-btn.bg-success:hover::before {
  opacity: 0;
}

/* Small button */
.tf-btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
}

/* Large button */
.tf-btn.large {
  padding: 1rem 2rem;
  font-size: 0.85rem;
}

/* Full width */
.tf-btn.w-100 {
  width: 100%;
}

/* btn-line1 override (gradient border button) */
.btn-line1 {
  position: relative;
  z-index: 0;
}

.btn-line1:after {
  content: "" !important;
  position: absolute !important;
  height: calc(100% + 2px) !important;
  width: calc(100% + 2px) !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: var(--ls-gradient-primary) !important;
  border-radius: 50rem !important;
  z-index: -1;
}

.btn-line1:before {
  content: "" !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: transparent !important;
  border-radius: 50rem !important;
  z-index: 0;
}

.btn-line1 span,
.btn-line1 .text {
  position: relative;
  z-index: 1;
  color: white !important;
}

.btn-line1:hover:before {
  background: white !important;
}

.btn-line1:hover span,
.btn-line1:hover .text {
  background: var(--ls-gradient-primary) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.btn-line1:hover svg path {
  stroke: var(--ls-primary-dark) !important;
}

.btn-line1:hover .icon {
  color: var(--ls-primary-dark) !important;
}

/* Bootstrap bg-success override on buttons */
.tf-btn.bg-success {
  background: var(--ls-success) !important;
  border: 2px solid var(--ls-success);
  color: white !important;
  box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.3),
    0 2px 4px -1px rgba(22, 163, 74, 0.15);
}

.tf-btn.bg-success:hover {
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.4),
    0 4px 6px -2px rgba(22, 163, 74, 0.2);
  color: white !important;
}

/* ============================================================
   CARDS
   ============================================================ */
.homelengo-box {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  box-shadow: var(--ls-shadow-small);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.homelengo-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--ls-shadow-large);
}

.homelengo-box .archive-top {
  position: relative;
  overflow: hidden;
  border-radius: var(--ls-radius-large-card) var(--ls-radius-large-card) 0 0;
}

.homelengo-box .images-style {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.homelengo-box .images-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.homelengo-box:hover .images-style img {
  transform: scale(1.08);
}

.homelengo-box .archive-top .top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.homelengo-box .flag-tag {
  font-family: var(--ls-font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.homelengo-box .flag-tag.style-1 {
  background: rgba(15, 76, 129, 0.85);
  color: white;
}

.homelengo-box .flag-tag.style-2 {
  background: rgba(39, 174, 96, 0.9);
  color: white;
}

.homelengo-box .flag-tag.style-3 {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

/* Wishlist & Quick View buttons */
.homelengo-box .archive-top .top .wishlist-btn,
.homelengo-box .archive-top .top .quick-view-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--ls-text-primary);
}

.homelengo-box .archive-top .top .wishlist-btn:hover {
  background: white;
  transform: scale(1.1);
  color: var(--ls-error);
}

.homelengo-box .archive-top .top .quick-view-btn {
  font-size: 14px;
}

.homelengo-box .archive-top .top .quick-view-btn:hover {
  background: white;
  transform: scale(1.1);
  color: var(--ls-primary-dark);
}

.homelengo-box .archive-top .bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.homelengo-box .archive-top .bottom svg {
  flex-shrink: 0;
}

/* Card bottom content */
.homelengo-box .archive-bottom {
  padding: 18px 20px 20px;
}

.homelengo-box .content-top h6 {
  font-family: var(--ls-font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.homelengo-box .content-top h6 a {
  color: var(--ls-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.homelengo-box .content-top h6 a:hover {
  color: var(--ls-primary-dark);
}

.homelengo-box .meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.homelengo-box .meta-list .item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--ls-text-secondary);
}

.homelengo-box .meta-list .item i {
  font-size: 15px;
  color: var(--ls-text-light);
}

.homelengo-box .content-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ls-bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homelengo-box .price {
  font-family: var(--ls-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ls-primary-dark);
}

.homelengo-box .price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--ls-text-light);
}

.homelengo-box .card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.homelengo-box .card-cta:hover {
  gap: 8px;
  color: var(--ls-primary-light);
}

/* ============================================================
   INPUT FIELDS
   ============================================================ */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select.form-control,
textarea.form-control {
  font-family: var(--ls-font-body);
  font-size: 15px;
  color: var(--ls-text-primary);
  background: var(--ls-bg-secondary);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--ls-radius-input);
  padding: 12px 16px;
  height: auto;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.2);
  outline: none;
}

.form-control::placeholder {
  color: var(--ls-text-light);
}

.form-select {
  font-family: var(--ls-font-body);
  font-size: 15px;
  color: var(--ls-text-primary);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--ls-radius-input);
  padding: 12px 16px;
  height: auto;
  background-color: var(--ls-bg-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.2);
}

/* Nice select overrides */
.nice-select {
  border: 1.5px solid #E5E7EB !important;
  border-radius: var(--ls-radius-input) !important;
  font-family: var(--ls-font-body) !important;
  font-size: 15px !important;
  height: auto !important;
  padding: 6px 16px !important;
  line-height: 1.5 !important;
}

.nice-select .current {
  color: var(--ls-text-primary) !important;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--ls-primary) !important;
  box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.2) !important;
}

.nice-select .list {
  border-radius: var(--ls-radius-input) !important;
  box-shadow: var(--ls-shadow-medium) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.nice-select .option {
  font-family: var(--ls-font-body) !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected {
  background-color: rgba(77, 168, 255, 0.08) !important;
  color: var(--ls-primary-dark) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ls-bg-dark) !important;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ls-gradient-primary);
}

.footer .top-footer {
  padding: 80px 0 40px;
}

.footer .footer-logo img {
  border-radius: 50% !important;
}

.footer .text-variant-2 {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px;
  line-height: 1.7;
}

.footer .footer-heading-mobile {
  font-family: var(--ls-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer .navigation-menu-footer li {
  margin-bottom: 10px;
}

.footer .navigation-menu-footer li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .navigation-menu-footer li a:hover {
  color: var(--ls-secondary);
  padding-left: 4px;
}

/* Social icons */
.footer .wd-social span {
  font-family: var(--ls-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  display: block;
}

.footer .list-social {
  gap: 12px;
  padding: 0;
  list-style: none;
}

.footer .box-icon.w-40 {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .box-icon.w-40:hover {
  background: var(--ls-gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(77, 168, 255, 0.3);
}

.footer .box-icon.social:hover .icon-path {
  fill: white !important;
}

.footer .text-white {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer .text-white.caption-1:hover {
  color: var(--ls-secondary) !important;
}

/* Bottom footer */
.footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer .content-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer .menu-bottom {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .menu-bottom li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .menu-bottom li a:hover {
  color: var(--ls-secondary);
}

.footer .btn-outline-light {
  position: relative;
  z-index: 0;
  border-radius: 0.5rem;
  font-family: var(--ls-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.2rem;
  transition: all 0.6s ease;
  background: transparent;
}

.footer .btn-outline-light::after {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  z-index: -2;
  background: rgba(255, 255, 255, 0.3);
}

.footer .btn-outline-light::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  background: transparent;
  transition: all 0.6s ease;
}

.footer .btn-outline-light:hover {
  color: var(--ls-primary-dark) !important;
}

.footer .btn-outline-light:hover::before {
  background: white;
}

/* ============================================================
   SECTION STYLING
   ============================================================ */
.section {
  padding: var(--ls-section-desktop) 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .subtitle {
  font-family: var(--ls-font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ls-primary-dark);
  margin-bottom: 8px;
  display: block;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ls-text-primary);
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 16px;
  color: var(--ls-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Flat section spacing */
.flat-section {
  padding: 70px 0;
}

.flat-section.pt-4 {
  padding-top: 40px !important;
}

.flat-section.pb-4 {
  padding-bottom: 40px !important;
}

/* ============================================================
   HERO / SEARCH BOX
   ============================================================ */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--ls-gradient-luxury);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-section h1 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.hero-section .hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-weight: 400;
}

/* Search form - compact row layout */
.search-bar {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.search-bar .row {
  align-items: center;
  margin: 0 -6px;
}

.search-bar .row > div {
  padding: 0 6px;
}

.search-bar label {
  display: none;
}

.search-bar .form-control,
.search-bar .nice-select {
  background: rgba(255, 255, 255, 0.95) !important;
  border: none !important;
  border-radius: 10px !important;
  height: 44px;
  font-size: 13px;
}

.search-bar .form-control::placeholder {
  color: var(--ls-text-light);
  font-size: 13px;
}

.search-bar .nice-select {
  line-height: 44px;
}

.search-bar .nice-select .current {
  font-size: 13px;
  color: var(--ls-text-secondary);
}

.search-bar .tf-btn {
  height: 44px;
  min-height: 44px;
  width: 100%;
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
}

/* Property type chips */
.search-bar .prop-type-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.search-bar .prop-type-chips .chip {
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--ls-font-body);
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.search-bar .prop-type-chips .chip:hover,
.search-bar .prop-type-chips .chip.active {
  background: white;
  color: var(--ls-primary-dark);
  border-color: white;
}

/* ============================================================
   PROPERTY TABS
   ============================================================ */
.widget-tabs .nav-tabs {
  border-bottom: none;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.widget-tabs .nav-tabs .nav-link {
  font-family: var(--ls-font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--ls-text-secondary);
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px 24px;
  transition: all 0.3s ease;
  background: white;
}

.widget-tabs .nav-tabs .nav-link:hover {
  border-color: var(--ls-primary-dark);
  color: var(--ls-primary-dark);
}

.widget-tabs .nav-tabs .nav-link.active {
  background: var(--ls-gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--ls-shadow-small);
}

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.price {
  font-family: var(--ls-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ls-primary-dark);
}

.price-gold {
  color: var(--ls-secondary);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge-ls {
  font-family: var(--ls-font-heading);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-ls.verified {
  background: rgba(22, 163, 74, 0.1);
  color: var(--ls-success);
}

.badge-ls.premium {
  background: rgba(245, 158, 11, 0.1);
  color: var(--ls-secondary);
}

/* ============================================================
   CITIES / LOCATIONS GRID
   ============================================================ */
.city-card {
  position: relative;
  border-radius: var(--ls-radius-large-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-large);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover img {
  transform: scale(1.08);
}

.city-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.city-card .overlay h5 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.city-card .overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ============================================================
   CATEGORY CARDS — 99acres inspired
   ============================================================ */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-medium);
  border-color: rgba(77, 168, 255, 0.2);
  text-decoration: none;
}

.category-card .category-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(77, 168, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  color: var(--ls-primary-dark);
}

.category-card:hover .category-icon {
  background: var(--ls-gradient-primary);
  color: white;
  transform: scale(1.05);
}

.category-card .category-name {
  font-family: var(--ls-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ls-text-primary);
  margin-bottom: 4px;
}

.category-card .category-count {
  font-size: 13px;
  color: var(--ls-text-light);
}

/* Top Location Card */
.location-card {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-card);
  padding: 24px;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ls-shadow-medium);
  border-color: rgba(77, 168, 255, 0.2);
}

.location-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(11, 61, 145, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-card .icon-box i {
  font-size: 22px;
  color: var(--ls-primary-dark);
}

.location-card .info h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.location-card .info span {
  font-size: 13px;
  color: var(--ls-text-light);
}

/* ============================================================
   FILTER SIDEBAR (Listings page)
   ============================================================ */
.filter-sidebar {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  padding: 32px;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-sidebar .filter-title {
  font-family: var(--ls-font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ls-bg-alt);
}

.filter-sidebar .filter-group {
  margin-bottom: 24px;
}

.filter-sidebar .filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.filter-sidebar .tf-btn {
  width: 100%;
}

/* ============================================================
   LISTING DETAILS
   ============================================================ */
.property-gallery {
  border-radius: var(--ls-radius-large-card);
  overflow: hidden;
}

.property-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-sidebar {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  padding: 32px;
  box-shadow: var(--ls-shadow-medium);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.detail-sidebar .agent-info {
  text-align: center;
  margin-bottom: 24px;
}

.detail-sidebar .agent-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--ls-bg-alt);
}

.detail-sidebar .agent-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-sidebar .agent-info span {
  font-size: 14px;
  color: var(--ls-text-secondary);
}

.detail-sidebar .price-display {
  font-size: 32px;
  font-weight: 700;
  color: var(--ls-primary-dark);
  text-align: center;
  margin-bottom: 24px;
}

.detail-sidebar .btn-group-ls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-sidebar .btn-group-ls .tf-btn {
  width: 100%;
}

/* Map container */
#property-detail-map {
  width: 100%;
  height: 350px;
  border-radius: var(--ls-radius-card);
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

/* ============================================================
   PROPERTY FEATURES LIST
   ============================================================ */
.property-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.property-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--ls-bg-alt);
  border-radius: 12px;
}

.property-feature-item i {
  font-size: 20px;
  color: var(--ls-primary-dark);
}

.property-feature-item .label {
  font-size: 13px;
  color: var(--ls-text-secondary);
}

.property-feature-item .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ls-text-primary);
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ls-bg-alt);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ls-text-secondary);
}

.amenity-tag i {
  color: var(--ls-success);
  font-size: 16px;
}

/* ============================================================
   AGENT / BROKER CARDS
   ============================================================ */
.agent-card {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  padding: 32px;
  text-align: center;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-medium);
}

.agent-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid var(--ls-bg-alt);
}

.agent-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.agent-card .role {
  font-size: 14px;
  color: var(--ls-text-light);
  margin-bottom: 12px;
}

.agent-card .contact-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.agent-card .contact-btns a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.agent-card .contact-btns .btn-call {
  background: var(--ls-success);
  color: white;
}

.agent-card .contact-btns .btn-call:hover {
  background: #15803d;
}

.agent-card .contact-btns .btn-whatsapp {
  background: #25D366;
  color: white;
}

.agent-card .contact-btns .btn-whatsapp:hover {
  background: #1da851;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  padding: 32px;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card .stars {
  color: var(--ls-secondary);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ls-text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author .name {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card .author .role {
  font-size: 13px;
  color: var(--ls-text-light);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  overflow: hidden;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-medium);
}

.blog-card .blog-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-body .blog-date {
  font-size: 13px;
  color: var(--ls-text-light);
  margin-bottom: 8px;
  display: block;
}

.blog-card .blog-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card .blog-body h5 a {
  color: var(--ls-text-primary);
  text-decoration: none;
}

.blog-card .blog-body h5 a:hover {
  color: var(--ls-primary-dark);
}

.blog-card .blog-body p {
  font-size: 14px;
  color: var(--ls-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   COUNTDOWN / STATS
   ============================================================ */
.stat-item {
  text-align: center;
  padding: 32px;
}

.stat-item .stat-number {
  font-family: var(--ls-font-heading);
  font-size: 48px;
  font-weight: 800;
  background: var(--ls-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 16px;
  color: var(--ls-text-secondary);
  font-weight: 500;
}

/* ============================================================
   GLASSMORPHISM UTILITY
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right {
  animation: slideRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hover lift animation */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-medium);
}

/* ============================================================
   STEP WIZARD (Add Listing)
   ============================================================ */
.wizard-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 10px 20px; */
  border-radius: 12px;
  font-family: var(--ls-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--ls-text-light);
  /* background: var(--ls-bg-alt); */
  transition: all 0.3s ease;
}

.wizard-step.active {
  /* background: var(--ls-gradient-primary); */
  color: white;
  /* box-shadow: var(--ls-shadow-small); */
}

.wizard-step.completed {
  /* background: rgba(22, 163, 74, 0.1); */
  color: var(--ls-success);
}

.wizard-step .step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.1);
}

.wizard-step.active .step-number {
  background: rgba(255, 255, 255, 0.2);
}

.step-panel {
  background: var(--ls-bg-secondary);
  border-radius: var(--ls-radius-large-card);
  padding: 40px;
  box-shadow: var(--ls-shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.widget-box-2 {
  margin-bottom: 32px;
}

.widget-box-2 .title {
  font-family: var(--ls-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ls-bg-alt);
}

.box-fieldset {
  margin-bottom: 20px;
}

.box-fieldset > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--ls-text-light);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--ls-primary);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: white !important;
  box-shadow: var(--ls-shadow-medium) !important;
  color: var(--ls-text-primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--ls-gradient-primary) !important;
  color: white !important;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.progress-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ls-bg-secondary);
  box-shadow: var(--ls-shadow-medium);
  border: 2px solid var(--ls-primary-dark);
}

.progress-wrap svg.progress-circle path {
  stroke: var(--ls-primary-dark);
  stroke-width: 4;
}

/* ============================================================
   MOBILE BOTTOM NAV — 99acres inspired
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  padding: 0 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mobile-bottom-nav .nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 56px;
  position: relative;
}

.mobile-bottom-nav .nav-item .nav-icon {
  font-size: 20px;
  color: var(--ls-text-light);
  margin-bottom: 2px;
  transition: color 0.2s ease;
  line-height: 1;
}

.mobile-bottom-nav .nav-item .nav-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--ls-text-light);
  transition: color 0.2s ease;
}

.mobile-bottom-nav .nav-item:hover .nav-icon,
.mobile-bottom-nav .nav-item:hover .nav-label,
.mobile-bottom-nav .nav-item.active .nav-icon,
.mobile-bottom-nav .nav-item.active .nav-label {
  color: var(--ls-primary-dark);
}

.mobile-bottom-nav .nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--ls-primary-dark);
}

.mobile-bottom-nav .nav-item.add-property {
  position: relative;
  top: -12px;
}

.mobile-bottom-nav .nav-item.add-property .add-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ls-gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(77, 168, 255, 0.3);
  transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item.add-property .add-btn:active {
  transform: scale(0.92);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1440px) {
  .header-lower .inner-header {
    max-width: 100%;
    padding: 0 24px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: var(--ls-section-tablet) 0;
  }

  .hero-section h1 {
    font-size: 40px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .header-lower .inner-header {
    padding: 0 16px;
  }

  .footer .top-footer {
    padding: 60px 0 30px;
  }

  .detail-sidebar {
    position: static !important;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--ls-section-mobile) 0;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section .hero-subtitle {
    font-size: 16px;
  }

  .search-bar {
    padding: 16px;
    border-radius: 16px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .footer .content-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer .menu-bottom {
    justify-content: center;
  }

  .step-panel {
    padding: 24px;
  }

  .homelengo-box .archive-bottom {
    padding: 16px 20px 20px;
  }
}

@media (max-width: 1199px) {
  .main-header {
    padding: 0 !important;
  }

  .header-account ul {
    margin-right: 0 !important;
  }

  .header-account {
    margin-right: 0 !important;
  }

  #navbarSupportedContent {
    display: block !important;
  }
}

/* Mobile header height / spacing at menu collapse breakpoint */
@media (max-width: 1099px) {
  .header-lower .inner-header {
    padding: 0 16px;
    height: 64px;
  }

  .main-header {
    height: 64px !important;
  }
}

@media (max-width: 991px) {
  .inner-header-left {
    gap: 0;
  }

  .logo-box .logo img {
    height: 34px;
  }

  .mobile-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .homelengo-box .meta-list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-sidebar {
    padding: 20px;
  }

  .main-header {
    height: 60px !important;
  }

  .header-lower .inner-header {
    height: 60px;
  }

  .mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Desktop nav li spacing override */
@media only screen and (min-width: 1296px) {
  .main-header .main-menu .navigation > li {
    padding-right: 15px !important;
  }
}

/* ============================================================
   HAMBURGER TO X ANIMATION
   ============================================================ */
body.mobile-menu-visible .mobile-nav-toggler.mobile-button span {
  opacity: 0 !important;
}

body.mobile-menu-visible .mobile-nav-toggler.mobile-button span::before {
  transform: translate3d(0, 0, 0) rotate(45deg) !important;
}

body.mobile-menu-visible .mobile-nav-toggler.mobile-button span::after {
  transform: translate3d(0, 0, 0) rotate(-45deg) !important;
}

body.mobile-menu-visible .mobile-nav-toggler.mobile-button {
  background: rgba(77, 168, 255, 0.15) !important;
}

/* ============================================================
   USER PANEL HEADER — Modern Redesign
   ============================================================ */
.vp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  z-index: 1100;
  transition: all 0.3s ease;
}

.vp-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.vp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  max-width: 100%;
}

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

.vp-sidebar-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: #f4f6fa;
  border-radius: 8px;
  font-size: 20px;
  color: #1e293b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.vp-sidebar-toggle:hover {
  background: #e8ecf2;
}

.vp-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* Header Search */
.vp-header-center {
  flex: 1;
  max-width: 420px;
  margin: 0 32px;
}

.vp-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f6fa;
  border-radius: 10px;
  padding: 0 14px;
  height: 40px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.vp-search-box:focus-within {
  background: #fff;
  border-color: #0078db;
  box-shadow: 0 0 0 3px rgba(0, 120, 219, 0.1);
}

.vp-search-box i {
  color: #94a3b8;
  font-size: 14px;
}

.vp-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #1e293b;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.vp-search-input::placeholder {
  color: #94a3b8;
}

/* Header Right */
.vp-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Add Property Button */
.vp-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0078db 0%, #0f4c81 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.vp-btn-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 120, 219, 0.3);
  color: #fff;
}

/* Icon Button */
.vp-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f4f6fa;
  border-radius: 10px;
  font-size: 18px;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.vp-icon-btn:hover {
  background: #e8ecf2;
  color: #1e293b;
}

.vp-badge {
  /* position: absolute; */
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Profile Dropdown Toggle */
.vp-profile-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.vp-profile-toggle:hover {
  background: #f4f6fa;
}

.vp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8ecf2;
  flex-shrink: 0;
}

.vp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-avatar-lg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.vp-profile-info {
  display: flex;
  flex-direction: column;
}

.vp-profile-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.vp-profile-role {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.2;
}

.vp-profile-toggle .bi-chevron-down {
  font-size: 11px;
  color: #94a3b8;
  transition: transform 0.2s;
}

.vp-profile-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.vp-dropdown-menu {
  min-width: 280px;
  padding: 8px;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

.vp-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.vp-dropdown-scroll {
  max-height: 320px;
  overflow-y: auto;
}

.vp-dropdown-scroll::-webkit-scrollbar {
  width: 4px;
}

.vp-dropdown-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.vp-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.vp-notif-item:hover {
  background: #f8fafc;
}

.vp-notif-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 8px;
  font-size: 14px;
}

.vp-notif-content {
  flex: 1;
  min-width: 0;
}

.vp-notif-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.vp-notif-msg {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vp-notif-action {
  flex-shrink: 0;
}

.vp-notif-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #94a3b8;
  transition: all 0.2s;
}

.vp-notif-check:hover {
  border-color: #0078db;
  color: #0078db;
  background: #eff6ff;
}

.vp-notif-empty {
  text-align: center;
  padding: 24px 16px;
  color: #94a3b8;
}

.vp-notif-empty i {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.vp-notif-empty p {
  margin: 0;
  font-size: 13px;
}

/* Profile Dropdown User Info */
.vp-dropdown-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.vp-dropdown-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.vp-dropdown-email {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0;
}

.vp-dropdown-divider {
  height: 1px;
  background: #eef2f7;
  margin: 4px 12px;
}

.vp-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}

.vp-dropdown-item:hover {
  background: #f4f6fa;
  color: #1e293b;
}

.vp-dropdown-item i {
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.vp-dropdown-item-danger {
  color: #dc2626;
}

.vp-dropdown-item-danger:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* Mobile Toggle */
.vp-mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: #f4f6fa;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.vp-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   USER PANEL SIDEBAR — Modern Redesign
   ============================================================ */
.vp-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #eef2f7;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.vp-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1150;
  opacity: 0;
  transition: opacity 0.3s;
}

.vp-sidebar-overlay.show {
  display: block;
  opacity: 1;
}

.vp-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eef2f7;
  flex-shrink: 0;
}

.vp-sidebar-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.vp-sidebar-close {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: #f4f6fa;
  border-radius: 8px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Sidebar User */
.vp-sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #eef2f7;
  flex-shrink: 0;
}

.vp-sidebar-user-info {
  min-width: 0;
}

.vp-sidebar-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.vp-sidebar-user-email {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar Navigation */
.vp-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.vp-sidebar-nav::-webkit-scrollbar {
  width: 3px;
}

.vp-sidebar-nav::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.vp-nav-section {
  padding: 12px 20px 6px;
}

.vp-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.vp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vp-nav-item {
  padding: 0 10px;
  margin-bottom: 2px;
}

.vp-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s;
}

.vp-nav-link:hover {
  background: #f4f6fa;
  color: #1e293b;
}

.vp-nav-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.vp-nav-item.active .vp-nav-link {
  background: linear-gradient(135deg, rgba(0, 120, 219, 0.1) 0%, rgba(15, 76, 129, 0.08) 100%);
  color: #0078db;
  font-weight: 600;
}

.vp-nav-item.active .vp-nav-link i {
  color: #0078db;
}

.vp-nav-danger .vp-nav-link,
.vp-nav-danger.vp-nav-item .vp-nav-link {
  color: #dc2626;
}

.vp-nav-danger .vp-nav-link:hover,
.vp-nav-danger.vp-nav-item .vp-nav-link:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* ---- Nav Dropdown / Submenu ---- */
.vp-nav-has-sub .vp-nav-arrow {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.2s;
}
.vp-nav-has-sub.open .vp-nav-arrow {
  transform: rotate(180deg);
}
.vp-nav-sub {
  list-style: none;
  padding: 4px 0 4px 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.vp-nav-has-sub.open .vp-nav-sub {
  max-height: 200px;
}
.vp-nav-sub-item {
  padding: 0 10px;
  margin-bottom: 2px;
}
.vp-nav-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 44px;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.vp-nav-sub-link:hover {
  background: #f4f6fa;
  color: #1e293b;
}
.vp-nav-sub-link i {
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.vp-nav-sub-item.active .vp-nav-sub-link {
  background: linear-gradient(135deg, rgba(0, 120, 219, 0.1) 0%, rgba(15, 76, 129, 0.08) 100%);
  color: #0078db;
  font-weight: 600;
}
.vp-nav-sub-item.active .vp-nav-sub-link i {
  color: #0078db;
}

/* ============================================================
   RESPONSIVE — User Panel Header/Sidebar
   ============================================================ */
@media (max-width: 991px) {
  .vp-sidebar-toggle {
    display: flex;
  }

  .vp-sidebar {
    transform: translateX(-100%);
  }

  .vp-sidebar.open {
    transform: translateX(0);
  }

  .vp-sidebar-close {
    display: flex;
  }

  .vp-mobile-toggle {
    display: flex;
  }

  .vp-header-center {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .vp-header-inner {
    padding: 0 12px;
  }

  .vp-dropdown-menu {
    min-width: 260px;
  }

  .vp-btn-add span {
    display: none;
  }

  .vp-btn-add {
    padding: 8px 10px;
  }
}

/* ============================================================
   LAYOUT PADDING — Account for fixed header
   ============================================================ */
body.vp-layout {
  padding-top: 60px;
}

body.vp-layout .vp-sidebar + .layout-wrap,
body.vp-layout .vp-header ~ .layout-wrap {
  margin-left: 260px;
}

@media (max-width: 991px) {
  body.vp-layout .vp-sidebar + .layout-wrap,
  body.vp-layout .vp-header ~ .layout-wrap {
    margin-left: 0;
  }
}

/* ============================================================
   USER PANEL — Compact Font Sizes
   ============================================================ */
body.vp-layout {
  font-size: 14px;
  line-height: 1.5;
}

body.vp-layout h1, body.vp-layout .h1 { font-size: 28px; }
body.vp-layout h2, body.vp-layout .h2 { font-size: 24px; }
body.vp-layout h3, body.vp-layout .h3 { font-size: 20px; }
body.vp-layout h4, body.vp-layout .h4 { font-size: 17px; }
body.vp-layout h5, body.vp-layout .h5 { font-size: 15px; }
body.vp-layout h6, body.vp-layout .h6 { font-size: 14px; }

body.vp-layout .layout-wrap .main-content {
  font-size: 13px;
}

body.vp-layout .layout-wrap .main-content .form-label,
body.vp-layout .layout-wrap .main-content label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

body.vp-layout .layout-wrap .main-content .form-control,
body.vp-layout .layout-wrap .main-content .form-select,
body.vp-layout .layout-wrap .main-content select,
body.vp-layout .layout-wrap .main-content input[type="text"],
body.vp-layout .layout-wrap .main-content textarea {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
}

body.vp-layout .layout-wrap .main-content .nice-select {
  font-size: 13px;
  height: 40px;
  line-height: 38px;
  border-radius: 8px;
}

body.vp-layout .layout-wrap .main-content .nice-select .list {
  font-size: 13px;
}

body.vp-layout .layout-wrap .main-content .title {
  font-size: 16px;
}

body.vp-layout .layout-wrap .main-content .step-arrow-box {
  padding: 12px 28px 12px 16px;
  font-size: 12px;
  min-width: 160px;
}

body.vp-layout .layout-wrap .main-content .step-arrow-box .step-text small {
  font-size: 9px;
}

body.vp-layout .layout-wrap .main-content .step-arrow-box .step-text span {
  font-size: 12px;
}

body.vp-layout .layout-wrap .main-content .step-arrow-box .step-icon {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

body.vp-layout .layout-wrap .main-content .btn-wizard-prev,
body.vp-layout .layout-wrap .main-content .btn-wizard-next,
body.vp-layout .layout-wrap .main-content .btn-wizard-submit {
  font-size: 13px;
  padding: 8px 22px;
}

body.vp-layout .layout-wrap .main-content .upload-card {
  padding: 18px;
}

body.vp-layout .layout-wrap .main-content .upload-card-title {
  font-size: 16px;
}

body.vp-layout .layout-wrap .main-content .upload-card-desc {
  font-size: 12px;
}

body.vp-layout .layout-wrap .main-content .upload-dropzone {
  min-height: 140px;
  padding: 24px 16px;
}

body.vp-layout .layout-wrap .main-content .upload-dropzone-text {
  font-size: 14px;
}

body.vp-layout .layout-wrap .main-content .upload-dropzone-sub {
  font-size: 12px;
}

body.vp-layout .layout-wrap .main-content .amenity-checkbox-label {
  font-size: 12px;
  padding: 3px 5px;
}

body.vp-layout .layout-wrap .main-content .review-table td {
  padding: 8px 12px;
  font-size: 12px;
}

body.vp-layout .layout-wrap .main-content .review-section-title {
  font-size: 14px;
  margin: 14px 0 8px;
}

body.vp-layout .layout-wrap .main-content .wizard-nav {
  padding-top: 16px;
  margin-top: 18px;
}

body.vp-layout .layout-wrap .main-content .step-wizard {
  padding: 16px;

}

body.vp-layout .layout-wrap .main-content fieldset {
  margin-bottom: 12px;
}

body.vp-layout .layout-wrap .main-content .box {
  gap: 20px;
}

/* Sidebar nav */
body.vp-layout .vp-sidebar-nav .vp-nav-link {
  font-size: 13px;
  padding: 9px 16px;
  gap: 10px;
}
body.vp-layout .vp-sidebar-nav .vp-nav-link i {
  font-size: 16px;
}
body.vp-layout .vp-sidebar-nav .vp-nav-label {
  font-size: 10px;
  padding: 12px 16px 4px;
}
body.vp-layout .vp-sidebar-user .vp-sidebar-user-name {
  font-size: 13px;
}
body.vp-layout .vp-sidebar-user .vp-sidebar-user-email {
  font-size: 11px;
}

/* Header */
body.vp-layout .vp-header-inner {
  padding: 0 16px;
  height: 52px;
}
body.vp-layout .vp-header {
  height: 52px;
}
body.vp-layout .vp-logo img {
  height: 26px;
}
body.vp-layout .vp-profile-name {
  font-size: 12px;
}
body.vp-layout .vp-profile-role {
  font-size: 10px;
}
body.vp-layout .vp-btn-add {
  font-size: 12px;
  padding: 6px 12px;
  gap: 5px;
}
body.vp-layout .vp-btn-add i {
  font-size: 12px;
}

/* Alerts */
body.vp-layout .layout-wrap .main-content .alert {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}
body.vp-layout .layout-wrap .main-content .alert strong {
  font-size: 13px;
}

/* Tables */
body.vp-layout .layout-wrap .wrap-table table {
  font-size: 12px;
}
body.vp-layout .layout-wrap .wrap-table thead tr th {
  font-size: 11px;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.vp-layout .layout-wrap .wrap-table tbody td {
  font-size: 12px;
  padding: 10px 12px;
}

/* Status badges */
body.vp-layout .layout-wrap .status-wrap .btn-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
}
body.vp-layout .layout-wrap .status-wrap .badge {
  font-size: 11px;
  padding: 4px 8px;
}

/* List actions */
body.vp-layout .layout-wrap .wrap-table .list-action .item {
  font-size: 12px;
  padding: 4px 8px;
}
body.vp-layout .layout-wrap .wrap-table .list-action .item svg {
  width: 14px;
  height: 14px;
}

/* Widget boxes */
body.vp-layout .layout-wrap .main-content .widget-box-2 {
  padding: 16px;
}
body.vp-layout .layout-wrap .main-content .widget-box-2 .title {
  font-size: 14px;
}

/* Pagination */
body.vp-layout .layout-wrap .main-content .pagination .page-link {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
}
body.vp-layout .layout-wrap .main-content .pagination .page-item.active .page-link {
  font-size: 12px;
}

/* Dropdowns */
body.vp-layout .vp-dropdown-item {
  font-size: 13px;
  padding: 8px 14px;
}
body.vp-layout .vp-dropdown-header {
  font-size: 12px;
  padding: 10px 14px 6px;
}
body.vp-layout .vp-notif-item {
  padding: 10px 14px;
}
body.vp-layout .vp-notif-title {
  font-size: 12px;
}
body.vp-layout .vp-notif-msg {
  font-size: 11px;
}

/* Sidebar toggle button */
body.vp-layout .vp-sidebar-toggle {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

/* Sidebar overlay close */
body.vp-layout .vp-sidebar-close {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

/* Quill editor */
body.vp-layout .layout-wrap .main-content .ql-editor {
  font-size: 13px;
  min-height: 150px;
}
body.vp-layout .layout-wrap .main-content .ql-toolbar {
  font-size: 12px;
}

/* Input group */
body.vp-layout .layout-wrap .main-content .input-group {
  border-radius: 8px;
}
body.vp-layout .layout-wrap .main-content .input-group .form-select {
  font-size: 12px;
}

/* Map */
body.vp-layout .layout-wrap .main-content #map {
  border-radius: 10px;
  margin-top: 8px;
}

/* Buttons small */
body.vp-layout .layout-wrap .main-content .btn {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 8px;
}
body.vp-layout .layout-wrap .main-content .btn-sm {
  font-size: 11px;
  padding: 3px 10px;
}

/* Property count alert */
body.vp-layout .layout-wrap .main-content .alert-success {
  font-size: 12px;
}
body.vp-layout .layout-wrap .main-content .alert-warning {
  font-size: 12px;
}

/* Upload badge */
body.vp-layout .layout-wrap .main-content .upload-badge {
  font-size: 10px;
  padding: 1px 6px;
}

/* Upload icon */
body.vp-layout .layout-wrap .main-content .upload-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
body.vp-layout .layout-wrap .main-content .upload-card-icon i {
  font-size: 18px;
}

/* Upload dropzone icon */
body.vp-layout .layout-wrap .main-content .upload-dropzone-icon {
  font-size: 36px;
}

/* Upload preview */
body.vp-layout .layout-wrap .main-content .upload-preview-grid {
  gap: 8px;
  margin-top: 12px;
}
body.vp-layout .layout-wrap .main-content .upload-preview-item {
  border-radius: 8px;
}

/* Alert icon spans */
body.vp-layout .layout-wrap .main-content .alert span {
  font-size: 16px !important;
}

/* Listing indicator card */
body.vp-layout .layout-wrap .main-content .upload-status-card label {
  font-size: 13px;
}

/* Edit listing header */
body.vp-layout .layout-wrap .main-content .widget-box-2 .title strong {
  font-size: 13px;
}
body.vp-layout .layout-wrap .main-content hr {
  margin: 8px 0;
}

/* Dashboard cards */
body.vp-layout .layout-wrap .main-content .wd-chart {
  padding: 16px;
}
body.vp-layout .layout-wrap .main-content .recent-box h6 {
  font-size: 14px;
}
body.vp-layout .layout-wrap .main-content .box-tes-item {
  font-size: 12px;
}

/* My listings */
body.vp-layout .layout-wrap .main-content .wd-listing .title {
  font-size: 14px;
}
body.vp-layout .layout-wrap .main-content .wd-listing .wd-filter label {
  font-size: 11px;
}
body.vp-layout .layout-wrap .main-content .wd-listing .wd-filter input,
body.vp-layout .layout-wrap .main-content .wd-listing .wd-filter .nice-select {
  font-size: 12px;
  height: 36px;
}

/* Profile */
body.vp-layout .layout-wrap .main-content .box-agent-avt .avatar img {
  border-radius: 50%;
}
body.vp-layout .layout-wrap .main-content .box-agent-avt .box-ip input {
  font-size: 12px;
  padding: 6px 10px;
}

/* Subscription */
body.vp-layout .layout-wrap .main-content .flat-counter-v2 .counter-box .title-count {
  font-size: 14px;
}
body.vp-layout .layout-wrap .main-content .flat-counter-v2 .counter-box .box-count .text {
  font-size: 12px;
}

/* Upload file count */
body.vp-layout .layout-wrap .main-content .upload-file-count {
  font-size: 12px;
}
body.vp-layout .layout-wrap .main-content .upload-clear-btn {
  font-size: 11px;
  padding: 3px 10px;
}

/* JSON preview */
body.vp-layout .layout-wrap .main-content .json-preview {
  font-size: 11px;
  padding: 8px;
  border-radius: 6px;
}

/* Upload status card */
body.vp-layout .layout-wrap .main-content .upload-status-card {
  padding: 16px;
}

/* Responsive */
@media (max-width: 767px) {
  body.vp-layout .layout-wrap .main-content .step-arrow-box {
    padding: 8px 20px 8px 12px;
    min-width: 120px;
    font-size: 10px;
  }
  body.vp-layout .layout-wrap .main-content .step-arrow-box .step-text small {
    display: none;
  }
  body.vp-layout .layout-wrap .main-content .step-arrow-box .step-text span {
    font-size: 10px;
  }
  body.vp-layout .layout-wrap .main-content .step-arrow-box .step-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  body.vp-layout .layout-wrap .main-content .step-arrow:not(:last-child) .step-arrow-box {
    margin-right: 8px;
  }
  body.vp-layout .layout-wrap .main-content .btn-wizard-prev,
  body.vp-layout .layout-wrap .main-content .btn-wizard-next,
  body.vp-layout .layout-wrap .main-content .btn-wizard-submit {
    font-size: 12px;
    padding: 6px 16px;
  }
  body.vp-layout .layout-wrap .main-content .upload-card {
    padding: 14px;
  }
  body.vp-layout .layout-wrap .main-content .upload-dropzone {
    min-height: 120px;
    padding: 18px 12px;
  }
}

/* ============================================
   USER PANEL BODY REDESIGN
   ============================================ */

/* --- Page Header --- */
.vp-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.vp-page-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
}
.vp-page-header .vp-breadcrumb {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}
.vp-page-header .vp-breadcrumb a {
  color: #0078db;
  text-decoration: none;
}
.vp-page-header .vp-breadcrumb a:hover {
  text-decoration: underline;
}
.vp-page-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* --- Stat Cards --- */
.vp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.vp-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
}
.vp-stat-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.vp-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vp-stat-icon.blue { background: #eff6ff; color: #0078db; }
.vp-stat-icon.green { background: #ecfdf5; color: #059669; }
.vp-stat-icon.amber { background: #fffbeb; color: #d97706; }
.vp-stat-icon.purple { background: #f5f3ff; color: #7c3aed; }
.vp-stat-icon.red { background: #fef2f2; color: #ef4444; }
.vp-stat-icon.teal { background: #f0fdfa; color: #0d9488; }
.vp-stat-body h6 {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}
.vp-stat-body h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1f36;
  margin: 0;
  line-height: 1;
}

/* --- Card / Panel --- */
.vp-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.vp-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.vp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  gap: 12px;
  flex-wrap: wrap;
}
.vp-card-header h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
}
.vp-card-body {
  padding: 20px;
}
.vp-card-body-compact {
  padding: 16px;
}

/* --- Modern Table --- */
.vp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.vp-table thead th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  background: #f8fafc;
  padding: 10px 16px;
  border-bottom: 1px solid #eef2f7;
  white-space: nowrap;
}
.vp-table tbody td {
  font-size: 13px;
  color: #334155;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.vp-table tbody tr:last-child td {
  border-bottom: none;
}
.vp-table tbody tr:hover {
  background: #f8fafc;
}

/* --- Badge --- */
.vp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  line-height: 1.4;
  white-space: nowrap;
}
.vp-badge-success { background: #ecfdf5; color: #059669; }
.vp-badge-warning { background: #fffbeb; color: #d97706; }
.vp-badge-danger { background: #fef2f2; color: #ef4444; }
.vp-badge-info { background: #eff6ff; color: #0078db; }
.vp-badge-secondary { background: #f1f5f9; color: #64748b; }
.vp-badge-purple { background: #f5f3ff; color: #7c3aed; }

/* --- Empty State --- */
.vp-empty {
  text-align: center;
  padding: 48px 24px;
  color: #94a3b8;
}
.vp-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.vp-empty h6 {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  margin: 0 0 6px;
}
.vp-empty p {
  font-size: 13px;
  margin: 0;
}
.vp-empty a {
  color: #0078db;
  font-weight: 600;
  text-decoration: none;
}
.vp-empty a:hover {
  text-decoration: underline;
}

/* --- Action Buttons (inline) --- */
.vp-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.vp-btn svg { width: 14px; height: 14px; }
.vp-btn-primary { background: #0078db; color: #fff; }
.vp-btn-primary:hover { background: #0066b8; color: #fff; }
.vp-btn-success { background: #059669; color: #fff; }
.vp-btn-success:hover { background: #047857; color: #fff; }
.vp-btn-danger { background: #ef4444; color: #fff; }
.vp-btn-danger:hover { background: #dc2626; color: #fff; }
.vp-btn-outline {
  background: transparent;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.vp-btn-outline:hover { background: #f8fafc; color: #1a1f36; }
.vp-btn-ghost { background: #f1f5f9; color: #475569; }
.vp-btn-ghost:hover { background: #e2e8f0; }
.vp-btn-sm { font-size: 11px; padding: 4px 8px; border-radius: 6px; }
.vp-btn-sm.vp-btn svg { width: 12px; height: 12px; }

/* --- Tab Pills --- */
.vp-tabs {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  overflow-x: auto;
}
.vp-tab {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  white-space: nowrap;
}
.vp-tab.active {
  background: #fff;
  color: #0078db;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.vp-tab:hover:not(.active) {
  color: #334155;
}
.vp-tab .badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* --- Form Card --- */
.vp-form-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  padding: 24px;
  margin-bottom: 20px;
}
.vp-form-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.vp-form-group {
  margin-bottom: 16px;
}
.vp-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.vp-form-group .form-control,
.vp-form-group .form-select {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  padding: 8px 12px;
  transition: border-color 0.2s ease;
}
.vp-form-group .form-control:focus,
.vp-form-group .form-select:focus {
  border-color: #0078db;
  box-shadow: 0 0 0 3px rgba(0, 120, 219, 0.1);
}
.vp-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* --- Alert Banner --- */
.vp-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}
.vp-alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.vp-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.vp-alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.vp-alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.vp-alert strong { font-weight: 700; }
.vp-alert .vp-alert-action { margin-left: auto; flex-shrink: 0; }

/* --- Avatar --- */
.vp-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.vp-avatar-md {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.vp-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

/* --- Listing Row (table cell content) --- */
.vp-listing-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vp-listing-cell img {
  width: 52px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.vp-listing-cell .vp-listing-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1f36;
  text-decoration: none;
}
.vp-listing-cell .vp-listing-name:hover { color: #0078db; }
.vp-listing-cell .vp-listing-meta {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

/* --- Contact Buttons --- */
.vp-contact-btns {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* --- Price Tag --- */
.vp-price {
  font-size: 14px;
  font-weight: 700;
  color: #0078db;
}

/* --- Modal Overrides --- */
.modal {
  z-index: 1400 !important;
}
.modal-backdrop {
  z-index: 1350 !important;
}
.vp-modal .modal-header {
  border-radius: 12px 12px 0 0;
  padding: 16px 20px;
}
.vp-modal .modal-title { font-size: 15px; font-weight: 700; }
.vp-modal .modal-body { padding: 20px; }
.vp-modal .modal-footer { padding: 12px 20px; border-top: 1px solid #f1f5f9; }

/* --- Footer --- */
.vp-footer {
  text-align: center;
  padding-bottom: 20px;
  font-size: 12px;
  color: #94a3b8;
  position: fixed;
  width: 100%;
  bottom: 0;
  left:0;
}

/* --- Utility --- */
.vp-mb-0 { margin-bottom: 0 !important; }
.vp-mb-8 { margin-bottom: 8px; }
.vp-mb-16 { margin-bottom: 16px; }
.vp-mb-24 { margin-bottom: 24px; }
.vp-mt-16 { margin-top: 16px; }
.vp-mt-24 { margin-top: 24px; }
.vp-gap-16 { gap: 16px; }
.vp-text-muted { color: #94a3b8; }
.vp-text-sm { font-size: 12px; }
.vp-fw-600 { font-weight: 600; }
.vp-fw-700 { font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 767px) {
  .vp-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vp-stat-card { padding: 14px; gap: 10px; }
  .vp-stat-icon { width: 40px; height: 40px; font-size: 16px; }
  .vp-stat-body h3 { font-size: 20px; }
  .vp-page-header h4 { font-size: 17px; }
  .vp-form-row { grid-template-columns: 1fr; }
  .vp-card-body { padding: 16px; }
  .vp-table thead th, .vp-table tbody td { padding: 8px 12px; font-size: 12px; }
  .vp-tabs { gap: 2px; padding: 3px; }
  .vp-tab { padding: 6px 10px; font-size: 12px; }
}
@media (max-width: 575px) {
  .vp-stats { grid-template-columns: 1fr 1fr; }
  .vp-contact-btns { flex-direction: column; }
  .vp-contact-btns .vp-btn { width: 100%; justify-content: center; }
}
