/* ==========================================================================
   FIRST MOVE PROPERTIES - LUXURY DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  --bg-dark: #070a11;
  --bg-surface: #0d1322;
  --bg-card: rgba(19, 27, 46, 0.72);
  --bg-card-hover: rgba(27, 38, 64, 0.85);
  --bg-glass: rgba(13, 19, 34, 0.8);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(245, 158, 11, 0.35);
  
  --gold-primary: #f59e0b;
  --gold-glow: #d97706;
  --gold-light: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  
  --blue-accent: #3b82f6;
  --emerald-accent: #10b981;
  --rose-accent: #f43f5e;
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.15);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Layout Containers */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Top Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  font-weight: 700;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mode Switcher Toggle Pill */
.view-switch {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.switch-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.switch-btn.active {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.saved-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.saved-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.1);
}

.badge-count {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, rgba(7, 10, 17, 0) 70%);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-highlight);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

/* AI Smart Natural Search Bar */
.search-box-wrap {
  width: 100%;
  max-width: 850px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-highlight);
  padding: 8px 12px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding-left: 12px;
}

.search-input-group svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
}

.search-input::placeholder {
  color: var(--text-subtle);
}

.btn-ai-search {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-ai-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

/* Interactive Filter Bar */
.filter-bar {
  background: var(--bg-surface);
  border-y: 1px solid var(--border-color);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  top: 73px;
  z-index: 90;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-select, .filter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
  font-family: inherit;
}

.filter-select:focus, .filter-input:focus {
  border-color: var(--gold-primary);
}

.price-range-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.view-toggle-btns {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.view-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

/* Property Finder Section (Split View Layout) */
.finder-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 180px);
  position: relative;
}

.finder-layout.list-only {
  grid-template-columns: 1fr;
}

.finder-layout.map-only {
  grid-template-columns: 0 1fr;
}

.listings-container {
  padding: 1.5rem 2rem 4rem;
  overflow-y: auto;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.results-count {
  font-size: 1.1rem;
  font-weight: 700;
}

.results-count span {
  color: var(--gold-primary);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Property Card */
.property-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .card-img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.card-badge {
  background: rgba(7, 10, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-highlight);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.btn-bookmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 10, 17, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-bookmark:hover, .btn-bookmark.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.card-yield {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-accent);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.card-specs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.spec-item strong {
  color: var(--text-main);
}

/* Map Container */
.map-container-wrap {
  position: sticky;
  top: 138px;
  height: calc(100vh - 138px);
  width: 100%;
  border-left: 1px solid var(--border-color);
}

#map {
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
}

/* Custom Leaflet Map Popup Styling */
.leaflet-popup-content-wrapper {
  background: var(--bg-surface) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-highlight) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6) !important;
}

.leaflet-popup-tip {
  background: var(--bg-surface) !important;
}

.map-popup-card {
  width: 220px;
}
.map-popup-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.map-popup-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.map-popup-price {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1rem;
}

/* AI Concierge Chat Drawer & Widget */
.ai-widget-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
  transition: var(--transition-smooth);
}

.ai-widget-trigger:hover {
  transform: scale(1.05);
}

.ai-chat-drawer {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 420px;
  height: 580px;
  max-width: calc(100vw - 2rem);
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.ai-chat-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
}

.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 14px;
  color: var(--text-main);
  outline: none;
  font-size: 0.88rem;
  font-family: inherit;
}

.chat-send-btn {
  background: var(--gold-primary);
  border: none;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Detailed Property Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-header-hero {
  position: relative;
  height: 380px;
  width: 100%;
}

.modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}

.modal-main h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

/* Mortgage Calculator & Form Widgets */
.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.calc-row strong {
  color: var(--text-main);
}

.calc-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* AGENT CRM DASHBOARD SECTION */
.crm-view {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.crm-tabs {
  display: flex;
  gap: 1rem;
}

.crm-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.crm-tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-primary);
  font-weight: 700;
}

/* Metrics Summary Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.25rem 0;
}

.metric-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-trend {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Kanban Lead Pipeline */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 2rem;
}

.kanban-col {
  background: rgba(13, 19, 34, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 700;
}

.col-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: grab;
  transition: var(--transition-fast);
}

.lead-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.lead-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.lead-score-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.lead-actions {
  display: flex;
  gap: 6px;
  margin-top: 0.75rem;
}

.btn-xs {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  cursor: pointer;
}

.btn-xs:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Utilities */
.hidden {
  display: none !important;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .finder-layout {
    grid-template-columns: 1fr;
  }
  .map-container-wrap {
    height: 400px;
    position: relative;
    top: 0;
  }
  .kanban-board {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .modal-content-grid {
    grid-template-columns: 1fr;
  }
}
