
  /* ===== Floating Menu Wrapper ===== */
  .floating-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
  }
  
  button#fmToggle {
    background: #aa8453 !important;
}
 
  /* ===== Icon Buttons (contact + social) ===== */
  .floating-menu .fm-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(15px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
 
  .floating-menu.open .fm-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
 
  /* stagger animation when opening */
  .floating-menu.open .fm-icon:nth-child(1) { transition-delay: 0.02s; }
  .floating-menu.open .fm-icon:nth-child(2) { transition-delay: 0.04s; }
  .floating-menu.open .fm-icon:nth-child(3) { transition-delay: 0.06s; }
  .floating-menu.open .fm-icon:nth-child(4) { transition-delay: 0.08s; }
  .floating-menu.open .fm-icon:nth-child(5) { transition-delay: 0.10s; }
  .floating-menu.open .fm-icon:nth-child(6) { transition-delay: 0.12s; }
  .floating-menu.open .fm-icon:nth-child(7) { transition-delay: 0.14s; }
 
  /* brand colors */
  .fm-whatsapp   { background: #25D366; }
  .fm-call       { background: #1976D2; }
 
  .fm-icon:hover {
    filter: brightness(0.92);
  }
 
  /* ===== Toggle (main) Button ===== */
  .fm-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #aa8453 !important;
    border: none;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, background 0.25s ease;
  }
 
  .fm-toggle svg {
    transition: transform 0.25s ease;
  }
 
  .floating-menu.open .fm-toggle svg {
    transform: rotate(135deg);
  }
 
  .fm-toggle:hover {
    transform: scale(1.05);
  }
 
  .fm-toggle:active {
    transform: scale(0.92);
  }
 
  /* toggle turns red + icon becomes a close (X) when menu is open */
  .floating-menu.open .fm-toggle {
    background: #aa8453;
  }
 
  /* ===== Optional text labels (desktop only) ===== */
  .fm-icon .fm-label {
    position: absolute;
    right: 58px;
    background: #222;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
 
  .fm-icon {
    position: relative;
  }
 
  .fm-icon:hover .fm-label {
    opacity: 1;
  }
 
  /* ===== Responsive breakpoints ===== */
 
  /* Tablet */
  @media (max-width: 768px) {
    .floating-menu {
      right: 16px;
      bottom: 16px;
      gap: 10px;
    }
    .fm-toggle {
      width: 52px;
      height: 52px;
      font-size: 22px;
    }
    .fm-icon {
      width: 44px;
      height: 44px;
      font-size: 18px;
    }
  }
 
  /* Mobile */
  @media (max-width: 480px) {
    .floating-menu {
      right: 12px;
      bottom: 12px;
      gap: 8px;
    }
    .fm-toggle {
      width: 48px;
      height: 48px;
      font-size: 20px;
    }
    .fm-icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
    /* labels only make sense with hover, hide on touch devices */
    .fm-icon .fm-label {
      display: none;
    }
  }
 
  /* ===== Demo page content (remove on real site) ===== */
  .demo-content {
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
  }