/* ==========================================================================
   ENHANCEROI MASTER NAVIGATION & MEGA MENU SYSTEM (DESKTOP & MOBILE)
   ========================================================================== */
/* ---------- HEADER (SOLID FIXED NAVBAR & MEGA MENU) ---------- */
  header{
    position:fixed;top:0;left:0;right:0;
    height:74px; /* Strict fixed height */
    background:#020B21 !important; /* Solid background at all times, never transparent */
    border-bottom:1px solid rgba(255,255,255,.09);
    box-shadow:0 4px 20px rgba(0,0,0,.45);
    z-index:99999; /* Master stacking layer */ /* Stays higher than all page content */
    display:flex;align-items:center;
    box-sizing:border-box;
    padding:0;margin:0;
    transition:box-shadow .25s var(--ease), border-color .25s var(--ease);
  }
  header.solid,
  header.has-open-menu{
    background:#020B21 !important;
    border-bottom-color:rgba(255,255,255,.14);
    box-shadow:0 8px 32px rgba(0,0,0,.7);
  }
  .header-row{
    width:100%;height:100%;
    position:relative;
    z-index:100002; /* Top header bar */ /* Always sits on top of mega menus and page content */
    display:flex;align-items:center;justify-content:space-between;gap:20px;
    box-sizing:border-box;
  }
  .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
  .logo-mark, .logo-img { height: 24px !important; max-height: 24px !important; width: auto !important; display: block; object-fit: contain; }
  .logo-word{
    font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20px;letter-spacing:.02em;line-height:1;
    white-space:nowrap;
  }
  .logo-word .roi{color:var(--red);}
  .logo-light .logo-word{color:var(--navy);}
  .logo-dark .logo-word{color:var(--white);}

  .nav-center{display:flex;align-items:center;gap:clamp(6px, 1.2vw, 16px);flex:1;justify-content:center;min-width:0;}
  .nav-item{position:relative;}
  .nav-link{
    display:inline-flex;align-items:center;gap:6px;font-size:14.5px;font-weight:500;color:var(--off-white);
    white-space:nowrap;padding:8px 12px;border-radius:999px;cursor:pointer;
    transition:color .2s var(--ease), background .2s var(--ease);
    border:none;background:transparent;
  }
  .nav-link:hover,
  .nav-item.open .nav-link{
    color:#fff;
    background:rgba(255,255,255,.08);
  }
  /* Ciklum style dot indicator */
  .nav-dot{
    width:5px;height:5px;border-radius:50%;background:var(--red);
    opacity:0;transform:scale(0.3);
    transition:opacity .2s var(--ease), transform .2s var(--ease);
    display:inline-block;
  }
  .nav-item.open .nav-dot,
  .nav-item:hover .nav-dot{
    opacity:1;
    transform:scale(1);
  }
  .nav-link svg{width:10px;height:10px;transition:transform .25s var(--ease);flex-shrink:0;opacity:.8;}
  .nav-item.open .nav-link svg{transform:rotate(180deg);color:var(--red);opacity:1;}
  .nav-right { display:flex; align-items:center; gap:16px; flex-shrink:0; z-index:100003; }
  .header-cta{
    display:inline-flex;align-items:center;justify-content:center;
    height:42px;padding:0 20px;font-size:13.5px;font-weight:600;white-space:nowrap;
    border-radius:999px;flex-shrink:0;box-shadow:0 2px 12px rgba(199,30,10,.35);
  }
  .burger{display:none;width:38px;height:38px;flex-shrink:0;border:none;background:rgba(255,255,255,.06);border-radius:8px;cursor:pointer;padding:8px;}
  .burger span{display:block;width:22px;height:2px;background:#fff;margin:4px auto;border-radius:2px;transition:transform .25s var(--ease);}

  /* mega menu (OPENS DIRECTLY BELOW NAVBAR LIKE CIKLUM) */
  .mega{
    position:absolute;
    top:100%; /* ALWAYS OPENS DIRECTLY BELOW THE 74px NAVBAR */
    left:0;right:0;width:100%;
    background:#040B1E !important; /* 100% solid deep navy */
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.14);
    box-shadow:0 36px 70px -12px rgba(0,0,0,.9);
    opacity:0;visibility:hidden;transform:translateY(-8px);
    transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    padding:38px 0 44px;
    z-index:100001; /* Mega dropdown sits above page, below header bar */ /* underneath header-row (2010) but above backdrop (1995) and hero */
    pointer-events:none;
    max-height:calc(100vh - 74px);
    overflow-y:auto;
  }
  .mega.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
  }
  .mega-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr)) minmax(290px,1.35fr);gap:28px;}
  .mega-col h5{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:16px;font-weight:700;font-family:'Bricolage Grotesque',sans-serif;}
  .mega-col ul{display:flex;flex-direction:column;gap:16px;}
  .mega-link-title{font-size:15px;font-weight:600;color:#fff;display:block;margin-bottom:3px;transition:color .2s;}
  .mega-col a:hover .mega-link-title{color:var(--red);}
  .mega-link-sub{font-size:12.5px;color:var(--gray);line-height:1.4;display:block;}
  /* ---------- MEGA CTA PROMO CARD ---------- */
  .mega-promo.mega-cta-card{
    background:linear-gradient(165deg, rgba(199,30,10,.18) 0%, rgba(10,18,42,.92) 40%, rgba(3,10,28,.98) 100%);
    border:1px solid rgba(199,30,10,.35);
    border-radius:18px;
    padding:24px 20px;
    display:flex;
    flex-direction:column;
    gap:16px;
    position:relative;
    overflow:hidden;
    box-shadow:0 16px 36px -10px rgba(0,0,0,.6), 0 0 40px -15px rgba(199,30,10,.25) inset;
    transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
  }
  .mega-promo.mega-cta-card::before{
    content:"";position:absolute;top:-40px;right:-40px;width:120px;height:120px;
    background:radial-gradient(circle, rgba(199,30,10,.4) 0%, rgba(199,30,10,0) 70%);
    border-radius:50%;pointer-events:none;z-index:0;
  }
  .mega-promo.mega-cta-card:hover{
    border-color:rgba(199,30,10,.55);
    box-shadow:0 20px 44px -8px rgba(0,0,0,.7), 0 0 50px -10px rgba(199,30,10,.35) inset;
  }
  .mega-cta-top{position:relative;z-index:1;}
  .mega-cta-title{
    font-family:'Bricolage Grotesque',sans-serif;
    font-size:17.5px;
    font-weight:700;
    color:#fff;
    line-height:1.25;
    margin-bottom:7px;
  }
  .mega-cta-desc{
    font-size:12.5px;
    color:var(--gray);
    line-height:1.45;
  }

  /* Trust line with avatars / badge */
  .mega-cta-trust{
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:1;
  }
  .mega-cta-avatars{
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .mega-cta-avatars .avatar{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;
    max-width:32px !important;
    max-height:32px !important;
    aspect-ratio:1 / 1 !important;
    border-radius:50% !important;
    object-fit:cover !important;
    object-position:center !important;
    border:2px solid #08112b !important;
    margin-left:-9px;
    display:block !important;
    flex-shrink:0 !important;
  }
  .mega-cta-avatars .avatar:first-child{margin-left:0;}
  .mega-trust-text{
    font-size:11.5px;
    color:var(--off-white);
    opacity:.9;
    line-height:1.3;
  }
  .mega-trust-text strong{color:#fff;font-weight:700;}
  .mega-trust-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    padding:4px 10px;
    border-radius:999px;
    font-size:11.5px;
    color:var(--off-white);
    font-weight:500;
  }
  .trust-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--red);
    box-shadow:0 0 8px var(--red);
  }

  /* Input + Button Form */
  .mega-cta-form{
    display:flex;
    flex-direction:column;
    gap:10px;
    position:relative;
    z-index:1;
  }
  .mega-input-wrap{
    position:relative;
    width:100%;
  }
  .mega-input-icon{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    width:16px;
    height:16px;
    color:rgba(154,160,172,.85);
    pointer-events:none;
    flex-shrink:0;
  }
  .mega-input{
    width:100%;
    height:44px;
    padding:0 16px 0 40px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    color:#fff;
    font-size:12px;
    font-family:'Inter',sans-serif;
    letter-spacing:-0.01em;
    outline:none;
    box-sizing:border-box;
    transition:border-color .2s, background .2s, box-shadow .2s;
  }
  .mega-input::placeholder{color:rgba(154,160,172,.75);}
  .mega-input:focus{
    background:rgba(255,255,255,.12);
    border-color:var(--red);
    box-shadow:0 0 0 3px rgba(199,30,10,.25);
  }
  .mega-cta-btn{
    width:100%;
    min-height:44px;
    box-sizing:border-box;
    padding:8px 22px;
    background:linear-gradient(135deg, #C71E0A 0%, #E2340F 100%);
    color:#fff;
    border:none;
    border-radius:999px;
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 4px 18px rgba(199,30,10,.45);
    transition:transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s;
    position:relative;
    overflow:hidden;
  }
  .mega-cta-btn span{
    display:inline-block;
    line-height:1.2;
    text-align:center;
  }
  .mega-cta-btn svg{
    width:14px;
    height:14px;
    flex-shrink:0;
    transition:transform .2s var(--ease);
    margin-left:2px;
  }
  .mega-cta-btn:hover{
    transform:scale(1.025);
    box-shadow:0 6px 24px rgba(226,52,15,.65), 0 0 18px rgba(199,30,10,.5);
    filter:brightness(1.06);
  }
  .mega-cta-btn:hover svg{
    transform:translateX(2px);
  }

  /* Proof Stat Box */
  .mega-proof-stat{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    padding:9px 12px;
    position:relative;
    z-index:1;
  }
  .mega-proof-icon{
    width:28px;
    height:28px;
    border-radius:8px;
    background:rgba(199,30,10,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .mega-proof-icon svg{width:16px;height:16px;}
  .mega-proof-content{display:flex;align-items:baseline;gap:6px;}
  .mega-proof-val{
    font-family:'Bricolage Grotesque',sans-serif;
    font-size:14px;
    font-weight:700;
    color:#fff;
  }
  .mega-proof-label{
    font-size:11.5px;
    color:var(--gray);
  }

  /* Bottom Sub Link */
  .mega-cta-bottom{
    position:relative;
    z-index:1;
    padding-top:4px;
    border-top:1px solid rgba(255,255,255,.06);
  }
  .mega-more-link{
    font-size:12.5px;
    font-weight:600;
    color:var(--red);
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:color .2s;
  }
  .mega-more-link svg{width:12px;height:9px;transition:transform .2s;}
  .mega-more-link:hover{color:#fff;}
  .mega-more-link:hover svg{transform:translateX(3px);}

  /* Background overlay backdrop */
  .mega-backdrop{
    position:fixed;inset:0;
    background:rgba(2,11,33,.75);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
    z-index:99998; /* Backdrop overlay */
    opacity:0;visibility:hidden;
    transition:opacity .28s var(--ease), visibility .28s;
    pointer-events:none;
  }
  .mega-backdrop.open{
    opacity:1;visibility:visible;pointer-events:auto;
  }

  

/* ==================== BULLETPROOF MOBILE HEADER & DRAWER SYSTEM ==================== */
  @media (max-width: 1100px) {
    header#site-header {
      height: 68px !important;
    }
    .header-row {
      height: 68px !important;
      padding: 0 18px !important;
      justify-content: space-between !important;
      gap: 12px !important;
    }
    .logo-mark, .logo-img { height: 24px !important; max-height: 24px !important; width: auto !important; display: block; object-fit: contain; }
    .header-cta {
      padding: 0 14px !important;
      height: 36px !important;
      font-size: 12px !important;
    }
    .burger {
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      z-index: 100005;
      gap: 5px;
    }
    .burger span {
      display: block;
      width: 20px;
      height: 2px;
      background: #FFFFFF;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
      margin: 0;
    }
    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.open span:nth-child(2) {
      opacity: 0;
    }
    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* STRICTLY HIDE DESKTOP MEGA MENUS ON MOBILE */
    .mega {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
      position: absolute !important;
      height: 0 !important;
      width: 0 !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
    }

    /* MOBILE SLIDING DRAWER */
    .nav-center {
      display: flex !important;
      position: fixed !important;
      top: 68px !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      height: calc(100vh - 68px) !important;
      background: #04091A !important;
      border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
      flex-direction: column !important;
      align-items: stretch !important;
      justify-content: flex-start !important;
      padding: 24px 20px 48px !important;
      gap: 10px !important;
      z-index: 100000 !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s;
    }
    .nav-center.mobile-open {
      transform: translateY(0) !important;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .nav-item {
      width: 100%;
      position: relative;
    }
    .nav-link {
      width: 100%;
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      font-size: 16px !important;
      font-weight: 600 !important;
      color: #F1F5F9 !important;
      padding: 14px 16px !important;
      background: rgba(255, 255, 255, 0.04) !important;
      border: 1px solid rgba(255, 255, 255, 0.07) !important;
      border-radius: 12px !important;
      text-align: left;
      text-decoration: none;
    }
    .nav-link:hover, .nav-link.active {
      background: rgba(234, 59, 36, 0.12) !important;
      border-color: rgba(234, 59, 36, 0.3) !impor

/* ==================== BULLETPROOF ZERO-CUT MOBILE HEADER & BURGER ==================== */
header, header#site-header, .header {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100vw !important;
}

@media (max-width: 1100px) {
  header, header#site-header, .header {
    height: 68px !important;
    padding: 0 16px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
  }

  .header-row, .nav-wrap, header .wrap, .header .wrap {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .logo {
    flex-shrink: 0 !important;
    margin-right: auto !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  .nav-right .btn-outline,
  .nav-right .btn-secondary,
  .nav-right .header-cta-secondary {
    display: none !important;
  }

  .burger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    margin: 0 0 0 auto !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    z-index: 100005 !important;
  }

  .burger span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #FFFFFF !important;
    border-radius: 2px !important;
    margin: 2.5px 0 !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }
}

@media (max-width: 640px) {
  header, header#site-header, .header {
    padding: 0 16px !important;
  }

  .nav-right > a.btn,
  .nav-right > a.header-cta,
  .nav-right > a.btn-primary {
    display: none !important;
  }

  .burger {
    margin-left: 0 !important;
  }
}


/* ==================== FLOATING WHATSAPP WIDGET STYLES ==================== */
.enh-wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.enh-wa-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25D366, #1EBE5B);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  outline: none;
}

.enh-wa-trigger:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 6px 14px rgba(0, 0, 0, 0.25);
}

.enh-wa-icon-main {
  width: 32px;
  height: 32px;
}

.enh-wa-badge-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: #10B981;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
}

.enh-wa-popup {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 310px;
  background: #0B1730;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(2, 6, 20, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.28s;
  pointer-events: none;
}

.enh-wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.enh-wa-popup-header {
  background: linear-gradient(135deg, #101c3a, #0B1730);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.enh-wa-popup-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enh-wa-popup-status-dot {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  flex-shrink: 0;
}

.enh-wa-popup-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.enh-wa-popup-sub {
  font-size: 11.5px;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
}

.enh-wa-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #94A3B8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
}

.enh-wa-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.enh-wa-countries-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enh-wa-country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.enh-wa-country-item:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateX(3px);
}

.enh-wa-flag {
  font-size: 20px;
  line-height: 1;
}

.enh-wa-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.enh-wa-country-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.enh-wa-phone-val {
  font-size: 11.5px;
  color: #25D366;
  font-weight: 600;
}

.enh-wa-arrow-icon {
  width: 14px;
  height: 14px;
  color: #64748B;
  transition: transform 0.2s ease, color 0.2s ease;
}

.enh-wa-country-item:hover .enh-wa-arrow-icon {
  color: #25D366;
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .enh-wa-widget {
    bottom: 18px;
    right: 18px;
  }
  .enh-wa-trigger {
    width: 54px;
    height: 54px;
  }
  .enh-wa-icon-main {
    width: 28px;
    height: 28px;
  }
  .enh-wa-popup {
    width: calc(100vw - 36px);
    right: 0;
    bottom: 66px;
  }
}
