@media (min-width: 1200px) {
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
    left: -100vw !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
@media (max-width: 1199.98px) {
  .tr-header-height {
    display: none !important;
  }
}
/* Utility display classes for responsive toggle button */
.d-block {
  display: block !important;
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
/* mobile-header.css: Styles for mobile header and toggle button only */
.mobile-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  padding: 0.5rem 1rem;
}
.mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-logo img {
  height: 60px;
  width: auto;
}

/* Drawer styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: #034833;
  box-shadow: 2px 0 16px rgba(0,0,0,0.08);
  z-index: 13000;
  transition: left 0.3s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  left: 0;
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  z-index: 12999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.drawer-toggle-bar {
  width: 28px;
  height: 3px;
  background: #034833;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Drawer header (logo + close) */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
}
.mobile-drawer-header .mobile-logo img {
  height: 40px;
  width: auto;
}
.drawer-close-btn {
  color: #034833;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Drawer nav styles */
.mobile-drawer-nav {
  padding: 2rem 1.5rem 1rem 1.5rem;
  flex: 1 1 auto;
}
.mobile-drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-drawer-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.mobile-drawer-nav li:last-child {
  border-bottom: none;
}
.mobile-drawer-nav a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 1rem 0;
  transition: color 0.2s;
}
.mobile-drawer-nav a:hover {
  color: #FFD700;
}

/* Drawer bottom Book Now button */
.mobile-drawer .drawer-bottom {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}
.mobile-drawer .drawer-bottom .drawer-book-btn {
  display: inline-block;
  background: #FFD700;
  color: #034833;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer .drawer-bottom .drawer-book-btn:hover {
  background: #fff;
  color: #034833;
}

@media (min-width: 1200px) {
  .mobile-header { display: none !important; }
}


