/**
 * BizSatıyoruz - Premium Custom Design System
 * Özgün, tema-bağımsız tasarım
 * Türk pazarı için optimize edilmiş
 */

/* ========================================
   1. CSS VARIABLES & ROOT
   ======================================== */
   :root {
    /* Primary Colors - Turuncu-Altın tonları (Türk kültürüne uygun sıcak renkler) */
    --primary: #e85d04;
    --primary-light: #f48c06;
    --primary-dark: #dc2f02;
    --primary-gradient: linear-gradient(135deg, #e85d04 0%, #f48c06 50%, #ffba08 100%);
    
    /* Secondary Colors - Koyu lacivert (güven ve profesyonellik) */
    --secondary: #03071e;
    --secondary-light: #370617;
    --secondary-medium: #6a040f;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    /* Accent Colors */
    --success: #06d6a0;
    --warning: #ffd166;
    --danger: #ef476f;
    --info: #118ab2;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(232, 93, 4, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ========================================
     2. RESET & BASE STYLES
     ======================================== */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ========================================
     3. NAVBAR - Premium Glassmorphism
     ======================================== */
  .bz-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
  }
  
  .bz-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
  }
  
  .bz-navbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }
  
  .bz-navbar.scrolled .navbar-brand {
    color: var(--dark);
  }
  
  .bz-navbar .navbar-brand span {
    color: inherit;
    transition: var(--transition-base);
  }
  
  /* Logo Styles - Navbar (Overlapping Design) */
  .bz-navbar .brand-logo {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    gap: 0.75rem;
  }
  
  .bz-navbar .brand-icons {
    position: relative;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: flex-end;
  }
  
  .bz-navbar .brand-icon-house {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #4a90a4 0%, #2c5f72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .bz-navbar .brand-icon-car {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #e85d04 0%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .bz-navbar.scrolled .brand-icon-house {
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.15));
  }
  
  .bz-navbar.scrolled .brand-icon-car {
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.15));
  }
  
  .bz-navbar .brand-icon-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
  }
  
  .bz-navbar .brand-text {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
    z-index: 2;
    margin-top: 0;
  }
  
  .bz-navbar .brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  .bz-navbar .navbar-brand .brand-dot,
  .bz-navbar.scrolled .navbar-brand .brand-dot,
  .bz-navbar .brand-logo .brand-text .brand-dot {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e85d04 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  /* Scrolled state */
  .bz-navbar.scrolled .brand-name {
    color: #1e293b;
    text-shadow: none;
  }
  
  .bz-navbar.scrolled .brand-dot {
    text-shadow: none;
  }

  .bz-navbar .navbar-brand img,
  .bz-navbar .navbar-brand .navbar-logo-img {
    height: 70px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: var(--transition-base);
    position: relative;
    z-index: 10;
    border-radius: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .bz-navbar.scrolled .navbar-brand img,
  .bz-navbar.scrolled .navbar-brand .navbar-logo-img {
    height: 70px;
  }
  
  /* Logo geçişleri - Beyaz logo (dark tema/transparent navbar için) */
  .bz-navbar .navbar-logo-white {
    display: inline-block !important;
    opacity: 1;
    visibility: visible;
  }
  
  .bz-navbar .navbar-logo-dark {
    display: none !important;
  }
  
  /* Scroll edildiğinde - Koyu logo göster, beyaz gizle */
  .bz-navbar.scrolled .navbar-logo-white {
    display: none !important;
  }
  
  .bz-navbar.scrolled .navbar-logo-dark {
    display: inline-block !important;
    opacity: 1;
    visibility: visible;
  }
  
  /* Brand text - logolar varsa gizle */
  .bz-navbar .navbar-brand-text {
    display: none;
  }
  
  /* Logo yoksa brand text göster */
  .bz-navbar .navbar-brand:not(:has(.navbar-logo-img)) .navbar-brand-text,
  .bz-navbar .navbar-brand .navbar-brand-text:only-child {
    display: inline-block;
  }
  
  .bz-navbar .navbar-brand .logo-placeholder {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
  }
  
  .bz-navbar .navbar-brand .logo-placeholder i {
    font-size: 1.3rem;
    color: var(--white);
    display: block !important;
  }
  
  .bz-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-base);
  }
  
  .bz-navbar.scrolled .nav-link {
    color: var(--gray-700);
  }
  
  .bz-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
  }
  
  .bz-navbar .nav-link:hover::after,
  .bz-navbar .nav-link.active::after {
    width: 70%;
  }
  
  .bz-navbar .nav-link:hover {
    color: var(--white);
  }
  
  .bz-navbar.scrolled .nav-link:hover {
    color: var(--primary);
  }
  
  /* Navbar Buttons */
  .bz-navbar .btn-nav {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
  }
  
  .bz-navbar .btn-nav-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
  }
  
  .bz-navbar.scrolled .btn-nav-outline {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .bz-navbar .btn-nav-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
  }
  
  .bz-navbar .btn-nav-primary {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
  }
  
  .bz-navbar .btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.5);
  }
  
  /* ========================================
     4. HERO SECTION
     ======================================== */
  .bz-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary-medium) 100%);
  }
  
  .bz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
  }
  
  .bz-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }
  
  .bz-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 7, 30, 0.9) 0%, rgba(55, 6, 23, 0.8) 100%);
  }
  
  /* Floating Shapes */
  .bz-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .bz-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: float 20s infinite;
  }
  
  .bz-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }
  
  .bz-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
  }
  
  .bz-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation-delay: -10s;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(30px, 10px) rotate(3deg); }
  }
  
  .bz-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
  }
  
  .bz-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .bz-hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .bz-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  /* ========================================
     5. SEARCH BOX - Premium Glass Effect
     ======================================== */
  .bz-search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
  }
  
  .bz-search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    border-radius: var(--radius-full);
  }
  
  .bz-search-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .bz-search-tab:hover {
    color: var(--white);
  }
  
  .bz-search-tab.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
  }
  
  .bz-search-input-group {
    position: relative;
  }
  
  .bz-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-base);
  }
  
  .bz-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .bz-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .bz-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
  }
  
  .bz-search-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
  }
  
  .bz-search-select option {
    background: var(--dark);
    color: var(--white);
  }
  
  .bz-search-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .bz-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }
  
  /* ========================================
     6. SECTION HEADINGS
     ======================================== */
  .bz-section {
    padding: var(--space-3xl) 0;
  }
  
  .bz-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }
  
  .bz-section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(255, 186, 8, 0.1) 100%);
    border: 1px solid rgba(232, 93, 4, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  /* Section Badge - Kategori Renkleri */
  .bz-section-badge-satilik {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: #059669 !important;
    color: #fff !important;
  }
  
  .bz-section-badge-kiralik {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-color: #1d4ed8 !important;
    color: #fff !important;
  }
  
  .bz-section-badge-vasita {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
    border-color: #6d28d9 !important;
    color: #fff !important;
  }
  
  .bz-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .bz-section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* ========================================
     7. LISTING CARDS - Premium Design
     ======================================== */
  .bz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    max-width: 100%;
  }
  
  /* Only apply full height flex for listing card grids */
  .row.g-4 > div > .bz-card,
  .bz-card-compact {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .bz-card-hover:hover,
  .bz-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .bz-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    max-width: 100%;
  }
  
  /* İlan kartları için responsive düzenleme */
  .row.g-4 .bz-card {
    max-width: 100%;
  }
  
  .bz-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
  }
  
  .bz-card:hover .bz-card-img {
    transform: scale(1.1);
  }
  
  /* Kompakt Kart Stili - Anasayfa için daha küçük kartlar */
  .bz-card-compact {
    border-radius: var(--radius-md);
  }
  
  .bz-card-compact .bz-card-img-wrapper {
    height: 160px;
  }
  
  .bz-card-compact .bz-card-body {
    padding: 1rem;
  }
  
  .bz-card-compact .bz-card-location {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .bz-card-compact .bz-card-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
    line-height: 1.3;
    min-height: 2.3rem;
  }
  
  .bz-card-compact .bz-card-features {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .bz-card-compact .bz-card-feature {
    font-size: 0.7rem;
    gap: 0.25rem;
  }
  
  .bz-card-compact .bz-card-feature i {
    font-size: 0.65rem;
  }
  
  .bz-card-compact .bz-card-price {
    font-size: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
  }
  
  .bz-card-compact .bz-card-price small {
    font-size: 0.65rem;
  }
  
  .bz-card-compact .bz-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }
  
  .bz-card-compact .bz-card-favorite {
    width: 32px;
    height: 32px;
  }
  
  .bz-card-compact .bz-card-favorite i {
    font-size: 0.85rem;
  }
  
  .bz-card-compact:hover {
    transform: translateY(-5px);
  }
  
  /* Featured border effect */
  .bz-card-featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #ffd700 0%, #ffaa00 100%) border-box;
  }
  
  /* Mobile responsive */
  @media (max-width: 575px) {
    .bz-card-compact .bz-card-img-wrapper {
      height: 130px;
    }
    
    .bz-card-compact .bz-card-body {
      padding: 0.75rem;
    }
    
    .bz-card-compact .bz-card-title {
      font-size: 0.8rem;
      min-height: 2rem;
    }
    
    .bz-card-compact .bz-card-price {
      font-size: 0.9rem;
    }
    
    .bz-card-compact .bz-card-features {
      display: none;
    }
  }
  
  .bz-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .bz-badge {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff !important;
  }
  
  /* Kategori Badge Renkleri */
  .bz-badge-satilik {
    background: #10b981 !important;
  }
  
  .bz-badge-kiralik {
    background: #3b82f6 !important;
  }
  
  .bz-badge-vasita {
    background: #8b5cf6 !important;
  }
  
  .bz-badge-primary {
    background: var(--primary-gradient);
    color: var(--white);
  }
  
  .bz-badge-success {
    background: var(--success);
    color: var(--white);
  }
  
  .bz-badge-featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: var(--dark);
  }
  
  .bz-badge-new {
    background: var(--info);
    color: var(--white);
  }
  
  .bz-card-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--gray-500);
  }
  
  .bz-card-favorite:hover,
  .bz-card-favorite.active {
    background: var(--danger);
    color: var(--white);
  }
  
  .bz-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
  }
  
  .bz-card-header .bz-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  
  .bz-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .bz-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .bz-card-location i {
    color: var(--primary);
  }
  
  .bz-card-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
  }
  
  .bz-card-title a {
    color: inherit;
  }
  
  .bz-card-title a:hover {
    color: var(--primary);
  }
  
  .bz-card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .bz-card-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-600);
    font-size: 0.85rem;
  }
  
  .bz-card-feature i {
    color: var(--gray-500);
  }
  
  .bz-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .bz-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  
  .bz-card-comparison-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  
  .bz-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .bz-card-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
  }
  
  .bz-card-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 44px;
    line-height: 1;
  }
  
  .bz-card-btn:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(232, 93, 4, 0.2);
  }
  
  /* ========================================
     8. CITY CARDS
     ======================================== */
  .bz-city-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
  }
  
  .bz-city-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: var(--transition-base);
  }
  
  .bz-city-card:hover::before {
    background: linear-gradient(180deg, rgba(232, 93, 4, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
  }
  
  .bz-city-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
  }
  
  .bz-city-card:hover .bz-city-card-img {
    transform: scale(1.1);
  }
  
  .bz-city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: var(--white);
  }
  
  .bz-city-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
  
  .bz-city-card-count {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* ========================================
     9. STATS SECTION
     ======================================== */
  .bz-stats {
    background: var(--primary-gradient);
    padding: var(--space-2xl) 0;
  }
  
  .bz-stat-item {
    text-align: center;
    color: var(--white);
  }
  
  .bz-stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .bz-stat-label {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* ========================================
     10. FOOTER - Premium Design
     ======================================== */
  .bz-footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-2xl);
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
  }
  
  .bz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
  }
  
  .bz-footer-main {
    padding-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
  }
  
  .bz-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .bz-footer-brand img,
  .bz-footer-brand .footer-logo-img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(1.1) !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .footer-logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .footer-logo-placeholder i {
    font-size: 1.2rem;
    color: var(--white);
  }
  
  .bz-footer-brand span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
  }
  
  /* Footer Logo Styles */
  .bz-footer-brand .brand-logo {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.75rem;
  }
  
  .bz-footer-brand .brand-icons {
    position: relative;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: flex-end;
  }
  
  .bz-footer-brand .brand-icon-house {
    font-size: 2rem;
    background: linear-gradient(135deg, #4a90a4 0%, #2c5f72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .bz-footer-brand .brand-icon-car {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #e85d04 0%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .bz-footer-brand .brand-icon {
    font-size: 1.8rem;
    color: #e85d04;
  }
  
  .bz-footer-brand .brand-icon-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }
  
  .bz-footer-brand .brand-text {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
    z-index: 2;
    margin-top: 0;
  }
  
  .bz-footer-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
  }
  
  .bz-footer-brand .brand-dot {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e85d04 !important;
  }
  
  .bz-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 100%;
  }
  
  .bz-footer-desc a {
    color: var(--primary-light) !important;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
  }
  
  .bz-footer-desc a:hover {
    color: var(--primary) !important;
    text-decoration: underline;
  }
  
  .bz-footer-social {
    display: flex;
    gap: 0.75rem;
  }
  
  .bz-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
  }
  
  .bz-footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .bz-footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .bz-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
  }
  
  .bz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .bz-footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .bz-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    text-decoration: none;
  }
  
  .bz-footer-links a i {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition-base);
  }
  
  .bz-footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
    color: var(--primary);
    font-weight: 600;
    margin-right: -16px;
  }
  
  .bz-footer-links a:hover {
    color: var(--white);
    padding-left: 0.75rem;
    transform: translateX(2px);
  }
  
  .bz-footer-links a:hover i {
    opacity: 1;
    color: var(--primary-light);
  }
  
  .bz-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  
  .bz-footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    transition: var(--transition-base);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  
  .bz-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .bz-footer-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(232, 93, 4, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(232, 93, 4, 0.2);
    transition: var(--transition-base);
  }
  
  .bz-footer-contact-item:hover .bz-footer-contact-icon {
    background: rgba(232, 93, 4, 0.25);
    transform: scale(1.05);
    color: var(--primary);
  }
  
  .bz-footer-contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex: 1;
  }
  
  .bz-footer-contact-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .bz-footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
  }
  
  .bz-footer-contact-text a:hover {
    color: var(--primary-light);
    text-decoration: underline;
  }
  
.bz-footer-contact-text .address-link {
	color: rgba(255, 255, 255, 0.6);
	transition: var(--transition-base);
	display: inline-block;
	cursor: pointer;
}

.bz-footer-contact-text .address-link:hover {
	color: var(--primary);
	text-decoration: underline;
}

/* Google Maps Modal */
#mapModal .modal-content {
	border-radius: var(--radius-lg);
	border: none;
	overflow: hidden;
}

#mapModal .modal-header {
	background: var(--gray-100);
	border-bottom: 2px solid var(--gray-300);
	padding: 1rem 1.5rem;
}

#mapModal .modal-title {
	font-weight: 600;
	color: var(--dark);
	font-size: 1.1rem;
}

#mapModal .modal-body {
	background: var(--gray-200);
	padding: 0;
}

#mapViewer {
	background: var(--white);
}

@media (max-width: 767.98px) {
	#mapModal .modal-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	#mapModal .modal-title {
		width: 100%;
	}
	
	#mapModal .d-flex {
		width: 100%;
		flex-wrap: wrap;
	}
	
	#mapViewer {
		height: 400px !important;
	}
}
  
  .bz-footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .bz-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
  }
  
  .bz-footer-copyright strong {
    color: var(--white);
    font-weight: 600;
  }
  
  .bz-footer-bottom a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: var(--transition-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
  }
  
  .bz-footer-bottom a:hover {
    color: var(--primary-light) !important;
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Footer Responsive */
  @media (max-width: 991.98px) {
    .bz-footer {
      padding-top: var(--space-2xl);
      margin-top: var(--space-2xl);
    }
    
    .bz-footer-main {
      padding-bottom: var(--space-xl);
    }
    
    .bz-footer-brand {
      margin-bottom: 1.25rem;
    }
    
    .bz-footer-desc {
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
    }
    
    .bz-footer-title {
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
    }
    
    .bz-footer-contact-item {
      margin-bottom: 1rem;
    }
    
    .bz-footer-contact-icon {
      width: 44px;
      height: 44px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .bz-footer {
      padding-top: var(--space-xl);
      margin-top: var(--space-xl);
    }
    
    .bz-footer-main {
      padding-bottom: var(--space-lg);
    }
    
    .bz-footer-bottom {
      padding: 1.25rem 0;
    }
    
    .bz-footer-bottom .row {
      flex-direction: column;
      gap: 1rem;
    }
    
    .bz-footer-bottom .col-md-6 {
      text-align: center !important;
    }
    
    .bz-footer-bottom .d-flex {
      justify-content: center !important;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    
    .bz-footer-bottom span {
      display: none;
    }
  }
  
  /* ========================================
     11. GOOGLE MAPS INTEGRATION
     ======================================== */
  .bz-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
  }
  
  .bz-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
  }
  
  .bz-map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .bz-map-overlay i {
    color: var(--primary);
    font-size: 1.25rem;
  }
  
  /* ========================================
     12. BUTTONS
     ======================================== */
  .bz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
  }
  
  .bz-btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
  }
  
  .bz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.4);
    color: var(--white);
  }
  
  .bz-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .bz-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .bz-btn-white {
    background: var(--white);
    color: var(--dark);
  }
  
  .bz-btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
  }
  
  .bz-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .bz-btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
  
  /* ========================================
     13. ANIMATIONS
     ======================================== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
  }
  
  .animate-delay-1 { animation-delay: 0.1s; }
  .animate-delay-2 { animation-delay: 0.2s; }
  .animate-delay-3 { animation-delay: 0.3s; }
  .animate-delay-4 { animation-delay: 0.4s; }
  
  /* ========================================
     14. UTILITIES
     ======================================== */
  .text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .bg-gradient-primary {
    background: var(--primary-gradient);
  }
  
  .bg-dark-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  }
  
  /* ========================================
     15. RESPONSIVE
     ======================================== */
  @media (max-width: 991.98px) {
    .bz-navbar .navbar-collapse {
      background: var(--white);
      padding: 1rem;
      border-radius: var(--radius-md);
      margin-top: 1rem;
      box-shadow: var(--shadow-lg);
    }
    
    .bz-navbar .nav-link {
      color: var(--gray-700) !important;
      padding: 0.75rem 1rem !important;
    }
    
    .bz-navbar .navbar-brand img,
    .bz-navbar .navbar-brand .navbar-logo-img {
      height: 50px;
      max-width: 220px;
    }
    
    .bz-navbar.scrolled .navbar-brand img,
    .bz-navbar.scrolled .navbar-brand .navbar-logo-img {
      height: 40px;
    }
    
    .bz-hero {
      min-height: auto;
      padding: 120px 0 60px;
    }
    
    .bz-hero-title {
      font-size: 2rem;
    }
    
    .bz-search-tabs {
      flex-direction: column;
    }
  }
  
  @media (max-width: 575.98px) {
    .bz-section {
      padding: var(--space-2xl) 0;
    }
    
    .bz-navbar .navbar-brand img,
    .bz-navbar .navbar-brand .navbar-logo-img {
      height: 40px;
      max-width: 180px;
    }
    
    .bz-navbar.scrolled .navbar-brand img,
    .bz-navbar.scrolled .navbar-brand .navbar-logo-img {
      height: 35px;
    }
    
    .bz-footer-brand img,
    .bz-footer-brand .footer-logo-img {
      height: 50px;
      max-width: 220px;
    }
    
    .bz-card-img-wrapper {
      height: 200px;
    }
    
    .bz-city-card {
      height: 200px;
    }
  }
  
  /* ========================================
     16. SCROLLBAR
     ======================================== */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--gray-200);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
  
  /* ========================================
     17. SELECTION
     ======================================== */
  ::selection {
    background: var(--primary);
    color: var(--white);
  }
  
  /* ========================================
     18. ADMIN NAVBAR OVERRIDE
     ======================================== */
  .bz-admin-bar {
    background: var(--dark) !important;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  /* ========================================
     19. LISTING DETAIL PAGE
     ======================================== */
  .bz-listing-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .bz-listing-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
  }
  
  .bz-listing-price-box {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
  }
  
  .bz-listing-price-box .price {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .bz-listing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .bz-listing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
  }
  
  .bz-listing-feature i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  /* ========================================
     20. PRELOADER
     ======================================== */
  .bz-preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .bz-preloader.hide {
    opacity: 0;
    visibility: hidden;
  }
  
  .bz-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

/* ========================================
   21. PORTFOLIO PAGE STYLES
   ======================================== */
.bz-portfolio-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 120px 0 60px;
  margin-top: -76px;
}

.bz-portfolio-avatar-wrapper {
  position: relative;
  display: inline-block;
}

.bz-portfolio-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bz-portfolio-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-600), var(--gray-500));
  font-size: 4rem;
  color: var(--white);
}

.bz-avatar-badge {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 3px solid var(--secondary);
}

.bz-avatar-badge.bz-badge-premium {
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
}

.bz-avatar-badge.bz-badge-verified {
  bottom: 10px;
  left: 10px;
  background: var(--info);
  color: var(--white);
}

.bz-portfolio-name {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bz-portfolio-company {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.bz-portfolio-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bz-stars {
  color: #ffd700;
  font-size: 1.1rem;
}

.bz-rating-text {
  color: rgba(255, 255, 255, 0.8);
}

.bz-portfolio-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bz-quick-stat {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bz-quick-stat i {
  color: var(--primary);
}

.bz-quick-stat strong {
  color: var(--white);
}

/* Portfolio Achievements Section */
.bz-portfolio-achievements {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.bz-section-sm-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.bz-achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.bz-achievement-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.bz-achievement-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.bz-achievement-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.bz-achievement-gold .bz-achievement-icon {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
}

.bz-achievement-silver .bz-achievement-icon {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #1a1a2e;
}

.bz-achievement-bronze .bz-achievement-icon {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: var(--white);
}

.bz-achievement-blue .bz-achievement-icon {
  background: var(--info);
  color: var(--white);
}

.bz-achievement-green .bz-achievement-icon {
  background: var(--success);
  color: var(--white);
}

.bz-achievement-purple .bz-achievement-icon {
  background: #7c3aed;
  color: var(--white);
}

.bz-achievement-orange .bz-achievement-icon {
  background: var(--primary);
  color: var(--white);
}

.bz-achievement-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

/* Portfolio Cards */
.bz-portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.bz-portfolio-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

/* Progress Bar */
.bz-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bz-progress-bar {
  flex: 1;
  height: 10px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bz-progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.bz-progress-text {
  font-weight: 700;
  color: var(--primary);
}

/* Stats Grid */
.bz-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* İlan Notları */
.bz-note-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gray-200);
}

.bz-listing-notes {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bz-note-item {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bz-note-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--primary-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bz-note-item:hover {
	box-shadow: 0 4px 16px rgba(232, 93, 4, 0.15);
	border-color: var(--primary);
	transform: translateY(-2px);
}

.bz-note-item:hover::before {
	opacity: 1;
}

.bz-note-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--gray-200);
	width: 100%;
}

.bz-note-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: var(--primary-gradient);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	box-shadow: 0 2px 8px rgba(232, 93, 4, 0.3);
	flex-shrink: 0;
}

.bz-note-header-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.bz-note-date {
	font-size: 0.875rem;
	color: var(--gray-600);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
	line-height: 1.4;
}

.bz-note-date i {
	color: var(--primary);
	font-size: 0.8rem;
}

.bz-note-date small {
	font-size: 0.75rem;
}

.bz-note-actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
	margin-left: auto;
	align-items: center;
}

.bz-note-edit-btn,
.bz-note-delete-btn {
	background: transparent;
	border: 2px solid var(--gray-300);
	color: var(--gray-600);
	cursor: pointer;
	padding: 0;
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
	font-size: 0.875rem;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bz-note-edit-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.bz-note-delete-btn:hover {
	background: var(--danger);
	border-color: var(--danger);
	color: var(--white);
	transform: scale(1.1);
}

.bz-note-content {
	color: var(--gray-800);
	line-height: 1.7;
	white-space: pre-wrap;
	word-wrap: break-word;
	font-size: 0.95rem;
	padding: 0.5rem 0;
}

/* İlan Kartlarında Notlar */
.bz-card-notes {
	margin: 0.75rem 0;
	padding: 0.75rem;
	background: linear-gradient(135deg, rgba(232, 93, 4, 0.05) 0%, rgba(232, 93, 4, 0.02) 100%);
	border-left: 3px solid var(--primary);
	border-radius: var(--radius-md);
}

.bz-card-note-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.5rem;
	background: var(--primary-gradient);
	color: var(--white);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.bz-card-note-badge i {
	font-size: 0.7rem;
}

.bz-card-note-preview {
	font-size: 0.85rem;
	color: var(--gray-700);
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.bz-card-note-preview i {
	color: var(--primary);
	font-size: 0.75rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.bz-stat-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.bz-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.bg-primary-soft { background: rgba(232, 93, 4, 0.1); }
.bg-success-soft { background: rgba(6, 214, 160, 0.1); }
.bg-info-soft { background: rgba(17, 138, 178, 0.1); }
.bg-danger-soft { background: rgba(239, 71, 111, 0.1); }
.bg-warning-soft { background: rgba(255, 209, 102, 0.2); }
.bg-purple-soft { background: rgba(124, 58, 237, 0.1); }

.text-purple { color: #7c3aed; }

.bz-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
}

.bz-stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Rating Distribution */
.bz-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.bz-rating-bar-label {
  width: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bz-rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bz-rating-bar-fill {
  height: 100%;
  background: var(--warning);
  border-radius: var(--radius-full);
}

.bz-rating-bar-count {
  width: 30px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Contact List */
.bz-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bz-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.bz-contact-list li:last-child {
  border-bottom: none;
}

.bz-contact-list i {
  width: 20px;
  color: var(--primary);
}

/* Mini Listing Cards */
.bz-listing-mini-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.bz-listing-mini-card:hover {
  background: var(--gray-200);
}

.bz-listing-mini-img {
  width: 100px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.bz-listing-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-listing-mini-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-300);
  color: var(--gray-500);
}

.bz-listing-mini-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.bz-listing-mini-title {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.bz-listing-mini-title a {
  color: var(--dark);
}

.bz-listing-mini-location {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.bz-listing-mini-price {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

/* Reviews List */
.bz-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bz-review-item {
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.bz-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.bz-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bz-review-author img,
.bz-review-author-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.bz-review-author-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-300);
  color: var(--gray-500);
}

.bz-review-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

/* ========================================
   22. MAP PAGE STYLES
   ======================================== */
.bz-map-page {
  margin-top: -76px;
  padding-top: 76px;
}

.bz-map-container-full {
  display: flex;
  height: calc(100vh - 76px);
}

.bz-map-sidebar {
  width: 380px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: var(--transition-base);
}

.bz-map-sidebar-header {
  padding: 1.5rem;
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bz-map-sidebar-header h2 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--white);
}

.bz-map-sidebar-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
}

.bz-map-filters {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  overflow-y: auto;
  max-height: 400px;
}

.bz-filter-group {
  margin-bottom: 1rem;
}

.bz-filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.bz-filter-select,
.bz-filter-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.bz-filter-select:focus,
.bz-filter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.bz-filter-actions {
  margin-top: 1rem;
}

.bz-map-results {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.bz-map-results-header {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-100);
}

.bz-map-listings-list {
  padding: 0.5rem;
  overflow-y: auto;
}

.bz-map-listing-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  margin-bottom: 0.5rem;
}

.bz-map-listing-card:hover {
  background: var(--gray-100);
}

.bz-map-listing-img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.bz-map-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-map-listing-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.bz-map-listing-location {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.bz-map-listing-price {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.bz-map-main {
  flex: 1;
  position: relative;
}

.bz-google-map {
  width: 100%;
  height: 100%;
}

.bz-map-controls {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bz-map-control {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.bz-map-control:hover {
  background: var(--gray-100);
}

.bz-map-mobile-toggle {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

/* Map Popup */
.bz-map-popup {
  max-width: 280px;
}

.bz-map-popup-img {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.bz-map-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-map-popup-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.bz-map-popup-location {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.bz-map-popup-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ========================================
   23. NOTIFICATION STYLES
   ======================================== */
.bz-notification-bell {
  position: relative;
}

.bz-bell-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  transition: var(--transition-base);
  position: relative;
}

.bz-navbar.scrolled .bz-bell-btn {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-700);
}

.bz-bell-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.bz-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.bz-notification-dropdown {
  width: 360px;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.bz-notification-dropdown-header {
  padding: 1rem;
  background: var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}

.bz-notification-dropdown-header h6 {
  margin: 0;
  font-weight: 600;
}

.bz-notification-dropdown-body {
  max-height: 350px;
  overflow-y: auto;
}

.bz-notification-dropdown-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: var(--transition-base);
}

.bz-notification-dropdown-item:hover {
  background: var(--gray-50);
}

.bz-notification-dropdown-item.unread {
  background: rgba(232, 93, 4, 0.05);
}

.bz-notification-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.bz-notification-primary { background: rgba(232, 93, 4, 0.1); color: var(--primary); }
.bz-notification-success { background: rgba(6, 214, 160, 0.1); color: var(--success); }
.bz-notification-warning { background: rgba(255, 209, 102, 0.2); color: #b8860b; }
.bz-notification-info { background: rgba(17, 138, 178, 0.1); color: var(--info); }
.bz-notification-secondary { background: var(--gray-200); color: var(--gray-600); }
.bz-notification-purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.bz-notification-gold { background: rgba(255, 215, 0, 0.2); color: #b8860b; }

.bz-notification-dropdown-content {
  flex: 1;
  min-width: 0;
}

.bz-notification-dropdown-title {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.bz-notification-dropdown-time {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.bz-notification-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray-500);
}

.bz-notification-empty i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.bz-notification-dropdown-footer {
  padding: 0.75rem;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

/* Notification Page */
.bz-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bz-notification-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.bz-notification-item.unread {
  background: rgba(232, 93, 4, 0.05);
  border-left: 3px solid var(--primary);
}

.bz-notification-item.read {
  opacity: 0.8;
}

.bz-notification-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-notification-content {
  flex: 1;
}

.bz-notification-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bz-notification-new-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.bz-notification-message {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bz-notification-time {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.bz-notification-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Price Watch */
.bz-price-watch-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bz-price-watch-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.bz-price-watch-img {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.bz-price-watch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-price-watch-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-300);
  color: var(--gray-500);
  font-size: 1.5rem;
}

.bz-price-watch-status {
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.bz-price-watch-status.active { background: var(--success); color: var(--white); }
.bz-price-watch-status.inactive { background: var(--gray-500); color: var(--white); }

.bz-price-watch-info {
  flex: 1;
}

.bz-price-watch-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.bz-price-watch-title a {
  color: var(--dark);
}

.bz-price-watch-location {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.bz-price-watch-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.bz-price-watch-original,
.bz-price-watch-current {
  font-size: 0.85rem;
}

.bz-price-watch-original .label,
.bz-price-watch-current .label {
  color: var(--gray-600);
  display: block;
  font-size: 0.75rem;
}

.bz-price-watch-original .value {
  color: var(--gray-500);
  text-decoration: line-through;
}

.bz-price-watch-current .value {
  font-weight: 700;
  color: var(--dark);
}

.bz-price-watch-change {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bz-price-watch-change.down { color: var(--success); }
.bz-price-watch-change.up { color: var(--danger); }
.bz-price-watch-change.neutral { color: var(--gray-500); }

.bz-price-watch-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Market Average Card */
.bz-market-avg-card {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.bz-market-avg-card h6 {
  margin-bottom: 1rem;
  color: var(--dark);
}

/* ========================================
   24. RESPONSIVE FOR NEW COMPONENTS
   ======================================== */
@media (max-width: 991.98px) {
  .bz-map-sidebar {
    position: fixed;
    left: -400px;
    top: 76px;
    height: calc(100vh - 76px);
    z-index: 1000;
  }
  
  .bz-map-sidebar.open {
    left: 0;
  }
  
  .bz-portfolio-header {
    text-align: center;
  }
  
  .bz-portfolio-quick-stats {
    justify-content: center;
  }
  
  .bz-notification-dropdown {
    width: 100vw;
    max-width: 360px;
    right: -100px;
  }
}

@media (max-width: 767.98px) {
  .bz-portfolio-avatar {
    width: 140px;
    height: 140px;
  }
  
  .bz-portfolio-name {
    font-size: 1.75rem;
  }
  
  .bz-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .bz-price-watch-item {
    flex-direction: column;
  }
  
  .bz-price-watch-img {
    width: 100%;
    height: 150px;
  }
  
  .bz-notification-dropdown {
    width: calc(100vw - 2rem);
    right: -50px;
  }
}

/* ========================================
   25. WHATSAPP FIXED BUTTON
   ======================================== */
.whatsapp {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 99999 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.whatsapp a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  background: #25d366 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: 1.75rem !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  animation: pulse-whatsapp 2s infinite !important;
}

.whatsapp a:hover,
.whatsapp a:focus {
  background: #20ba5a !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.whatsapp a i {
  color: #ffffff !important;
  font-size: inherit !important;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
}

@media (max-width: 575.98px) {
  .whatsapp {
    bottom: 15px !important;
    right: 15px !important;
  }
  
  .whatsapp a {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.5rem !important;
  }
}

/* Video Thumbnail Styles */
.bz-gallery-thumb-video {
	position: relative;
	overflow: hidden;
}

.bz-gallery-thumb-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.bz-gallery-thumb-video:hover video {
	opacity: 0.9;
}

.bz-gallery-thumb-video .fa-play-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.bz-gallery-thumb-video:hover .fa-play-circle {
	color: var(--white);
	transform: translate(-50%, -50%) scale(1.1);
}

.bz-gallery-popup-thumb-video {
	position: relative;
	overflow: hidden;
}

.bz-gallery-popup-thumb-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.bz-gallery-popup-thumb-video:hover video {
	opacity: 1;
}

.bz-gallery-popup-thumb-video.active video {
	opacity: 1;
}

.bz-gallery-main-video {
	width: 100%;
	height: 100%;
	position: relative;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bz-gallery-main-video video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	cursor: pointer;
}

/* ============================================
   FIRM/ADVISOR SYSTEM STYLES
   ============================================ */

/* Firm Badge on Listing Cards */
.bz-badge-firm {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 0.7rem;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-sm);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.bz-card-firm-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	border-top: 1px solid var(--gray-200);
}

.firm-badge-logo {
	width: 24px;
	height: 24px;
	object-fit: contain;
	border-radius: var(--radius-sm);
}

.firm-badge-name {
	font-size: 0.75rem;
	color: var(--gray-600);
	font-weight: 500;
}

/* Firm Header (Public Page) */
.firm-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 7rem 0 3rem 0;
}

.firm-title {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.firm-location {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.firm-logo-large {
	width: 100px;
	height: 100px;
	background: white;
	border-radius: var(--radius-lg);
	padding: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
}

.firm-logo-large img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Firm Stats Grid */
.firm-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: -2rem 0 2rem;
}

.bz-stat-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bz-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.bz-stat-icon {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	flex-shrink: 0;
}

.bz-stat-content {
	flex-grow: 1;
}

.bz-stat-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gray-900);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.bz-stat-label {
	font-size: 0.85rem;
	color: var(--gray-600);
	font-weight: 500;
}

/* Firm Members Grid */
.firm-members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.firm-member-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.firm-member-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.firm-member-avatar {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--gray-200);
}

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

.avatar-placeholder {
	width: 100%;
	height: 100%;
	background: var(--gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
	font-size: 2rem;
}

.firm-member-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}

.firm-member-role .badge {
	font-size: 0.75rem;
	padding: 0.35rem 0.75rem;
}

.firm-member-stats {
	padding: 0.5rem 0;
}

/* Fix for firm view page - prevent nested card issues */
.bz-section .bz-card {
	height: auto;
	display: block;
	margin-bottom: 0;
}

.bz-section .bz-card + .bz-card {
	margin-top: 1.5rem;
}

/* Firm Contact Info */
.firm-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem;
	background: var(--gray-50);
	border-radius: var(--radius-md);
}

.contact-item i {
	color: var(--primary);
	width: 20px;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.contact-item a {
	color: var(--gray-700);
	text-decoration: none;
	word-break: break-all;
}

.contact-item a:hover {
	color: var(--primary);
}

/* Firm Info Card on Listing Detail */
.bz-firm-info-card {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.bz-firm-header {
	padding: 1.5rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bz-firm-logo {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: var(--radius-md);
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
}

.bz-firm-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.bz-firm-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
	margin: 0 1.5rem;
}

.bz-firm-actions {
	padding: 1.25rem;
}

/* Management Dashboard Styles */
.stat-item {
	padding: 1rem;
	background: var(--gray-50);
	border-radius: var(--radius-md);
	border: 1px solid var(--gray-200);
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--gray-600);
	font-weight: 500;
}

.request-item {
	transition: background 0.2s ease;
}

.request-item:hover {
	background: var(--gray-50);
}

.current-logo-preview img {
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-md);
	padding: 0.5rem;
	background: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.firm-stats {
		grid-template-columns: 1fr 1fr;
	}
	
	.firm-members-grid {
		grid-template-columns: 1fr;
	}
	
	.firm-title {
		font-size: 1.5rem;
	}
	
	.firm-logo-large {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 576px) {
	.firm-stats {
		grid-template-columns: 1fr;
	}
	
	.bz-stat-card {
		padding: 1rem;
	}
	
	.bz-stat-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}
	
	.bz-stat-value {
		font-size: 1.5rem;
	}
}

  