.loc-map-section {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
    overflow: hidden;
  }
  .loc-map-section .container { padding-bottom: 0; }
  .loc-map-header { padding-bottom: 48px; }
  .loc-map-sub {
    margin-top: 16px;
    color: var(--muted);
    max-width: 560px;
    font-size: 15px;
    line-height: 1.65;
  }

  /* Shell: sidebar + map */
  /* .loc-shell-wrap { padding: 0 70px 0; } */
  .loc-shell {
    display: grid;
    grid-template-columns: 340px 1fr;
    height: 640px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  }

  /* ── Sidebar ── */
  .loc-sidebar {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
  }
  .loc-search {
    position: relative;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
  }
  .loc-search input {
    width: 100%;
    padding: 8px 12px 8px 34px;
    border: 1.5px solid #e8e4dc;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }
  .loc-search input:focus { border-color: var(--gold); }
  .loc-search-icon {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    pointer-events: none;
    margin-top: 2px;
  }

  /* chips */
  .loc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
  }
  .loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px !important;
    border-radius: 20px !important;
    border: 1.5px solid #ddd !important;
    background: #fff !important;
    font-size: 11px !important;
    font-weight: 400;
    color: #777;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
  }
  .loc-chip.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--text);
  }
  .loc-chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

  /* cat scroll */
  .loc-cat-scroll { flex: 1; overflow-y: auto; padding: 6px 0; }
  .loc-cat-scroll::-webkit-scrollbar { width: 3px; }
  .loc-cat-scroll::-webkit-scrollbar-track { background: transparent; }
  .loc-cat-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
  .loc-cat-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
  }
  .loc-cat-head:hover { background: #fafafa; }
  .loc-cat-icon {
    width: 22px; height: 22px;
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .loc-cat-label {
    flex: 1;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
  }
  .loc-cat-count { font-size: 10.5px; color: #bbb; font-family: 'Inter', sans-serif; }
  .loc-cat-chev { color: #ccc; transition: transform 0.2s; display: flex; align-items: center; }
  .loc-cat-chev.open { transform: rotate(180deg); }
  .loc-cat-list { padding: 1px 0 4px; }
  .loc-poi-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 44px;
    cursor: pointer;
    transition: background 0.15s;
  }
  .loc-poi-row:hover,
  .loc-poi-row.hover { background: #f9f7f4; }
  .loc-poi-row.active { background: #fffce8; }
  .loc-poi-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .loc-poi-name { flex: 1; font-size: 12px; color: #444; font-family: 'Inter', sans-serif; }
  .loc-poi-row.active .loc-poi-name { font-weight: 600; color: var(--text); }
  .loc-poi-dist { font-size: 11px; color: #bbb; font-family: 'Inter', sans-serif; }
  .loc-poi-row.active .loc-poi-dist { color: #777; }

  /* ── Map Pane ── */
  .loc-map-pane { position: relative; overflow: hidden; }
  .loc-map-bg {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter 0.45s ease;
  }
  .loc-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  /* controls */
  .loc-controls {
    position: absolute;
    top: 14px; right: 14px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    overflow: hidden;
  }
  .loc-ctrl-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: #555;
    transition: background 0.15s;
    padding: 0px;
  }
  .loc-ctrl-btn:hover { background: #f5f5f5; }
  .loc-ctrl-div { height: 1px; background: #eee; }

  /* theme */
  .loc-theme-tog {
    position: absolute;
    top: 14px; left: 14px;
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    backdrop-filter: blur(4px);
  }
  .loc-theme-btn {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
  }
  .loc-theme-btn:hover { transform: scale(1.1); }
  .loc-theme-btn.active { border-color: var(--gold); }

  /* legend */
  .loc-legend {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    border-radius: 9px;
    padding: 9px 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.11);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .loc-legend-pin {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #3b6cb3;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(59,108,179,0.18);
  }
  .loc-legend-name { font-size: 12px; font-weight: 600; color: #1a1a1a; font-family: 'Inter', sans-serif; }
  .loc-legend-sub { font-size: 10px; color: #999; font-family: 'Inter', sans-serif; margin-top: 1px; }

  /* hover card */
  .loc-hover-card {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(255,255,255,0.97);
    border-radius: 10px;
    padding: 11px 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.14);
    border-left: 3px solid #999;
    min-width: 170px;
    max-width: 220px;
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .loc-hc-cat {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    margin-bottom: 3px;
  }
  .loc-hc-name { font-size: 13.5px; font-weight: 600; color: #1a1a1a; font-family: 'Inter', sans-serif; margin-bottom:
  5px; }
  .loc-hc-meta { font-size: 11.5px; color: #888; font-family: 'Inter', sans-serif; }
  .loc-hc-meta .dot { margin: 0 4px; color: #ccc; }

  /* directions card */
  .loc-dir-card {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.16);
    width: 260px;
    backdrop-filter: blur(4px);
    font-family: 'Inter', sans-serif;
  }
  .loc-dir-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 11px; }
  .loc-dir-route { display: flex; flex-direction: column; gap: 4px; }
  .loc-dir-row { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: #555; }
  .loc-dir-pin { width: 8px; height: 8px; border-radius: 50%; background: #3b6cb3; flex-shrink: 0; }
  .loc-dir-line { width: 1px; height: 12px; background: #e0ddd8; margin-left: 3.5px; }
  .loc-dir-close {
    background: none; border: none; cursor: pointer;
    color: #bbb; padding: 2px; border-radius: 4px;
    transition: color 0.15s; display: flex;
  }
  .loc-dir-close:hover { color: #555; }
  .loc-dir-modes { display: flex; gap: 4px; margin-bottom: 11px; }
  .loc-mode-btn {
    flex: 1; padding: 5px 3px;
    border: 1.5px solid #e8e4dc;
    border-radius: 6px; background: #fff;
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 10px; color: #777;
    transition: all 0.18s;
    font-family: 'Inter', sans-serif;
  }
  .loc-mode-btn.active { border-color: var(--gold); background: var(--gold); color: var(--text); }
  .loc-dir-summary {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0;
    border-top: 1px solid #f0ece5;
    border-bottom: 1px solid #f0ece5;
    margin-bottom: 9px;
  }
  .loc-dir-time .big { font-size: 26px; font-weight: 700; color: #1a1a1a; }
  .loc-dir-time .unit { font-size: 11px; color: #aaa; margin-left: 1px; }
  .loc-dir-meta { flex: 1; }
  .loc-dir-dist { font-size: 12px; font-weight: 600; color: #1a1a1a; }
  .loc-dir-via { font-size: 10px; color: #bbb; margin-top: 1px; }
  .loc-dir-steps { list-style: none; padding: 0; margin: 0; }
  .loc-dir-step {
    display: flex; gap: 8px;
    font-size: 11px; color: #666;
    padding: 3px 0;
    border-bottom: 1px solid #f5f2ec;
  }
  .loc-dir-step:last-child { border-bottom: none; }
  .step-time { color: #bbb; flex-shrink: 0; width: 30px; }

  2b. Responsive

  @media (max-width: 1024px) {
    /* .loc-shell-wrap { padding: 0 24px; } */
  }
  @media (max-width: 880px) {
    /* .loc-shell-wrap { padding: 0 16px; } */
    .loc-shell {
      grid-template-columns: 1fr;
      grid-template-rows: 320px 400px;   /* stack: map on top, sidebar below */
      height: auto;
      border-radius: 12px;
    }
    .loc-sidebar { order: 2; }
    .loc-map-pane { order: 1; }
  }

  2c. Monochrome + dark-glass overrides (always applied)

  /* ── Location Map: Monochrome overrides ── */
  .loc-chip { border-color: #ddd !important; color: #888 !important; background: #fff !important; }
  .loc-chip.active { border-color: var(--gold) !important; background: var(--gold) !important; color: var(--text)
  !important; }
  .loc-chip-dot { display: none !important; }              /* remove coloured dots from chips */
  .loc-cat-icon { background: #888 !important; }
  .loc-cat-label { color: #444 !important; }
  .loc-cat-count { color: #bbb !important; }
  .loc-poi-row.active { background: #fffce8 !important; box-shadow: inset 2px 0 0 var(--gold) !important; }
  .loc-poi-row.active .loc-poi-name { color: var(--text) !important; }
  .loc-poi-row.active .loc-poi-dist { color: #888 !important; }
  .loc-legend-pin { background: var(--gold) !important; }
  .loc-hover-card { border-left-color: var(--gold) !important; }
  .loc-dir-pin { background: var(--gold) !important; }
  .loc-mode-btn.active { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--text)
  !important; }

  /* ═══ LOCATION MAP — DARK MODE + GLASSMORPHISM ═══ */
  .loc-map-section {
    background: #0d0d0d url('../assets/images/home/locationbg1.jpg') center center / cover no-repeat !important;
    position: relative;
  }
  .loc-map-section .section-label { color: rgba(255,255,255,0.75) !important; border-color: rgba(255,255,255,0.25); }
  .loc-map-section .section-heading { color: #ffffff !important; }
  .loc-map-section .section-heading em { color: #FFCC02 !important; font-style: italic; }
  .loc-map-sub { color: rgba(255,255,255,0.75) !important; }

  .loc-shell { border-color: rgba(255,255,255,0.07) !important; box-shadow: 0 12px 60px rgba(0,0,0,0.55) !important; }

  /* Sidebar: glass panel */
  .loc-sidebar {
    background: rgba(14,14,14,0.7) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-right: 1px solid rgba(255,255,255,0.07) !important;
  }
  .loc-search { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .loc-search input {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #e0e0e0 !important;
    backdrop-filter: blur(4px);
  }
  .loc-search input::placeholder { color: #444 !important; }
  .loc-search input:focus { border-color: #FFCC02 !important; }
  .loc-search-icon { color: #444 !important; }

  .loc-chips { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .loc-chip { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; color:
  #666 !important; }
  .loc-chip:hover { background: rgba(255,255,255,0.09) !important; color: #aaa !important; }
  .loc-chip.active { background: #FFCC02 !important; border-color: #FFCC02 !important; color: #0d0d0d !important; }

  .loc-cat-head:hover { background: rgba(255,255,255,0.04) !important; }
  .loc-cat-icon { background: rgba(255,255,255,0.1) !important; }
  .loc-cat-label { color: #aaa !important; font-weight: 500 !important; }
  .loc-cat-count { color: #444 !important; }
  .loc-cat-chev { color: #444 !important; }
  .loc-cat-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1) !important; }

  .loc-poi-row:hover,
  .loc-poi-row.hover { background: rgba(255,255,255,0.04) !important; }
  .loc-poi-row.active { background: rgba(255,204,2,0.06) !important; box-shadow: inset 2px 0 0 #FFCC02 !important; }
  .loc-poi-name { color: #777 !important; }
  .loc-poi-row.active .loc-poi-name { color: #f0f0f0 !important; font-weight: 600 !important; }
  .loc-poi-dist { color: #3a3a3a !important; }
  .loc-poi-row.active .loc-poi-dist { color: #FFCC02 !important; }

  /* Map controls / theme / legend — glass */
  .loc-controls {
    background: rgba(12,12,12,0.65) !important;
    backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  }
  .loc-ctrl-btn { color: #777 !important; }
  .loc-ctrl-btn:hover { background: rgba(255,255,255,0.07) !important; color: #e0e0e0 !important; }
  .loc-ctrl-div { background: rgba(255,255,255,0.07) !important; }
  .loc-theme-tog {
    background: rgba(12,12,12,0.65) !important;
    backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
  }
  .loc-legend {
    background: rgba(12,12,12,0.65) !important;
    backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  }
  .loc-legend-pin { background: #FFCC02 !important; box-shadow: 0 0 0 3px rgba(255,204,2,0.15) !important; }
  .loc-legend-name { color: #e0e0e0 !important; }
  .loc-legend-sub  { color: #555 !important; }

  /* Hover card — glass */
  .loc-hover-card {
    background: rgba(12,12,12,0.75) !important;
    backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    border-left: 3px solid #FFCC02 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  }
  .loc-hc-cat { color: #555 !important; }
  .loc-hc-name { color: #e0e0e0 !important; }
  .loc-hc-meta { color: #555 !important; }
  .loc-hc-meta .dot { color: #333 !important; }

  /* Directions card — glass */
  .loc-dir-card {
    background: rgba(10,10,10,0.80) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55) !important;
  }
  .loc-dir-row   { color: #888 !important; }
  .loc-dir-line  { background: rgba(255,255,255,0.08) !important; }
  .loc-dir-pin   { background: #FFCC02 !important; }
  .loc-dir-close { color: #444 !important; }
  .loc-dir-close:hover { color: #bbb !important; }
  .loc-mode-btn { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important;
  color: #666 !important; }
  .loc-mode-btn:hover { background: rgba(255,255,255,0.08) !important; color: #aaa !important; }
  .loc-mode-btn.active { background: #FFCC02 !important; border-color: #FFCC02 !important; color: #0d0d0d !important; }
  .loc-dir-summary { border-color: rgba(255,255,255,0.07) !important; }
  .loc-dir-time .big  { color: #e0e0e0 !important; }
  .loc-dir-time .unit { color: #444 !important; }
  .loc-dir-dist { color: #e0e0e0 !important; }
  .loc-dir-via  { color: #444 !important; }
  .loc-dir-step { color: #555 !important; border-bottom-color: rgba(255,255,255,0.05) !important; }
  .step-time    { color: #3a3a3a !important; }

  /* Hide theme toggle — dark only */
  .loc-theme-tog { display: none !important; }