/* ============================================
   NEONFIND — STYLES.CSS
   Palette: Acid Neon (#CCFF00, #FF3CAC, #0D0D0D)
   Fonts: Clash Display + Syne + Chillax
============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --neon: #CCFF00;
  --pink: #FF3CAC;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --dark-5: #2A2A2A;
  --white: #FFFFFF;
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --neon-glow: 0 0 20px rgba(204,255,0,0.4), 0 0 60px rgba(204,255,0,0.15);
  --pink-glow: 0 0 20px rgba(255,60,172,0.4), 0 0 60px rgba(255,60,172,0.15);
  --card-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Syne', sans-serif;
  --font-light: 'Chillax', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--neon);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(204,255,0,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--pink); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; border-color: rgba(255,60,172,0.5); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* ===== SELECTION ===== */
::selection { background: var(--neon); color: var(--dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes neon-pulse {
  0%, 100% { box-shadow: var(--neon-glow); }
  50% { box-shadow: 0 0 40px rgba(204,255,0,0.6), 0 0 80px rgba(204,255,0,0.3); }
}
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.9); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 50px) scale(1.15); }
  66% { transform: translate(50px, -30px) scale(0.85); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.2); }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes badge-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes card-hover-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,255,0,0.3); }
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes star-fill {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  padding: 14px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--neon);
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}
.logo-accent { color: var(--neon); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-60);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--neon);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }
.nav-btn {
  padding: 10px 22px;
  background: var(--neon);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  transition: var(--transition);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.nav-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--neon), transparent 70%);
  top: -200px; left: -100px;
  animation: orb-float-1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  bottom: -150px; right: -100px;
  animation: orb-float-2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #7B68EE, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float-3 10s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-60);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: badge-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--neon);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.accent-line {
  color: transparent;
  -webkit-text-stroke: 2px var(--neon);
  text-shadow: none;
  position: relative;
}
.accent-line::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  color: var(--neon);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: text-reveal 1.5s ease 0.5s forwards;
}
@keyframes text-reveal {
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
.hero-subtitle {
  font-family: var(--font-light);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Search Bar */
.hero-search-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto 24px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  gap: 0;
}
.search-bar:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.1), var(--neon-glow);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.search-icon {
  width: 18px; height: 18px;
  color: var(--white-30);
  flex-shrink: 0;
}
.search-field input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.95rem;
  width: 100%;
  padding: 8px 0;
}
.search-field input::placeholder { color: var(--white-30); }
.search-divider {
  width: 1px; height: 28px;
  background: var(--white-10);
  margin: 0 16px;
  flex-shrink: 0;
}
.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--neon);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.search-btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.search-btn:hover { background: var(--white); transform: scale(1.02); }
.search-btn:hover svg { transform: translateX(3px); }

/* Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  display: none;
  z-index: 100;
  box-shadow: var(--card-shadow);
  animation: scaleIn 0.2s ease;
}
.search-suggestions.visible { display: block; }
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: none;
  transition: var(--transition);
  font-size: 0.9rem;
}
.suggestion-item:hover { background: var(--white-05); color: var(--neon); }
.suggestion-icon { font-size: 1.1rem; }

/* Quick Tags */
.quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.tag-label {
  font-size: 0.8rem;
  color: var(--white-30);
  font-weight: 500;
}
.quick-tag {
  padding: 6px 14px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--white-60);
  transition: var(--transition);
  font-family: var(--font-body);
}
.quick-tag:hover {
  background: rgba(204,255,0,0.1);
  border-color: rgba(204,255,0,0.3);
  color: var(--neon);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(20px);
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.7s both;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--white-30);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--white-10);
  margin: 0 20px;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--white-30);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: var(--font-light);
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-accent { color: var(--neon); }

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.categories-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.3;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,255,0,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(204,255,0,0.1);
}
.category-card:hover::before { opacity: 1; }
.category-card:hover .cat-icon { transform: scale(1.2) rotate(-5deg); }
.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  transition: transform var(--transition);
}
.cat-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 0.75rem;
  color: var(--white-30);
}
.category-card.active {
  border-color: var(--neon);
  background: rgba(204,255,0,0.05);
}
.category-card.active .cat-name { color: var(--neon); }

/* ===== FILTER SECTION ===== */
.filter-section {
  padding: 80px 0 100px;
  background: var(--dark);
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.results-count {
  display: block;
  font-size: 0.85rem;
  color: var(--white-30);
  margin-top: 4px;
}
.filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-group label {
  font-size: 0.7rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.filter-select {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 8px 32px 8px 12px;
  font-size: 0.85rem;
  outline: none;
  cursor: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}
.filter-select:focus { border-color: var(--neon); }
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.view-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white-30);
  transition: var(--transition);
}
.view-btn svg { width: 16px; height: 16px; }
.view-btn.active, .view-btn:hover {
  background: var(--neon);
  color: var(--dark);
}

/* Active Filters */
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  min-height: 0;
}
.active-filter-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--neon);
  animation: scaleIn 0.2s ease;
}
.active-filter-tag button {
  color: var(--neon);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.active-filter-tag button:hover { opacity: 1; }

/* Listings Grid */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  transition: var(--transition);
}
.listings-grid.list-view {
  grid-template-columns: 1fr;
}

/* Listing Card */
.listing-card {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: none;
  transition: var(--transition);
  animation: fadeInUp 0.5s ease both;
  position: relative;
}
.listing-card:hover {
  border-color: rgba(204,255,0,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,255,0,0.1);
}
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.listing-card:hover .card-image img { transform: scale(1.08); }
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-open { background: rgba(204,255,0,0.9); color: var(--dark); }
.badge-closed { background: rgba(255,60,172,0.9); color: var(--white); }
.badge-featured { background: rgba(255,165,0,0.9); color: var(--dark); }
.card-favorite {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.card-favorite:hover { background: rgba(255,60,172,0.8); transform: scale(1.1); }
.card-favorite.active { background: rgba(255,60,172,0.9); }
.card-body { padding: 20px; }
.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition);
}
.listing-card:hover .card-name { color: var(--neon); }
.card-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white-30);
  margin-bottom: 14px;
}
.card-address svg { width: 13px; height: 13px; flex-shrink: 0; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--white-05);
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  display: flex;
  gap: 2px;
}
.star {
  font-size: 0.75rem;
  color: var(--white-10);
  transition: color var(--transition);
}
.star.filled { color: #FFB800; }
.rating-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.rating-count {
  font-size: 0.75rem;
  color: var(--white-30);
}
.card-distance {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--white-30);
}
.card-distance svg { width: 12px; height: 12px; }
.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--white-05);
  display: flex;
  gap: 8px;
}
.card-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-family: var(--font-body);
}
.card-btn-primary {
  background: var(--neon);
  color: var(--dark);
}
.card-btn-primary:hover { background: var(--white); transform: translateY(-1px); }
.card-btn-secondary {
  background: var(--white-05);
  color: var(--white-60);
  border: 1px solid var(--white-10);
}
.card-btn-secondary:hover { background: var(--white-10); color: var(--white); }

/* List View Card */
.listings-grid.list-view .listing-card {
  display: flex;
  flex-direction: row;
}
.listings-grid.list-view .card-image {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}
.listings-grid.list-view .card-body { flex: 1; }
.listings-grid.list-view .card-footer { border-top: none; border-left: 1px solid var(--white-05); flex-direction: column; justify-content: center; width: 140px; flex-shrink: 0; }

/* Load More */
.load-more-wrapper {
  text-align: center;
  margin-top: 48px;
}
.load-more-btn {
  position: relative;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--white-10);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  overflow: hidden;
}
.load-more-btn:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow);
}
.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(204,255,0,0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.load-more-btn:hover .btn-glow { opacity: 1; }

/* ===== MAP SECTION ===== */
.map-section {
  padding: 100px 0;
  background: var(--dark-2);
}
.map-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  height: 560px;
}
.map-sidebar {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-search {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--white-05);
}
.map-search input {
  flex: 1;
  background: var(--dark-4);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.map-search input:focus { border-color: var(--neon); }
.map-search-btn {
  width: 40px; height: 40px;
  background: var(--neon);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.map-search-btn svg { width: 16px; height: 16px; color: var(--dark); }
.map-search-btn:hover { background: var(--white); }
.map-filters {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--white-05);
  flex-wrap: wrap;
}
.map-filter-btn {
  padding: 5px 10px;
  background: var(--dark-4);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--white-60);
  transition: var(--transition);
  font-family: var(--font-body);
}
.map-filter-btn.active, .map-filter-btn:hover {
  background: rgba(204,255,0,0.1);
  border-color: rgba(204,255,0,0.3);
  color: var(--neon);
}
.map-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.map-list::-webkit-scrollbar { width: 4px; }
.map-list::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 2px; }
.map-list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.map-list-item:hover, .map-list-item.active {
  background: var(--white-05);
  border-color: rgba(204,255,0,0.15);
}
.map-item-icon {
  width: 40px; height: 40px;
  background: var(--dark-4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.map-item-info { flex: 1; min-width: 0; }
.map-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-item-cat {
  font-size: 0.72rem;
  color: var(--neon);
  margin-bottom: 2px;
}
.map-item-dist {
  font-size: 0.72rem;
  color: var(--white-30);
}

/* Map Display */
.map-display {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.map-canvas {
  width: 100%; height: 100%;
  position: relative;
  background: #0a0f1a;
}
.map-svg { width: 100%; height: 100%; }
.map-pins { position: absolute; inset: 0; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: none;
  animation: pin-bounce 3s ease-in-out infinite;
}
.map-pin:nth-child(2) { animation-delay: 0.5s; }
.map-pin:nth-child(3) { animation-delay: 1s; }
.map-pin:nth-child(4) { animation-delay: 1.5s; }
.map-pin:nth-child(5) { animation-delay: 2s; }
.pin-body {
  width: 36px; height: 36px;
  background: var(--neon);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(204,255,0,0.4);
  transition: var(--transition);
}
.pin-body span {
  transform: rotate(45deg);
  font-size: 0.9rem;
}
.map-pin:hover .pin-body {
  background: var(--pink);
  box-shadow: 0 4px 12px rgba(255,60,172,0.4);
  transform: rotate(-45deg) scale(1.2);
}
.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}
.map-pin:hover .pin-tooltip { opacity: 1; }
.user-location-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.user-pin-dot {
  width: 14px; height: 14px;
  background: #4A9EFF;
  border: 3px solid var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(74,158,255,0.3);
}
.user-pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border: 2px solid rgba(74,158,255,0.4);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
.map-controls {
  position: absolute;
  right: 16px; bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-ctrl-btn {
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.map-ctrl-btn svg { width: 16px; height: 16px; }
.map-ctrl-btn:hover { background: var(--neon); color: var(--dark); border-color: var(--neon); }

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,0.04), transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white-05);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}
.step-card:hover {
  border-color: rgba(204,255,0,0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-card:hover::before { color: rgba(204,255,0,0.08); }
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform var(--transition);
}
.step-card:hover .step-icon { transform: scale(1.2); }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-family: var(--font-light);
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 50%; right: -12px;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  z-index: 1;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--dark-2);
  overflow: hidden;
}
.reviews-track-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  background: var(--dark-3);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 380px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--white-05);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(204,255,0,0.15);
  transform: translateY(-4px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white-10);
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.reviewer-location {
  font-size: 0.78rem;
  color: var(--white-30);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-star { font-size: 0.85rem; }
.review-text {
  font-family: var(--font-light);
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 16px;
}
.review-business {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white-05);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}
.review-business-icon { font-size: 1rem; }
.review-business-name { font-weight: 600; }
.review-business-cat { color: var(--neon); font-size: 0.72rem; }
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.rev-nav-btn {
  width: 44px; height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.rev-nav-btn svg { width: 18px; height: 18px; }
.rev-nav-btn:hover { background: var(--neon); color: var(--dark); border-color: var(--neon); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 8px; height: 8px;
  background: var(--white-10);
  border-radius: 100px;
  transition: var(--transition);
  cursor: none;
}
.rev-dot.active { width: 24px; background: var(--neon); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: var(--neon);
  top: -200px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -150px; right: -100px;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,60,172,0.1);
  border: 1px solid rgba(255,60,172,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-text {
  font-family: var(--font-light);
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--neon);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  transition: var(--transition);
  animation: neon-pulse 3s ease-in-out infinite;
}
.cta-btn-primary svg { width: 18px; height: 18px; transition: transform var(--transition); }
.cta-btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(204,255,0,0.3); }
.cta-btn-primary:hover svg { transform: translateX(4px); }
.cta-btn-secondary {
  padding: 16px 36px;
  background: transparent;
  border: 1px solid var(--white-10);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
}
.cta-btn-secondary:hover { border-color: var(--white-30); background: var(--white-05); }
.cta-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--white-30);
}
.cta-features span { display: flex; align-items: center; gap: 6px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--white-05);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-family: var(--font-light);
  font-size: 0.9rem;
  color: var(--white-30);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--neon); color: var(--dark); border-color: var(--neon); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--white-30);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--neon); transform: translateX(4px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--white-05);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--white-30); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: var(--white-30); transition: color var(--transition); }
.footer-legal a:hover { color: var(--neon); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: var(--pink); }
.modal-hero-img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-body { padding: 28px; }
.modal-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.modal-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--dark-4);
  border-radius: var(--radius-sm);
}
.modal-info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.modal-info-label { font-size: 0.72rem; color: var(--white-30); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.modal-info-value { font-size: 0.88rem; font-weight: 600; }
.modal-desc {
  font-family: var(--font-light);
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 24px;
}
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-btn {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}
.modal-btn-primary { background: var(--neon); color: var(--dark); }
.modal-btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.modal-btn-secondary { background: var(--dark-4); color: var(--white); border: 1px solid var(--white-10); }
.modal-btn-secondary:hover { border-color: var(--white-30); }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--card-shadow);
  animation: toast-in 0.3s ease;
  min-width: 280px;
  max-width: 360px;
}
.toast.success { border-color: rgba(204,255,0,0.3); }
.toast.success .toast-icon { color: var(--neon); }
.toast.error { border-color: rgba(255,60,172,0.3); }
.toast.error .toast-icon { color: var(--pink); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-out { animation: toast-out 0.3s ease forwards; }

/* ===== SKELETON LOADING ===== */
.skeleton {
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-wrapper { grid-template-columns: 1fr; height: auto; }
  .map-sidebar { height: 300px; }
  .map-display { height: 400px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,13,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 999; }
  .nav-links.open { display: flex; animation: fadeIn 0.3s ease; }
  .nav-link { font-size: 1.5rem; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .search-bar { flex-direction: column; border-radius: var(--radius); padding: 16px; gap: 12px; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-btn { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-controls { width: 100%; }
  .listings-grid { grid-template-columns: 1fr; }
  .listings-grid.list-view .listing-card { flex-direction: column; }
  .listings-grid.list-view .card-image { width: 100%; height: 200px; }
  .listings-grid.list-view .card-footer { border-left: none; border-top: 1px solid var(--white-05); flex-direction: row; width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .review-card { min-width: 300px; }
  .modal-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
}