/* =====================================================
   FlyUp DM – Active Menu Style (FINAL)
   - ONLY exact active link (.flyup-active)
   - Dropdown parents NEVER get active look
   ===================================================== */

@media (min-width:1025px){

  /* Safety: dropdown parents always flat */
  .flyup-dm .flyup-dm-item.has-children > a{
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .flyup-dm .flyup-dm-item.has-children > a::after{
    content: none !important;
  }

  /* ONLY exact active page (set by JS) */
  .flyup-dm .flyup-dm-nav a.flyup-active{
    background: linear-gradient(180deg,#0b3d91,#0a2f73) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      0 8px 16px rgba(0,0,0,.30) !important;
    transform: translateY(-1px);
    position: relative;
    z-index: 0;
  }

  /* Optional subtle underline */
  .flyup-dm .flyup-dm-nav a.flyup-active::after{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:7px;
    height:2px;
    border-radius:999px;
    background: rgba(255,255,255,.85);
  }
}
