/* ============================================================
   MAP / LOCATION SECTION
   ============================================================ */

/* ── Two-column layout: map left, info right ─────────────── */
.map-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
  min-height: 420px;
}

/* ── Map iframe wrapper ──────────────────────────────────── */
.map-embed-wrap {
  position: relative;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(0, 80, 255, 0.12),
    0 0 0 4px rgba(0, 229, 255, 0.06);
  min-height: 420px;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  filter: invert(90%) hue-rotate(180deg) saturate(0.85) brightness(0.88);
  /* dark-mode map that blends with the navy theme */
}

/* ── Info panel ──────────────────────────────────────────── */
.map-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Individual info card ────────────────────────────────── */
.map-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md, 14px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s, background 0.25s;
}

.map-info-card:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.22);
}

.map-info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.map-info-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-info-text p {
  font-size: 0.88rem;
  color: var(--white-80, rgba(255,255,255,0.8));
  line-height: 1.65;
}

.map-info-text p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.map-info-text p a:hover {
  color: var(--cyan);
}

/* ── Directions button ───────────────────────────────────── */
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 14px 24px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.30);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .map-embed-wrap,
  .map-embed-wrap iframe {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .map-layout {
    gap: 20px;
    margin-top: 32px;
  }

  .map-embed-wrap,
  .map-embed-wrap iframe {
    min-height: 260px;
  }

  .map-info-card {
    padding: 14px 16px;
    gap: 12px;
  }
}
