/* RE/MAX Design — Navbar 2025 */
#header { display: none; }

#rx_nav {
  background: #0B1F4B;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.rx_nav_left { display: flex; align-items: center; gap: 32px; }
.rx_nav_logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.rx_nav_badge {
  width: 40px; height: 40px;
  background: #D91B1B;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rx_nav_logo_text {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.2px;
}
.rx_nav_logo_text em {
  font-style: normal; font-weight: 300;
  color: rgba(255,255,255,.5); margin-left: 3px; font-size: 16px;
}
.rx_nav_tabs { display: flex; gap: 4px; }
.rx_nav_tab {
  padding: 8px 18px; border-radius: 9px;
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.6); text-decoration: none; transition: all .15s;
}
.rx_nav_tab:hover { color: #fff; background: rgba(255,255,255,.08); }
.rx_nav_tab.active { color: #fff; background: rgba(255,255,255,.12); font-weight: 500; }
.rx_nav_right { display: flex; align-items: center; gap: 14px; }
.rx_nav_user {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px; border-radius: 10px; cursor: pointer; transition: background .15s;
}
.rx_nav_user:hover { background: rgba(255,255,255,.08); }
.rx_nav_avatar {
  width: 34px; height: 34px; background: #D91B1B; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: -.3px;
}
.rx_nav_username { font-size: 15px; color: rgba(255,255,255,.85); font-weight: 500; }
.rx_nav_logout {
  color: rgba(255,255,255,.45); font-size: 22px;
  text-decoration: none; transition: color .15s; line-height: 1;
}
.rx_nav_logout:hover { color: #D91B1B; }
.rx_nav_link { font-size: 15px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; }
.rx_nav_link:hover { color: #fff; }
.rx_nav_btn {
  background: #D91B1B; color: #fff; border-radius: 9px; padding: 9px 20px;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .15s;
}
.rx_nav_btn:hover { background: #F03535; }
