/* ── Navbar positioning ───────────────────────────────────────────────────── */

/* Default: header sits in normal flow (scrolls away with the page) */
.main-header {
  position: relative;
  z-index: 1049;
}
.page-wrapper { padding-top: 0; }

/* Home page only: fixed header that overlays the hero banner */
.page--home .main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
}
.page--home .page-wrapper { padding-top: 0 !important; }

/* Hide the theme's sticky-clone element on non-home pages */
body:not(.page--home) .stricky-header {
  display: none !important;
}

/* ── Navbar background ────────────────────────────────────────────────────── */

/* Smooth colour transition (home page only needs it, but apply everywhere) */
.main-header .main-menu-wrapper,
.main-header nav.main-menu {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Non-home pages: always solid */
.main-header .main-menu-wrapper,
.main-header nav.main-menu {
  background: #19494A !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Home page at top: transparent (header floats over hero image) */
.page--home .main-header .main-menu-wrapper,
.page--home .main-header nav.main-menu,
.page--home .stricky-header,
.page--home .stricky-header.stricked-menu {
  background: transparent !important;
  box-shadow: none !important;
}

/* Home page after scrolling: base fallback (neumorphism.css overrides) */
.page--home .main-header.nav--scrolled .main-menu-wrapper,
.page--home .main-header.nav--scrolled nav.main-menu {
  background: #19494A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}


/* ══════════════════════════════════════════════════════════════
   NAVBAR — refined layout, links, auth, user menu, mobile
   ══════════════════════════════════════════════════════════════ */

.main-header .main-menu-wrapper {
  padding: 0 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1) !important;
}

.main-menu-wrapper__logo img {
  max-height: 46px;
  width: auto;
  display: block;
}

.main-menu-wrapper__logo {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Mobile / tablet: hide the teal <nav> only while the drawer is open (avoids clash with overlay) */
@media (max-width: 1199px) {
  body.mobile-nav-drawer-open .main-header > nav.main-menu.main-menu-two {
    display: none !important;
  }

  .mobile-nav__wrapper {
    z-index: 1100 !important;
  }

  .main-menu-wrapper-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    min-height: 64px !important;
    float: none !important;
    overflow: visible !important;
    padding-left: 6px !important;
  }

  /* Must be static so .main-menu-wrapper__main-menu positions vs .main-menu-wrapper-inner,
     not the narrow left column (tevily sets __left to position: relative otherwise). */
  .main-menu-wrapper__left {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: static !important;
    overflow: visible !important;
  }

  .main-menu-wrapper__logo {
    margin-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    flex: 0 0 auto;
    position: relative !important;
    z-index: 1 !important;
  }

  /* Hamburger pinned to the left of the header bar */
  .main-menu-wrapper__main-menu {
    position: absolute !important;
    left: 8px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    float: none !important;
    z-index: 20 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: auto !important;
    min-width: 44px !important;
    pointer-events: auto !important;
  }

  .main-menu .mobile-nav__toggler {
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 21 !important;
    color: #fff !important;
  }

  .main-menu-wrapper__right {
    float: none !important;
    flex: 0 0 auto;
    padding: 10px 0 !important;
  }

  .main-menu-two .main-menu__list > li,
  .stricky-header.main-menu-two .main-menu__list > li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Primary nav — pill hover, no theme underline */
.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
  padding-top: 25px !important;
  padding-bottom: 20px !important;
}

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
  margin-right: 6px !important;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 9px 16px !important;
  border-radius: 12px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.main-menu-two .main-menu__list > li > a::before,
.stricky-header.main-menu-two .main-menu__list > li > a::before {
  display: none !important;
}

.main-menu-two .main-menu__list > li:hover > a,
.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

.main-menu-two .main-menu__list > li > a i,
.stricky-header.main-menu-two .main-menu__list > li > a i {
  font-size: 1rem;
  opacity: 0.92;
  flex-shrink: 0;
}

.main-menu-two .main-menu-wrapper__right {
  padding: 22px 0 !important;
}

/* Guest: register + login */
.nav-auth {
  gap: 8px !important;
}

.nav-auth__link {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 9px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.nav-auth__link:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
}

.nav-auth__btn {
  color: #19494a !important;
  background: #f0f4f8 !important;
  padding: 9px 20px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none !important;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2), -1px -1px 4px rgba(255, 255, 255, 0.08) !important;
  transition: box-shadow 0.2s ease, opacity 0.2s ease !important;
}

.nav-auth__btn:hover {
  opacity: 0.95 !important;
  filter: none !important;
  color: #19494a !important;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.22) !important;
}

/* Logged-in user */
.nav-user__btn {
  border-radius: 12px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.nav-user__btn:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.nav-user__name {
  font-weight: 700 !important;
}

/* Dropdown — light neumorphic panel */
.nav-user__dropdown {
  background: #f0f4f8 !important;
  border: none !important;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12), -2px -2px 10px rgba(255, 255, 255, 0.9) !important;
  padding: 8px !important;
  border-radius: 16px !important;
}

.nav-user__dropdown li a {
  color: #2d3748 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.nav-user__dropdown li a:hover {
  background: rgba(25, 73, 74, 0.1) !important;
  color: #19494a !important;
}

.nav-user__divider {
  background: rgba(0, 0, 0, 0.08) !important;
}

.nav-user__logout,
.nav-user__logout:hover {
  color: #c53030 !important;
}

.nav-user__logout:hover {
  background: rgba(197, 48, 48, 0.08) !important;
}

/* Mobile menu toggle icon */
.mobile-nav__toggler {
  color: #fff !important;
  font-size: 22px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  transition: background 0.2s ease !important;
}

.mobile-nav__toggler:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

/* Mobile drawer — RTL: text aligned to the right */
.mobile-nav__content {
  background: linear-gradient(180deg, #1a4a4b 0%, #19494a 40%, #163e3f 100%) !important;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  direction: rtl;
  text-align: right;
}

.mobile-nav__content .logo-box {
  justify-content: center;
  direction: ltr;
}

.mobile-nav__close {
  color: rgba(255, 255, 255, 0.85) !important;
}

.mobile-nav__close:hover {
  color: #fff !important;
}

.mobile-nav__content .logo-box img {
  max-height: 44px;
  width: auto;
}

.mobile-nav__content .main-menu__list li a {
  border-radius: 10px;
  padding-right: 14px !important;
  padding-left: 14px !important;
  font-weight: 600 !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: right;
  direction: rtl;
}

.mobile-nav__content .main-menu__list li a > i {
  flex-shrink: 0;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

.mobile-nav__content .main-menu__list li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav__contact {
  direction: rtl;
  text-align: right;
}

.mobile-nav__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav__contact a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  direction: ltr;
  unicode-bidi: embed;
}

.mobile-nav__contact i {
  color: rgba(255, 255, 255, 0.65);
}

.mobile-nav__social {
  justify-content: center;
  gap: 16px;
}

.mobile-nav__social a {
  font-size: 28px !important;
  width: 52px;
  height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95) !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__social a + a {
  margin-right: 0 !important;
}

.mobile-nav__social a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

/* Drawer auth: shown in off-canvas for phone + tablet (≤1199px); hidden on desktop xl+ */
.mobile-nav__auth {
  display: none !important;
  padding: 20px 14px 14px;
  margin: 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__auth--guest {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mobile-nav__auth-outline,
.mobile-nav__auth-solid {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease !important;
}

.mobile-nav__auth-outline {
  color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.mobile-nav__auth-outline:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.mobile-nav__auth-solid {
  color: #19494a !important;
  background: #f0f4f8 !important;
  border: none !important;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.mobile-nav__auth-solid:hover {
  color: #19494a !important;
  opacity: 0.95;
}

.mobile-nav__auth--user {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.mobile-nav__auth-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: background 0.2s ease !important;
}

.mobile-nav__auth-link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.mobile-nav__auth-link--logout {
  color: #fecaca !important;
  margin-top: 4px;
}

.mobile-nav__auth-link--logout:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fff !important;
}

/* Below xl: auth only in mobile drawer (phone + tablet); never in top bar */
@media (max-width: 1199px) {
  .main-header .main-menu-wrapper__right .nav-auth,
  .main-header .main-menu-wrapper__right .nav-user {
    display: none !important;
  }

  .mobile-nav__auth {
    display: flex !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   Persian Jalali Datepicker — Neumorphic Teal Style
   ══════════════════════════════════════════════════════════════ */

/* Container */
#ui-datepicker-div {
  z-index: 1060 !important;
}
#ui-datepicker-div.ui-widget-content,
#ui-datepicker-div.ui-datepicker {
  background: #f0f4f8 !important;
  border: none !important;
  border-radius: 18px !important;
  box-shadow: 8px 8px 20px #c8cdd6, -8px -8px 20px #ffffff !important;
  padding: 14px !important;
  width: 290px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  color: #2d3748 !important;
}

/* Header row (month + year title + nav arrows) */
#ui-datepicker-div .ui-datepicker-header,
#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: linear-gradient(135deg, #19494a, #2a6566) !important;
  border: none !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 6px !important;
  margin-bottom: 10px !important;
  position: relative !important;
}

/* Month + year title */
#ui-datepicker-div .ui-datepicker-title {
  color: #fff !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}
#ui-datepicker-div .ui-datepicker-title select {
  background: rgba(255,255,255,.15) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: .8rem !important;
  padding: 2px 4px !important;
  cursor: pointer !important;
  margin: 2px;
}

/* Prev / Next arrows */
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  background: rgba(255,255,255,.18) !important;
  border: none !important;
  border-radius: 8px !important;
  width: 28px !important;
  height: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
#ui-datepicker-div .ui-datepicker-prev { right: 6px !important; left: auto !important; }
#ui-datepicker-div .ui-datepicker-next { left: 6px !important; right: auto !important; }
#ui-datepicker-div .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-next:hover {
  background: rgba(255,255,255,.35) !important;
  border: none !important;
  top: 50% !important;
}
#ui-datepicker-div .ui-datepicker-prev span,
#ui-datepicker-div .ui-datepicker-next span {
  color: #fff !important;
  font-size: .65rem !important;
}

/* Day-of-week headers */
#ui-datepicker-div .ui-datepicker-calendar th {
  color: #4B918E !important;
  font-size: .7rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 4px 2px !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: .4px !important;
}

/* Day cells */
#ui-datepicker-div .ui-datepicker-calendar td {
  padding: 2px !important;
  border: none !important;
}
#ui-datepicker-div .ui-datepicker-calendar td a,
#ui-datepicker-div .ui-datepicker-calendar td span {
  display: block !important;
  text-align: center !important;
  border-radius: 8px !important;
  padding: 5px 4px !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  color: #2d3748 !important;
  background: #f0f4f8 !important;
  border: none !important;
  transition: all .15s ease !important;
  background-image: none !important;
}
#ui-datepicker-div .ui-datepicker-calendar td a:hover {
  background: #e8f4f4 !important;
  color: #19494a !important;
  border: none !important;
  box-shadow: 3px 3px 7px #c8cdd6, -3px -3px 7px #ffffff !important;
}

/* Today */
#ui-datepicker-div .ui-state-highlight,
#ui-datepicker-div .ui-widget-content .ui-state-highlight {
  background: #e8f4f4 !important;
  color: #19494a !important;
  border: 1.5px solid #4B918E !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

/* Selected day */
#ui-datepicker-div .ui-state-active,
#ui-datepicker-div .ui-widget-content .ui-state-active,
#ui-datepicker-div .ui-datepicker-calendar .ui-state-default:active {
  background: linear-gradient(135deg, #19494a, #2a6566) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 3px 10px rgba(25,73,74,.35) !important;
}

/* Disabled days */
#ui-datepicker-div .ui-state-disabled span {
  color: #b0bec5 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Override hover for active */
#ui-datepicker-div .ui-datepicker-calendar .ui-state-default:hover,
#ui-datepicker-div .ui-datepicker-calendar .ui-state-default:active {
  background: #e8f4f4 !important;
  color: #19494a !important;
  border-color: transparent !important;
  box-shadow: 3px 3px 7px #c8cdd6, -3px -3px 7px #ffffff !important;
}

/* Put the close (X) button on the left in modal header */
.modal-header {
  flex-direction: row-reverse; /* swaps title and close button sides */
}

/* optional: remove default margin tricks if you used ms-0/me-auto */
.modal-header .btn-close {
  margin: 0; 
}

input#check_out.form-control.form-control-lg::placeholder{
  font-size: 14px !important;
}
input#check_out.form-control.form-control-lg::-webkit-input-placeholder{
  font-size: 14px !important;
}
input#check_out.form-control.form-control-lg::-moz-placeholder{
  font-size: 14px !important;
}
input#check_out.form-control.form-control-lg:-ms-input-placeholder{
  font-size: 14px !important;
}

input#check_in.form-control.form-control-lg::placeholder{
  font-size: 14px !important;
}
input#check_in.form-control.form-control-lg::-webkit-input-placeholder{
  font-size: 14px !important;
}
input#check_in.form-control.form-control-lg::-moz-placeholder{
  font-size: 14px !important;
}
input#check_in.form-control.form-control-lg:-ms-input-placeholder{
  font-size: 14px !important;
}

.btn-gold{
  background-color: #19494a !important;
  border-color: #19494a !important;
  color: #fff !important;
}

.btn-gold:hover,
.btn-gold:focus{
  background-color: #19494a !important;
  border-color: #19494a !important;
  color: #fff !important;
}

/* Generic: make any <i> act like a centered icon box */
i.bi, i[class^="bi-"], i[class*=" bi-"],
.feature-icon i,
.room-rule-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Feature icon already has a box; just ensure the <i> is centered inside */
.feature-icon { 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rules: give the icon a fixed box so it's always centered */
.room-rule-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.person-btn {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.person-btn i {
  font-size: 1.25rem;   /* increase this (e.g. 1.5rem) if you want bigger */
  line-height: 1;
}

/* ── Room list: hero — desktop full viewport; tablet/phone shorter crop, centered ─ */
#reserverooms.banner-two--rooms-hero {
  position: relative !important;
  display: block !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media (min-width: 992px) {
  #reserverooms.banner-two--rooms-hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    background-position: center center !important;
  }
}

@media (max-width: 991px) {
  #reserverooms.banner-two--rooms-hero {
    min-height: clamp(240px, 52vh, min(72vh, 680px)) !important;
    background-position: center center !important;
  }
}

@media (max-width: 576px) {
  #reserverooms.banner-two--rooms-hero {
    min-height: clamp(200px, 46vh, 520px) !important;
  }
}

/*
  Bridge: ~½ of the search bar sits on the hero, ~½ on this strip (negative margin
  pulls the strip up; values track one-row vs stacked layouts).
*/
.room-list-search-strip {
  --room-search-bridge: clamp(38px, 6.5vmin, 52px);
  position: sticky !important;
  top: 0 !important;
  z-index: 1048 !important;
  margin-top: calc(-1 * var(--room-search-bridge)) !important;
  padding: 0px 0 0px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.page--home .room-list-search-strip {
  /* Fixed header on home: stick below it once scrolled */
  top: 72px !important;
}

.room-list-search-strip__content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1145px !important;
  width: 100% !important;
  background: transparent !important;
}

.room-list-search-strip .tour-search-box {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.room-list-search-strip .searchbar {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: min(1000px, 100%) !important;
  position: relative !important;
  padding-inline: 15px !important;
  z-index: 2 !important;
}

/* Hash link #room-list-search: anchor is the form (not the pulled-up section); offset for fixed header */
.page--home #room-list-search {
  scroll-margin-top: clamp(76px, 12vh, 132px);
}

.room-list-search-strip .searchbar__icon {
  position: static !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  z-index: auto !important;
}

@media (max-width: 992px) {
  .room-list-search-strip {
    --room-search-bridge: clamp(72px, 22vmin, 140px);
    padding: 10px 0 16px !important;
  }

  .page--home .room-list-search-strip {
    top: 58px !important;
  }
}

@media (max-width: 576px) {
  .room-list-search-strip {
    --room-search-bridge: clamp(88px, 26vmin, 160px);
  }
}

/* ── Search bar: dates share one row when stacked (room list) ─────────────── */
.searchbar__dates-row {
  display: contents;
}

/* ── Search bar responsive fixes ─────────────────────────────────────────── */

/* Tablet (≤ 992px) – override the absolute-positioned icon so it flows as a
   full-width row at the bottom of the flex container instead of floating over
   the input fields. Also neutralise the large horizontal padding set on the
   base .searchbar rule. */
@media (max-width: 992px) {
  .searchbar {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    padding: 12px !important;
    gap: 8px;
  }

  .searchbar__dates-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    gap: 0 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .searchbar__dates-row .searchbar__field {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 8px !important;
  }

  .searchbar__dates-row .searchbar__divider--between-dates {
    display: block !important;
    width: 2px !important;
    flex-shrink: 0 !important;
    align-self: stretch !important;
    margin: 10px 0 !important;
  }

  .searchbar__field {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 6px 16px;
    box-sizing: border-box;
  }

  /* Guests row: center icon + label + counter (mobile) */
  .searchbar__field--persons {
    justify-content: center !important;
  }

  .searchbar__field--persons .searchbar__field-body {
    flex: 0 1 auto !important;
    align-items: center !important;
  }

  .searchbar__field--btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Full-width row dividers (not the vertical one between the two dates) */
  .searchbar__divider:not(.searchbar__divider--between-dates) {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    min-height: 2px !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    margin: 4px 0 !important;
    opacity: 0.55 !important;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(25, 73, 74, 0.35) 20%,
      rgba(25, 73, 74, 0.35) 80%,
      transparent 100%
    ) !important;
  }

  .searchbar__icon {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 44px;
    border-radius: 12px;
    margin: 0 !important;
    order: 0;
  }
}

@media (max-width: 576px) {
  .searchbar__field {
    padding: 6px 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPACT FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  background-color: #19494a !important;
}

.site-footer__top,
.site-footer__bottom {
  display: none !important;
}

.footer-compact {
  padding: 36px 0 0;
}

.footer-compact__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-compact__brand {
  display: flex;
  align-items: center;
}

.footer-compact__logo img {
  height: 38px;
  width: auto;
}

/* Contact info group */
.footer-compact__info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-compact__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  direction: rtl;
}

.footer-compact__info-item i {
  color: #4B918E;
  font-size: 12px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.footer-compact__info-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  direction: ltr;
}

.footer-compact__info-item a:hover {
  color: #fff;
}

.footer-compact__info-sep {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}

.footer-compact__social {
  display: flex;
  gap: 10px;
}

.footer-compact__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  box-shadow:
    2px 2px 5px rgba(0,0,0,0.3),
   -1px -1px 4px rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, color 0.25s ease;
}

.footer-compact__social a:hover {
  color: #fff;
  box-shadow:
    inset 1px 1px 3px rgba(0,0,0,0.3),
    inset -1px -1px 3px rgba(255,255,255,0.05);
}

.footer-compact__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.footer-compact__bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.footer-compact__bottom p a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-compact__bottom p a:hover {
  color: #fff;
}

.footer-compact__top-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  box-shadow:
    2px 2px 5px rgba(0,0,0,0.3),
   -1px -1px 4px rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, color 0.25s ease;
}

.footer-compact__top-btn:hover {
  color: #fff;
  box-shadow:
    inset 1px 1px 3px rgba(0,0,0,0.3),
    inset -1px -1px 3px rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .footer-compact__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .footer-compact__info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-compact__info-item {
    justify-content: center;
  }
  .footer-compact__social {
    justify-content: center;
  }
  .footer-compact__bottom {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}


/* ════════════════════════════════════════════════════════════════
   AUTH MODALS — Neumorphic Design
   ════════════════════════════════════════════════════════════════ */

/* Base modal backdrop */
.auth-modal .modal-dialog {
  max-width: 420px;
}

.auth-modal .modal-content {
  background: #f0f4f8;
  border: none !important;
  border-radius: 24px !important;
  box-shadow: 0px 0px 15px #d4d8e0, 0px 1px 0px #ffffff !important;
  overflow: hidden;
  direction: rtl;
}

/* Header */
.auth-modal .modal-header {
  background: linear-gradient(135deg, #19494a 0%, #2a7072 100%);
  border: none !important;
  padding: 20px 24px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.auth-modal__header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.auth-modal .modal-title {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  margin: 0 !important;
  flex: 1;
}

.auth-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: .7;
  margin: 0 !important;
  flex-shrink: 0;
}

.auth-modal .btn-close:hover { opacity: 1; }

/* Body */
.auth-modal .modal-body {
  padding: 28px 26px 26px;
}

/* Field group */
.auth-field {
  margin-bottom: 18px;
}

.auth-field__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2a6566;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  text-align: right;
}

.auth-field__input {
  width: 100%;
  background: #f0f4f8 !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: inset 3px 3px 20px #d4d8e0, inset -1px -1px 4px #ffffff !important;
  padding: 11px 14px !important;
  font-size: .92rem !important;
  color: #2d3748 !important;
  font-weight: 600;
  outline: none !important;
  transition: box-shadow .2s ease;
}

.auth-field__input:focus {
  box-shadow: inset 2px 2px 5px #cfd4dc, inset -2px -2px 5px #ffffff, 0 0 0 2px rgba(42,112,114,.15) !important;
}

.auth-field__input::placeholder {
  color: #a0aec0 !important;
  font-weight: 400;
}

/* Submit button */
.auth-btn {
  width: 100%;
  background: linear-gradient(135deg, #1d5254, #2a7072) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  box-shadow: 2px 2px 6px rgba(25,73,74,.22) !important;
  transition: opacity .2s ease, box-shadow .2s ease !important;
  cursor: pointer;
}

.auth-btn:hover {
  opacity: .95 !important;
  box-shadow: 3px 3px 9px rgba(25,73,74,.28) !important;
}

.auth-btn:active {
  box-shadow: inset 1px 1px 4px rgba(0,0,0,.18) !important;
}

/* Secondary link button */
.auth-btn--link {
  width: 100%;
  background: none !important;
  border: none !important;
  color: #2a6566 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 8px !important;
  margin-top: 4px;
  cursor: pointer;
  transition: color .2s;
}

.auth-btn--link:hover { color: #19494a !important; }
.auth-btn--link:disabled { opacity: .45 !important; cursor: not-allowed; }

/* Switch link */
.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #718096;
}

.auth-switch a {
  color: #2a6566;
  font-weight: 700;
  text-decoration: none;
}

.auth-switch a:hover { color: #19494a; }

/* Alert */
.auth-modal .alert {
  border-radius: 10px !important;
  border: none !important;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Divider */
.auth-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8cdd6, transparent);
  margin: 20px 0;
}

/* OTP hint text */
.auth-hint {
  font-size: 14px;
  color: #718096;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.65;
}

/* Register page (standalone) — label size matches auth modals */
.auth-register-page .prf-label {
  font-size: 14px !important;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--c-teal-mid) !important;
  font-weight: 700 !important;
}

/* Register page (standalone) — softer neumorphic shadows */
.auth-register-page .prf-hero {
  box-shadow: 0 4px 18px rgba(25,73,74,.22) !important;
}
.auth-register-page .prf-card {
  box-shadow: 4px 4px 12px #d4d8e0, -4px -4px 12px #ffffff !important;
}
.auth-register-page .prf-input {
  box-shadow: inset 1px 1px 4px #d4d8e0, inset -1px -1px 4px #ffffff !important;
}
.auth-register-page .prf-input:focus {
  box-shadow: inset 2px 2px 5px #cfd4dc, inset -2px -2px 5px #ffffff, 0 0 0 3px rgba(75,145,142,.12) !important;
}
.auth-register-page .btn-neu {
  box-shadow: 2px 2px 6px #d4d8e0, -2px -2px 6px #ffffff !important;
}
.auth-register-page .btn-neu:hover {
  transform: translateY(-1px);
  box-shadow: 3px 3px 9px #cfd4dc, -3px -3px 9px #ffffff !important;
}
.auth-register-page .btn-neu:active {
  box-shadow: inset 1px 1px 4px #d4d8e0, inset -1px -1px 4px #ffffff !important;
}

/* ═══ Site toast notifications (top-right, RTL) ═══════════════════════════════ */
.site-toast-stack {
  position: fixed;
  top: 88px;
  right: 16px;
  left: auto;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(380px, calc(100vw - 32px));
  pointer-events: none;
}
.site-toast {
  pointer-events: auto;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f3f6fa 100%);
  box-shadow:
    0 10px 40px rgba(25, 73, 74, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 73, 74, 0.1);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-toast--show {
  opacity: 1;
  transform: translateX(0);
}
.site-toast__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 10px 12px;
  padding: 14px 12px 14px 16px;
}
.site-toast__icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 2px;
}
.site-toast__text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  color: #1e293b;
}
.site-toast__close {
  border: none;
  background: rgba(25, 73, 74, 0.06);
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}
.site-toast__close:hover {
  background: rgba(25, 73, 74, 0.12);
  color: #19494a;
}
.site-toast__bar {
  height: 3px;
  transform-origin: right center;
  animation-name: siteToastProgress;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes siteToastProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.site-toast--success .site-toast__icon {
  color: #059669;
}
.site-toast--success .site-toast__bar {
  background: linear-gradient(90deg, #34d399, #059669);
}
.site-toast--danger .site-toast__icon {
  color: #dc2626;
}
.site-toast--danger .site-toast__bar {
  background: linear-gradient(90deg, #f87171, #dc2626);
}
.site-toast--warning .site-toast__icon {
  color: #d97706;
}
.site-toast--warning .site-toast__bar {
  background: linear-gradient(90deg, #fbbf24, #d97706);
}
.site-toast--info .site-toast__icon {
  color: #0284c7;
}
.site-toast--info .site-toast__bar {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}
.site-toast--secondary .site-toast__icon {
  color: #64748b;
}
.site-toast--secondary .site-toast__bar {
  background: linear-gradient(90deg, #94a3b8, #64748b);
}
@media (max-width: 576px) {
  .site-toast-stack {
    top: 76px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  .site-toast {
    transform: translateY(-24px);
  }
  .site-toast--show {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-toast {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .site-toast--show {
    transform: none;
  }
  .site-toast__bar {
    animation: none;
    opacity: 0.5;
  }
}

