/* ============================================================
   Distress Finder — Premium Dark Theme
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Backgrounds */
  --bg-primary: #0A0A0C;
  --bg-secondary: #111114;
  --bg-tertiary: #1A1A1F;
  --bg-input: #15151A;

  /* Accent */
  --accent-red: #CC0000;
  --accent-red-hover: #E60000;
  --accent-red-muted: #33000D;
  --accent-gold: #C9A84C;
  --accent-gold-light: #E2C97E;
  --accent-gold-muted: #2A2311;

  /* Text */
  --text-primary: #F2F2F2;
  --text-secondary: #A0A0A8;
  --text-tertiary: #6B6B73;
  --text-inverse: #0A0A0C;

  /* Borders */
  --border-subtle: #1F1F26;
  --border-default: #2A2A33;
  --border-gold: #C9A84C;

  /* State */
  --success: #1DB954;
  --success-bg: #0D2B18;
  --error: #E53E3E;
  --error-bg: #2D1015;
  --warning: #E2C97E;
  --discount: #CC0000;

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, rgba(10,10,12,0) 0%, #0A0A0C 100%);
  --gradient-card-hover: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(204,0,0,0.05) 100%);
  --gradient-gold-line: linear-gradient(90deg, transparent 0%, #C9A84C 50%, transparent 100%);

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
  --shadow-dropdown: 0 12px 40px rgba(0,0,0,0.7);
  --shadow-modal: 0 24px 64px rgba(0,0,0,0.8);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --nav-height-desktop: 72px;
  --nav-height-mobile: 60px;
}

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

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

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

p {
  margin-bottom: var(--space-4);
}

.price-large {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--accent-gold);
}

.price-card {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--accent-gold);
}

.price-original {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.body-large {
  font-size: 16px;
  line-height: 1.6;
}

.caption {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent-gold);
  color: var(--text-inverse);
  padding: 12px 24px;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height-mobile);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 36px;
  width: auto;
  filter: sepia(1) saturate(3) hue-rotate(15deg) brightness(1.1);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__wa {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-gold);
  color: var(--text-inverse);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__wa:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
}

.nav__wa svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 200;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: var(--space-7) var(--space-5);
}

.nav__drawer.open {
  right: 0;
}

.nav__drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.nav__drawer-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 24px;
}

.nav__drawer a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

.nav__drawer a:hover,
.nav__drawer a.active {
  color: var(--text-primary);
}

.nav__drawer .nav__wa-mobile {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  min-height: 44px;
  text-align: center;
}

.btn--primary {
  background: var(--accent-red);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn--secondary:hover {
  background: var(--accent-gold-muted);
}

.btn--secondary:active {
  background: var(--accent-gold);
  color: var(--text-inverse);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 16px;
}

.btn--ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn--whatsapp:hover {
  background: #2BE46F;
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.btn--full {
  width: 100%;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.6) 0%,
    rgba(10, 10, 12, 0.85) 60%,
    #0A0A0C 100%
  );
  z-index: 1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--accent-gold);
  background: var(--accent-gold-muted);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease 0.15s forwards;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-7);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease 0.45s forwards;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-gold);
  display: block;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--space-8) 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.section__header h2 {
  margin-bottom: var(--space-3);
}

.section__header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section__gold-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold-line);
  margin: var(--space-4) auto;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.deal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-fast), transform var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.deal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.deal-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201, 168, 76, 0.2);
}

.deal-card__image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.deal-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.deal-card__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
}

.deal-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--border-default);
}

.deal-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.deal-card__body {
  padding: var(--space-5);
}

.deal-card__area {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}

.deal-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.deal-card__prices {
  margin-bottom: var(--space-3);
}

.deal-card__specs {
  display: flex;
  gap: var(--space-4);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.deal-card__specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.deal-card__specs svg {
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
}

.deal-card__cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-red);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.deal-card__cta:hover {
  color: var(--accent-red-hover);
  text-decoration: underline;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-6);
}

.filter-bar__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.filter-bar__group {
  flex: 1;
}

.filter-bar__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
  display: block;
}

.filter-bar select,
.filter-bar input[type="number"] {
  width: 100%;
  height: 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0 16px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition-fast);
}

.filter-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B6B73' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-bar select:focus,
.filter-bar input:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Bedroom buttons */
.bedrooms-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-default);
}

.bedrooms-group button {
  flex: 1;
  min-width: 44px;
  height: 44px;
  background: transparent;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-right: 1px solid var(--border-default);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.bedrooms-group button:last-child {
  border-right: none;
}

.bedrooms-group button.active {
  background: var(--accent-gold);
  color: var(--text-inverse);
}

.bedrooms-group button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.filter-bar__search {
  height: 44px;
}

/* Filter results info */
.filter-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.filter-results__count {
  font-size: 14px;
  color: var(--text-secondary);
}

.filter-results__count strong {
  color: var(--text-primary);
}

.filter-results__sort select {
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 8px 36px 8px 12px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B6B73' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.filter-clear {
  font-size: 13px;
  color: var(--accent-red);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
}

.filter-clear:hover {
  text-decoration: underline;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.value-prop {
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.value-prop:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.value-prop__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--accent-gold);
}

.value-prop h3 {
  font-size: 18px;
  margin-bottom: var(--space-3);
}

.value-prop p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step__number {
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-gold);
}

.step h3 {
  margin-bottom: var(--space-2);
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: var(--space-8) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-section h2 {
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto var(--space-6);
}

/* ============================================================
   TRUST BLOCK
   ============================================================ */
.trust-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  text-align: center;
  padding: var(--space-7) 0;
}

.trust-item {
  flex: 1;
  min-width: 200px;
}

.trust-item__label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-2);
}

.trust-item__value {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-gold);
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  max-width: 640px;
  margin: 0 auto;
}

.lead-form__header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.lead-form__header h2 {
  font-size: 24px;
  margin-bottom: var(--space-3);
}

.lead-form__header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0 16px;
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group textarea {
  height: 100px;
  padding: 12px 16px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B6B73' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group--error input,
.form-group--error select {
  border-color: var(--error);
}

.form-group__error {
  font-size: 13px;
  color: var(--error);
  margin-top: var(--space-1);
  display: none;
}

.form-group--error .form-group__error {
  display: block;
}

.form-privacy {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: var(--space-4);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: var(--space-7);
  display: none;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  color: var(--success);
}

.form-success h3 {
  margin-bottom: var(--space-3);
  font-size: 24px;
}

.form-success p {
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   DEAL DETAIL PAGE
   ============================================================ */
.deal-detail {
  padding-top: var(--space-6);
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb a {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--text-tertiary);
}

.deal-gallery {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  margin-bottom: var(--space-6);
}

.deal-gallery__main {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-tertiary);
}

.deal-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-secondary);
}

.deal-gallery__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.deal-gallery__thumb--active,
.deal-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--color-gold);
}

.deal-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--border-default);
}

.deal-gallery__placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-3);
}

.deal-gallery__placeholder span {
  font-size: 14px;
  color: var(--text-tertiary);
}

.deal-header {
  margin-bottom: var(--space-6);
}

.deal-header__badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.deal-header__badges .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge--distress {
  background: var(--accent-red-muted);
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
}

.badge--area {
  background: var(--accent-gold-muted);
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.deal-header h1 {
  font-size: 28px;
  margin-bottom: var(--space-3);
}

.deal-header__developer {
  font-size: 14px;
  color: var(--text-tertiary);
}

.deal-price-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}

.deal-price-block__current {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: var(--space-2);
}

.deal-price-block__original {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-bottom: var(--space-3);
}

.deal-price-block__save {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.deal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.deal-spec {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}

.deal-spec__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.deal-spec__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.deal-description {
  margin-bottom: var(--space-6);
}

.deal-description h2 {
  font-size: 22px;
  margin-bottom: var(--space-4);
}

.deal-description p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.deal-description__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.deal-description__row {
  display: flex;
  gap: var(--space-4);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: baseline;
}

.deal-description__row:last-child {
  border-bottom: none;
}

.deal-description__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold);
  min-width: 120px;
  flex-shrink: 0;
}

.deal-description__value {
  color: var(--text-primary);
  font-size: 15px;
}

.deal-cta-block {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  margin-bottom: var(--space-7);
}

.deal-cta-block h3 {
  font-size: 22px;
  margin-bottom: var(--space-3);
}

.deal-cta-block p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-5);
  font-size: 14px;
}

.deal-cta-block__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

/* Similar Deals */
.similar-deals {
  padding: var(--space-7) 0;
}

.similar-deals h2 {
  font-size: 24px;
  margin-bottom: var(--space-5);
}

.similar-deals__scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-3);
}

.similar-deals__scroll::-webkit-scrollbar {
  display: none;
}

.similar-deals__scroll .deal-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  opacity: 1;
  transform: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  text-align: center;
  padding: var(--space-8) 0;
}

.about-hero h1 {
  margin-bottom: var(--space-4);
}

.about-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-secondary);
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-7) 0;
}

.about-section h2 {
  margin-bottom: var(--space-5);
}

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

.founder-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-7) 0;
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  text-align: center;
}

.founder-info h2 {
  margin-bottom: var(--space-4);
}

.founder-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.founder-info__social {
  margin-top: var(--space-4);
}

.founder-info__social a {
  color: var(--accent-gold);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.founder-info__social a:hover {
  color: var(--accent-gold-light);
}

.mission-block {
  text-align: center;
  padding: var(--space-7);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto var(--space-7);
}

.mission-block h2 {
  margin-bottom: var(--space-4);
}

.mission-block p {
  color: var(--text-secondary);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  text-align: center;
  padding: var(--space-8) 0 var(--space-6);
}

.contact-hero h1 {
  margin-bottom: var(--space-4);
}

.contact-hero p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto var(--space-7);
}

.contact-method {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: border-color var(--transition-fast);
}

.contact-method:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.contact-method__icon svg {
  width: 24px;
  height: 24px;
}

.contact-method h3 {
  font-size: 16px;
  margin-bottom: var(--space-1);
}

.contact-method__handle {
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 15px;
  display: block;
  margin-bottom: var(--space-2);
}

.contact-method p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 0;
}

.contact-form-section {
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: var(--space-8);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: var(--space-5);
}

.contact-response-time {
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: var(--space-5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-8) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.footer__brand p {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-top: var(--space-3);
}

.footer__brand img {
  height: 32px;
  margin-bottom: var(--space-3);
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer__bottom a {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--accent-gold);
}

.footer__legal {
  line-height: 1.5;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  text-align: center;
  padding: var(--space-10) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: 80px;
  color: var(--accent-red);
  margin-bottom: var(--space-4);
}

.page-404 h2 {
  margin-bottom: var(--space-4);
}

.page-404 p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-6);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: var(--space-8) var(--space-5);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-5);
}

.empty-state h3 {
  margin-bottom: var(--space-3);
}

.empty-state p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-5);
  font-size: 14px;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  text-align: center;
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-6);
}

.page-header h1 {
  margin-bottom: var(--space-3);
}

.page-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CATALOG PAGE LAYOUT
   ============================================================ */
.catalog-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.catalog-sidebar {
  display: none;
}

/* Mobile filter toggle */
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: var(--space-4);
}

.filter-toggle svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 640px+ */
@media (min-width: 640px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 22px; }
  .body-large { font-size: 18px; }
  .price-large { font-size: 28px; }
  .price-card { font-size: 22px; }

  .container { padding: 0 40px; }

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .deal-cta-block__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .deal-specs {
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .filter-bar__group {
    min-width: 140px;
  }

  .lead-form {
    padding: var(--space-6);
  }

  .founder-block {
    flex-direction: row;
    text-align: left;
  }

  .founder-info {
    text-align: left;
  }

  .deal-gallery__main {
    height: 400px;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 44px; }
  h3 { font-size: 24px; }

  .container { padding: 0 64px; }

  .nav {
    height: var(--nav-height-desktop);
  }

  .nav__links {
    display: flex;
  }

  .nav__wa {
    display: none;
  }

  .nav__hamburger {
    display: none;
  }

  .hero {
    min-height: 85vh;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-props {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .deal-gallery__main {
    height: 500px;
  }

  .section { padding: var(--space-9) 0; }

  .lead-form {
    padding: var(--space-7);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  100% { left: 100%; }
}

/* ============================================================
   Map Features
   ============================================================ */

/* --- Map Link on Deal Cards --- */
.deal-card__map-link {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  vertical-align: middle;
}

.deal-card__map-link:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* --- Map Toggle Button --- */
.btn--map-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--map-toggle:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn--map-toggle.active {
  background: var(--accent-gold-muted);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn--map-toggle svg {
  flex-shrink: 0;
}

/* --- Map Container --- */
#map-view {
  border: 1px solid var(--border-default);
  overflow: hidden;
  z-index: 1;
}

/* --- View on Map Button (Deal Detail) --- */
.btn--map-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-tertiary);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn--map-view:hover {
  background: var(--accent-gold-muted);
  color: var(--accent-gold-light);
}

.btn--map-view svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* --- Leaflet Dark Theme Popup --- */
.dark-popup .leaflet-popup-content-wrapper {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: var(--shadow-dropdown);
  padding: 0;
}

.dark-popup .leaflet-popup-tip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-top: none;
  border-right: none;
}

.dark-popup .leaflet-popup-close-button {
  color: var(--text-tertiary);
  font-size: 18px;
  padding: 6px 8px 0 0;
}

.dark-popup .leaflet-popup-close-button:hover {
  color: var(--text-primary);
}

.dark-popup .leaflet-popup-content {
  margin: 0;
  line-height: 1.4;
}

/* --- Map Popup Content --- */
.map-popup {
  padding: 14px 16px;
  min-width: 200px;
}

.map-popup__area {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.map-popup__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.map-popup__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
}

.map-popup__specs {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.map-popup__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-popup__link:hover {
  color: var(--accent-gold-light);
}

/* --- Custom Map Marker --- */
.map-marker-icon {
  background: transparent !important;
  border: none !important;
}

/* --- Leaflet Controls Dark Theme --- */
.leaflet-control-zoom a {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-default) !important;
}

.leaflet-control-zoom a:hover {
  background-color: var(--bg-tertiary) !important;
  color: var(--accent-gold) !important;
}

.leaflet-control-attribution {
  background: rgba(10, 10, 12, 0.8) !important;
  color: var(--text-tertiary) !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a {
  color: var(--text-secondary) !important;
}
