/* ==========================================================
   FBMC — Header & Navigation
   Used by: partials/header.php (every page)
========================================================== */
  /* ===== HEADER ===== */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,0.12);
  }
  header .container-1440{
    min-height:88px;
  }
  .mobile-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:32px;
    background:none;
    border:none;
    padding:0;
    cursor:pointer;
    flex-shrink:0;
  }
  @media(max-width:991px){
    .mobile-toggle{ display:flex; }
  }
  .mobile-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:var(--white);
    border-radius:2px;
    transition:transform 0.25s ease, opacity 0.25s ease;
  }
  .mobile-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2){ opacity:0; }
  .mobile-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .mobile-nav{
    display:none;
    flex-direction:column;
    background:#000;
    padding:8px 24px 20px;
  }
  .mobile-nav.open{ display:flex; }
  .mobile-nav a{
    color:var(--white);
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav-contact{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:16px;
  }
  .logo{
    min-width:0;
    font-size:22px;
    font-weight:700;
    letter-spacing:-0.5px;
    color:var(--white);
  }
  .logo img{
    display:block;
    width:auto;
    height:clamp(36px, 5vw, 55px);
    max-width:100%;
    object-fit:contain;
  }
  .logo svg{ width:22px; height:22px; }
  .logo-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--ink);
    border-radius:8px;
    padding:6px 8px;
    line-height:0;
  }
  .logo-badge img{
    height:38px;
    width:auto;
    display:block;
  }
  .brand-text{
    font-family:'Google Sans',sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:1px;
    color:var(--gold);
    text-transform:uppercase;
  }
  .brand-sub{
    display:block;
    font-size:10px;
    font-weight:500;
    letter-spacing:2px;
    color:rgba(255,255,255,0.7);
    text-transform:uppercase;
    margin-top:-2px;
  }

  nav a{
    text-decoration:none;
    color:var(--white);
    font-size:15px;
    font-weight:500;
    opacity:0.85;
    margin:0 18px;
  }
  nav a:hover{ opacity:1; color:var(--gold); }
  nav a.active{ opacity:1; color:var(--gold); }
  .mobile-nav a.active{ color:var(--gold); }
  .header-right-group{
    gap:36px;
  }
  .header-right-group nav{
    margin-right:0;
  }
  .icon-circle{
    width:32px;
    height:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    border:1px solid rgba(255,255,255,0.25);
    flex-shrink:0;
  }
  .icon-circle.whatsapp{
    background:#25D366;
    border:none;
    color:var(--white);
  }
  .header-phone{
    color:var(--white);
    font-weight:600;
    font-size:14px;
    white-space:nowrap;
  }

  .btn-outline-cream{
    background:var(--cream);
    color:var(--ink);
    border:none;
    font-weight:600;
    font-size:14px;
    padding:12px 22px;
    border-radius:6px;
  }
  .btn-dark-custom{
       background: var(--ink);
    color: white;
    border: 0px solid var(--gold);
    font-weight: 300;
    font-size: 18px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
  }
  .btn-dark-custom:hover{ color:var(--ink); background:var(--gold); opacity:1; }

