.navbar_navbar__MdbJT{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar_container__XwQyZ{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar_brand__LHnNr{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar_logoWrapper__zq85k{
  position: relative;
  width: 190px;
  height: 60px;
  flex-shrink: 0;
}

.navbar_logoImage__u14iD{
  object-fit: contain;
}

/* Desktop menu */
.navbar_menu__xhxXB{
  display: flex;
  gap: 24px;
  margin: 0 auto;
  align-items: center;
}

.navbar_menu__xhxXB a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.navbar_menu__xhxXB a:hover{
  color: rgba(60, 130, 255, 0.95);
}

/* Desktop CTA */
.navbar_button__UtyqC{
  background: #1e88e5;
  padding: 9px 18px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 9700;
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 140ms ease, background-color 0.2s ease;
}

.navbar_button__UtyqC:hover{
  
   background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

/* Mobile hamburger button */
.navbar_burger__wcGVF{
  display: none; /* only on mobile */
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
}

.navbar_burgerLine__oHfPJ{
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.navbar_burgerLine__oHfPJ:nth-child(1){ top: 15px; }
.navbar_burgerLine__oHfPJ:nth-child(2){ top: 21px; }
.navbar_burgerLine__oHfPJ:nth-child(3){ top: 27px; }

/* X animation */
.navbar_line1Open__ZG79o{ top: 21px !important; transform: rotate(45deg); }
.navbar_line2Open__asVRl{ opacity: 0; }
.navbar_line3Open__KGWoM{ top: 21px !important; transform: rotate(-45deg); }

/* Mobile overlay + panel */
.navbar_backdrop__qhI5L{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.997);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 98;
}

.navbar_backdropOpen___cojP{
  opacity: 1;
  pointer-events: auto;
}

.navbar_mobilePanel__cYCjz{
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% + 10px);
  border-radius: 18px;

  background: rgba(6, 9, 15, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);

  padding: 12px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 100;
}

.navbar_mobilePanelOpen__icFeN{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar_mobileLinks__C79w8{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.navbar_mobileLinks__C79w8 a{
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 850;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.navbar_mobileLinks__C79w8 a:hover{
  border-color: rgba(225,6,0,0.35);
  background: rgba(255, 255, 255, 0.06);
}

.navbar_mobileBook__cxVzm{
  display: block;
  margin-top: 10px;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 9700;
  color: white;
  background: #1e5ae5;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 140ms ease, background-color 0.2s ease;
}


.navbar_mobileBook__cxVzm:hover{
  background: #096fc8;
}

/* ===========================
   Responsive rules
   =========================== */
@media (max-width: 860px){
  .navbar_menu__xhxXB{
    display: none;
  }

  .navbar_button__UtyqC{
    display: none;
  }

  .navbar_burger__wcGVF{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar_container__XwQyZ{
    padding: 12px 14px;
  }

  .navbar_logoWrapper__zq85k{
    width: 120px;
    height: 38px;
  }
}

