/* YTR enterprise navigation — shared across public + booking pages */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.ytrE-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 88px;
  z-index: 100000;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(255,69,0,0.4);
  backdrop-filter: blur(14px);
  transition: height .3s ease;
}
.ytrE-nav.shrink { height: 64px; }
.ytrE-nav-inner {
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ytrE-logo { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.ytrE-logo img {
  height: 44px;
  transition: height .3s ease;
}
.ytrE-nav.shrink .ytrE-logo img { height: 34px; }
.ytrE-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ytrE-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.ytrE-links a {
  position: relative;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14.5px;
  white-space: nowrap;
}
.ytrE-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg,#ff4500,#ff7a18);
  transition: width .25s ease;
}
.ytrE-links a:hover::after { width: 100%; }
.ytrE-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ytrE-login {
  padding: 7px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
}
.ytrE-signup {
  padding: 7px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg,#ff4500,#ff7a18);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
}
.ytrE-burger {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
.ytrE-mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #0b0b0b;
  display: none;
}
.ytrE-mega.show { display: block; }
.ytrE-mega-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 32px;
}
.ytrE-mega h6 {
  margin: 0 0 12px;
  color: #ff7a18;
  font-size: 14px;
}
.ytrE-mega a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}
.ytrE-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88%, 380px);
  background: #050505;
  z-index: 200000;
  transform: translateX(-100%);
  transition: transform .35s ease;
  padding: 90px 22px 30px;
}
.ytrE-drawer.open { transform: translateX(0); }
.ytrE-drawer a {
  display: block;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1024px) {
  .ytrE-links, .ytrE-actions { display: none; }
  .ytrE-burger { display: block; }
}
