/* =========================
   MAP CARD – PREMIUM UX
========================= */
.bsj-map-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  margin: 20px 0;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  background: #000;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: 
    transform 0.45s cubic-bezier(.22,1,.36,1),
    box-shadow 0.45s cubic-bezier(.22,1,.36,1);
}

.bsj-map-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bsj-map-card:hover .bsj-map-content {
  color: #fff;
}

/* Background image */
.bsj-map-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bonsejourtravels.com/wp-content/uploads/2026/01/caption-14-1-900x600.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.05);
  transform: scale(1.15);
  transition:
    filter 0.45s cubic-bezier(.22,1,.36,1),
    transform 0.45s cubic-bezier(.22,1,.36,1);
}

/* Dark cinematic overlay */
.bsj-map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

/* Hover effect */
.bsj-map-card:hover .bsj-map-bg {
  filter: blur(3px) saturate(1.1);
  transform: scale(1.08);
}

/* Content */
.bsj-map-content {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
}

/* Title */
.bsj-map-content h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Description */
.bsj-map-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.92;
}

/* CTA */
.bsj-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  opacity: 0.95;
}

.bsj-map-cta::after {
  content: '→';
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

.bsj-map-card:hover .bsj-map-cta::after {
  transform: translateX(4px);
}

/* Icon (subtle, not emoji-heavy) */
.bsj-map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.booking-filters-map {
  margin-bottom: 24px;
}

.bsj-map-wrapper {
  margin-bottom: 24px;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .bsj-map-card {
    margin: 14px 0;
    border-radius: 14px;
  }

  .bsj-map-content {
    padding: 16px;
  }
}