
<div class="be-langfab" id="beLangFab">

  <!-- Menu comes before the toggle in source order so it can be
       positioned with bottom:100% off the toggle without extra
       JS math — it just sits directly above it. -->
  <ul class="be-langfab__menu" id="beLangFabMenu" hidden>
          <li>
        <a class="be-langfab__option is-active"
           href=""
            aria-current="true">
          <span class="be-langfab__flag" aria-hidden="true"><img src="" alt=""></span>
          <span class="be-langfab__name">EN</span>
        </a>
      </li>
          <li>
        <a class="be-langfab__option is-active"
           href=""
            aria-current="true">
          <span class="be-langfab__flag" aria-hidden="true"><img src="" alt=""></span>
          <span class="be-langfab__name">FR</span>
        </a>
      </li>
      </ul>

  <button class="be-langfab__toggle" id="beLangFabToggle" type="button"
          aria-haspopup="true" aria-expanded="false" aria-controls="beLangFabMenu">
    <span class="be-langfab__flag" aria-hidden="true"><img src="" alt=""></span>
    <span class="be-langfab__code"></span>
    <svg class="be-langfab__chev" viewBox="0 0 10 6" fill="none" aria-hidden="true">
      <path d="M1 5l4-4 4 4" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
  </button>
</div>

<style>
/* ══════════════════════════════════
   Floating language switcher — bottom-left, self-contained.
   Own color variables (doesn't depend on the header's .hdr scope
   being present/loaded), so it works standalone on any page.
══════════════════════════════════ */
.be-langfab{
  --copper:#ab745f;
  --copper-bright:#d4a892;
  --black:#473c38;
  --dark2:#1e1812;
  --t:.22s cubic-bezier(.4,0,.2,1);

  position:fixed;
  left:20px;
  bottom:20px;
  z-index:8900; /* below the WhatsApp bubble's own z-index, opposite corner so no overlap */
  font-family:'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
}
.be-langfab *{box-sizing:border-box}

.be-langfab__toggle{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:var(--black);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(20,15,11,.35);
  transition:background var(--t),border-color var(--t);
}
.be-langfab__toggle:hover{
  background:var(--dark2);
  border-color:var(--copper);
}
.be-langfab__toggle:focus-visible{
  outline:2px solid var(--copper-bright);
  outline-offset:2px;
}

.be-langfab__flag{
  width:18px;
  height:13px;
  border-radius:2px;
  overflow:hidden;
  display:block;
  flex-shrink:0;
  line-height:0;
}
.be-langfab__flag svg,
.be-langfab__flag img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.be-langfab__chev{
  width:9px;
  height:9px;
  stroke:currentColor;
  transition:transform var(--t);
  flex-shrink:0;
}
.be-langfab__toggle[aria-expanded="true"] .be-langfab__chev{
  transform:rotate(180deg);
}

/* Opens upward — the widget sits at the bottom of the viewport,
   so there's no room to open a menu downward. */
.be-langfab__menu{
  position:absolute;
  left:0;
  bottom:calc(100% + 10px);
  min-width:170px;
  margin:0;
  padding:6px;
  list-style:none;
  background:var(--black);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  box-shadow:0 16px 40px rgba(20,15,11,.45);
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity var(--t),transform var(--t);
}
.be-langfab__menu.is-open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.be-langfab__option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 10px;
  border-radius:8px;
  color:rgba(255,255,255,.7);
  font-size:12px;
  font-weight:600;
  text-decoration:none;
  transition:background var(--t),color var(--t);
}
.be-langfab__option:hover{
  background:var(--dark2);
  color:#fff;
}
.be-langfab__option.is-active{
  color:var(--copper-bright);
  background:var(--dark2);
}

@media (max-width:640px){
  .be-langfab{
    left:14px;
    bottom:14px;
  }
  .be-langfab__toggle{
    padding:9px 12px;
    font-size:11px;
  }
}

@media (prefers-reduced-motion:reduce){
  .be-langfab *{
    transition:none !important;
  }
}
</style>

<script>
(function(){
  const root = document.getElementById('beLangFab');
  if (!root || root.dataset.initialized === 'true') return;
  root.dataset.initialized = 'true';

  const toggle = root.querySelector('#beLangFabToggle');
  const menu = root.querySelector('#beLangFabMenu');
  if (!toggle || !menu) return;

  function close(){
    menu.classList.remove('is-open');
    menu.hidden = true;
    toggle.setAttribute('aria-expanded', 'false');
  }

  function open(){
    menu.hidden = false;
    // wait a frame so the transition from the default (opacity:0)
    // state actually runs, instead of jumping straight to open
    requestAnimationFrame(() => menu.classList.add('is-open'));
    toggle.setAttribute('aria-expanded', 'true');
  }

  toggle.addEventListener('click', function (e) {
    e.stopPropagation();
    const isOpen = toggle.getAttribute('aria-expanded') === 'true';
    if (isOpen) close(); else open();
  });

  document.addEventListener('click', function (e) {
    if (!root.contains(e.target)) close();
  });

  document.addEventListener('keydown', function (e) {
    if (e.key === 'Escape') {
      close();
      toggle.focus();
    }
  });
})();
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="https://baliexception.com/sitemaps_xsl.xsl"?>
<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://baliexception.com/post-sitemap1.xml</loc>
<lastmod>2026-08-26T22:48:27+08:00</lastmod>
</sitemap>
<sitemap>
<loc>https://baliexception.com/page-sitemap1.xml</loc>
<lastmod>2026-07-28T22:31:34+08:00</lastmod>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property-sitemap1.xml</loc>
<lastmod>2026-08-31T16:11:57+08:00</lastmod>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property-sitemap2.xml</loc>
<lastmod>2026-05-13T11:13:54+08:00</lastmod>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property-sitemap3.xml</loc>
<lastmod>2025-05-20T11:02:16+08:00</lastmod>
</sitemap>
<sitemap>
<loc>https://baliexception.com/category-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property_area-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property_labels-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property_feature-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://baliexception.com/property_type-sitemap1.xml</loc>
</sitemap>
</sitemapindex>