/* ===========================
   Golden Crown Hotels - Main Styles
   Modern, Luxury Hotel Design
   =========================== */

/* Force light mode - prevent dark mode */
:root {
  color-scheme: light only;
  --navbar-height: 80px;
}

/* Offset body content to account for fixed-top navbar */
/* Account for fixed-top navbar; tune to actual rendered height */
/* Remove unused styles - spacing handled by body padding-top below */

/* Extra offset when hotel pages have a sticky subnav under header */
.hotel-page .page-content,
.hotel-page main {
  scroll-margin-top: 84px;
}
html {
  color-scheme: light only;
}

:root {
  /* Updated color scheme - burgundy as primary brand color */
  --primary-color: #7f1544;
  --primary-hover: #5f0f33;
  --secondary-color: #6c757d;
  --secondary-hover: #545b62;
  --accent-color: #7f1544;
  --text-dark: #2d2d2d;
  --text-light: #ffffff;
  --text-gray: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #ffffff;
  --overlay-dark: rgba(255, 255, 255, 0.95);
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 64px; /* Account for fixed navbar on mobile */
}

/* Global scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #666 #2d2d2d;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: #2d2d2d;
}

*::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #888;
}

@media (min-width: 992px) {
  body {
    padding-top: 82px; /* Account for fixed navbar on desktop */
  }
}

main {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
  font-weight: 700;
}

/* ===========================
   RTL Support - Complete Reset
   =========================== */

/* Base RTL/LTR Direction - NO text-align override to preserve center */
[dir="rtl"] {
  direction: rtl !important;
}

/* RTL Font Override - Use Heebo for Hebrew */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
}

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] div,
[dir="rtl"] a,
[dir="rtl"] li {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
}

/* Bootstrap margin utilities fix for RTL nav alignment */
[dir="rtl"] .navbar .ms-auto {
  /* In RTL, push group to the far left */
  margin-left: 0 !important;
  margin-right: auto !important;
}

[dir="rtl"] .navbar .me-4 {
  /* Swap inline margin helper for brand spacing */
  margin-inline-end: 0;
  margin-inline-start: 1.5rem; /* equivalent to .ms-4 */
}

[dir="ltr"] {
  direction: ltr !important;
}

/* Body RTL - only set direction, let text-align inherit */
[dir="rtl"] body {
  direction: rtl !important;
}

/* Brand icon spacing */
[dir="rtl"] .brand-icon {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

[dir="ltr"] .brand-icon {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

/* Navbar brand RTL */
[dir="rtl"] .navbar-brand {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}

[dir="ltr"] .navbar-brand {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}

/* Nav items RTL */
[dir="rtl"] .nav-item {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}

[dir="ltr"] .nav-item {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}

/* Dropdown menu positioning */
[dir="rtl"] .dropdown-menu {
  left: 0 !important;
  right: auto !important;
}

[dir="ltr"] .dropdown-menu {
  left: auto !important;
  right: 0 !important;
}

/* Dropdown items RTL */
[dir="rtl"] .dropdown-item {
  padding-right: 1rem !important;
  padding-left: 0.5rem !important;
  text-align: right !important;
}

[dir="ltr"] .dropdown-item {
  padding-left: 1rem !important;
  padding-right: 0.5rem !important;
  text-align: left !important;
}

/* Dropdown header RTL */
[dir="rtl"] .dropdown-header {
  text-align: right !important;
}

[dir="ltr"] .dropdown-header {
  text-align: left !important;
}

/* Card RTL - remove text-align override */
[dir="rtl"] .card {
  direction: rtl !important;
  text-align: right !important;
}

[dir="ltr"] .card {
  direction: ltr !important;
  text-align: left !important;
}

[dir="rtl"] .card-body,
[dir="rtl"] .card-title,
[dir="rtl"] .card-text,
[dir="rtl"] .card p,
[dir="rtl"] .card h1,
[dir="rtl"] .card h2,
[dir="rtl"] .card h3,
[dir="rtl"] .card h4,
[dir="rtl"] .card h5,
[dir="rtl"] .card h6 {
  text-align: right !important;
  direction: rtl !important;
}

[dir="rtl"] .card .badge {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

[dir="rtl"] .card i,
[dir="rtl"] .card .bi {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

[dir="rtl"] .room-features,
[dir="rtl"] .card-body div {
  text-align: right !important;
}

[dir="ltr"] .card-body,
[dir="ltr"] .card-title,
[dir="ltr"] .card-text,
[dir="ltr"] .card p,
[dir="ltr"] .card h1,
[dir="ltr"] .card h2,
[dir="ltr"] .card h3,
[dir="ltr"] .card h4,
[dir="ltr"] .card h5,
[dir="ltr"] .card h6 {
  text-align: left !important;
  direction: ltr !important;
}

/* Row and Column RTL */
[dir="rtl"] .row {
  flex-direction: row-reverse !important;
  direction: ltr !important;
}

[dir="rtl"] .container .row {
  flex-direction: row-reverse !important;
}

[dir="ltr"] .row {
  direction: ltr !important;
}

[dir="rtl"] [class*="col-"] > * {
  direction: rtl !important;
  text-align: right !important;
}

[dir="ltr"] [class*="col-"] {
  text-align: left !important;
}

/* Container RTL - only set direction, not on all children */
[dir="rtl"] .container,
[dir="rtl"] .container-fluid {
  direction: rtl !important;
}

/* List RTL */
[dir="rtl"] ul,
[dir="rtl"] ol {
  padding-right: 1.5rem !important;
  padding-left: 0 !important;
}

[dir="ltr"] ul,
[dir="ltr"] ol {
  padding-left: 1.5rem !important;
  padding-right: 0 !important;
}

/* Flex containers RTL */
[dir="rtl"] .d-flex {
  direction: rtl !important;
}

[dir="ltr"] .d-flex {
  direction: ltr !important;
}

/* Hide mobile-only elements on desktop */
@media (min-width: 992px) {
  .mobile-booking-overlay,
  .mobile-booking-trigger,
  .mobile-bottom-nav {
    display: none !important;
  }
  
  /* Add more padding to navbar on desktop */
  .navbar .container-fluid {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

/* ===========================
   Mobile Nav Overlay & Toggler
   =========================== */
@media (max-width: 991.98px) {
  /* Center logo on mobile */
  .navbar .container-fluid {
    justify-content: center;
    position: relative;
    min-height: 65px;
    display: flex;
    align-items: center;
  }
  
  .navbar-brand.d-lg-none {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 1;
  }
  
  [dir="rtl"] .navbar-brand.d-lg-none,
  [dir="ltr"] .navbar-brand.d-lg-none {
    margin: 0 !important;
  }
  
  .hamburger {
    display: none !important;
  }
  
  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-open {
    overflow: hidden;
  }

  #navbarNav {
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 1.25rem 1.5rem 2rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  #navbarNav.show {
    opacity: 1;
    visibility: visible;
  }

  /* Override Bootstrap collapse slide animation */
  #navbarNav.collapsing {
    height: auto !important;
    transition: none;
    opacity: 0;
    visibility: hidden;
  }

  .navbar-nav .nav-link {
    font-size: 1.05rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

/* Toggler icon swap for open/close */
.navbar-toggler .icon-close { display: none; }
.navbar-toggler[aria-expanded="true"] .icon-hamburger { display: none; }
.navbar-toggler[aria-expanded="true"] .icon-close { display: inline-block; }
.navbar-toggler svg { width: 28px; height: 28px; }

/* Buttons RTL spacing */
[dir="rtl"] .btn {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

[dir="ltr"] .btn {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

/* Breadcrumb RTL */
[dir="rtl"] .breadcrumb {
  padding-right: 0 !important;
  padding-left: 0 !important;
  direction: rtl !important;
}

/* Table RTL */
[dir="rtl"] table {
  direction: rtl !important;
}

/* Form RTL - only set direction */
[dir="rtl"] .form-control,
[dir="rtl"] .form-label {
  direction: rtl !important;
}

/* Form select RTL - flip dropdown arrow */
[dir="rtl"] .form-select {
  direction: rtl !important;
  background-position: left 0.75rem center !important;
  padding-right: 0.75rem !important;
  padding-left: 2.25rem !important;
}

/* Alert RTL - only set direction */
[dir="rtl"] .alert {
  direction: rtl !important;
}

/* Badge RTL */
[dir="rtl"] .badge {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

[dir="ltr"] .badge {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

/* Footer links hover */
[dir="rtl"] .footer-links a:hover {
  padding-right: 5px !important;
  padding-left: 0 !important;
}

[dir="ltr"] .footer-links a:hover {
  padding-left: 5px !important;
  padding-right: 0 !important;
}

/* Footer content RTL - only set direction */
[dir="rtl"] .footer {
  direction: rtl !important;
}

[dir="rtl"] .footer-links {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Hotel sections RTL - remove text-align to preserve center */
[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle,
[dir="rtl"] .section-description {
  direction: rtl !important;
}

/* Room cards RTL - remove text-align to preserve center */
[dir="rtl"] .room-card,
[dir="rtl"] .facility-card,
[dir="rtl"] .restaurant-card,
[dir="rtl"] .event-card {
  direction: rtl !important;
}

/* Icons RTL flip */
[dir="rtl"] .icon-rtl {
  transform: scaleX(-1);
}

/* Tabs RTL Support */
[dir="rtl"] .navbar-nav .nav-tabs {
  direction: rtl !important;
}

[dir="rtl"] .navbar-nav .nav-item .nav-link {
  text-align: right !important;
}

[dir="rtl"] .tab-content {
  direction: rtl !important;
}

/* Accordion RTL Support */
[dir="rtl"] .mobile-nav-accordion {
  direction: rtl !important;
}

[dir="rtl"] .mobile-nav-accordion .accordion-button {
  text-align: right !important;
  padding-right: 1.25rem !important;
  padding-left: 2.5rem !important;
}

[dir="rtl"] .mobile-nav-accordion .accordion-button::after {
  margin-left: 0 !important;
  margin-right: auto !important;
}

[dir="rtl"] .mobile-nav-accordion .accordion-body .dropdown-item {
  text-align: right !important;
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

/* ===========================
   Booking Bar - Sticky (Leonardo-style)
   =========================== */

.booking-bar {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.booking-bar.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-bar-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-field {
  flex: 1;
  min-width: 150px;
  max-width: 220px;
}

.booking-field .form-control,
.booking-field .form-select {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  background: #f8f9fa;
  transition: all 0.2s ease;
  min-height: 44px; /* WCAG touch target */
}

.booking-field .form-control:focus,
.booking-field .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  background: #ffffff;
  outline: 3px solid rgba(212, 175, 55, 0.3);
  outline-offset: 2px;
}

.btn-book-now {
  background: var(--primary-color) !important;
  border: none !important;
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 0.75rem 2.5rem !important;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 48px; /* WCAG touch target */
}

.btn-book-now:hover,
.btn-book-now:focus {
  background: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 21, 68, 0.3);
  outline: 3px solid rgba(127, 21, 68, 0.3);
  outline-offset: 2px;
}

/* RTL Booking Bar */
[dir="rtl"] .booking-bar-content {
  flex-direction: row-reverse;
}

/* Mobile Booking Bar */
@media (max-width: 991px) {
  .booking-bar {
    padding: 1rem 0;
  }
  
  .booking-bar-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .booking-field {
    width: 100%;
    max-width: 100%;
  }
  
  .btn-book-now {
    width: 100%;
  }
}

/* ===========================
   Header & Navigation - WCAG Compliant Minimal
   =========================== */

/* ===========================
   Navigation Styles - Clean & Modern
   =========================== */

.navbar {
  padding: 0.5rem 0;
  background: white !important;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
}

.brand-icon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
}

.brand-text {
  font-weight: 700;
}

.brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover .brand-logo {
  opacity: 0.8;
}

.navbar .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-dropdown-toggle:hover,
.navbar .nav-dropdown-toggle.active {
  color: var(--primary-color) !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-dropdown-toggle:hover::after,
.navbar .nav-dropdown-toggle.active::after {
  width: 60%;
}

.nav-dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar .dropdown-toggle {
  cursor: pointer;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.3em;
  vertical-align: 0.15em;
}

.navbar .dropdown-menu {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item {
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  transition: background 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  background: #f8f9fa;
  color: var(--primary-color);
}

.navbar .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.navbar .btn-primary:hover {
  background: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 21, 68, 0.3);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d2d2d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   Navigation Dropdown Overlays
   =========================== */

.nav-dropdown-overlay {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.nav-dropdown-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-city-title {
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.hotel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-list li {
  margin-bottom: 0.75rem;
}

.hotel-link {
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  padding-left: 0.75rem;
}

.hotel-link:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  padding-left: 1rem;
}

.hotel-link.active {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  font-weight: 600;
  background: rgba(127, 21, 68, 0.05);
}

.hotel-name {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
}

.hotel-address {
  font-size: 0.85rem;
  color: var(--text-gray);
  display: block;
}

/* RTL Support for Dropdowns and Content */
[dir="rtl"] .hotel-link {
  border-left: none;
  border-right: 3px solid transparent;
  padding-left: 0;
  padding-right: 0.75rem;
}

[dir="rtl"] .hotel-link:hover {
  border-right-color: var(--primary-color);
  padding-right: 1rem;
  padding-left: 0;
}

[dir="rtl"] .hotel-link.active {
  color: var(--primary-color);
  border-right-color: var(--primary-color);
  font-weight: 600;
  background: rgba(127, 21, 68, 0.05);
}

[dir="rtl"] .hotel-name,
[dir="rtl"] .hotel-address {
  text-align: right;
}

/* Deals List Styles (for mobile deals overlay) */
.deals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deals-list li {
  margin-bottom: 0.75rem;
}

.deal-link {
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  padding: 0.75rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0 8px 8px 0;
}

.deal-link:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  background: rgba(127, 21, 68, 0.05);
  padding-left: 1rem;
}

.deal-title {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.deal-teaser {
  font-size: 0.85rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.deal-validity {
  font-size: 0.75rem;
  color: var(--primary-color);
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(127, 21, 68, 0.1);
  border-radius: 4px;
  margin-top: 0.25rem;
}

/* RTL Support for Deals */
[dir="rtl"] .deal-link {
  border-left: none;
  border-right: 3px solid transparent;
  border-radius: 8px 0 0 8px;
}

[dir="rtl"] .deal-link:hover {
  border-right-color: var(--primary-color);
  padding-right: 1rem;
  padding-left: 0.75rem;
}

[dir="rtl"] .deal-title,
[dir="rtl"] .deal-teaser,
[dir="rtl"] .deal-validity {
  text-align: right;
}

/* Mobile menu */
@media (max-width: 991.98px) {
  /* Main navbar collapse - rounded and contained */
  .navbar .navbar-collapse {
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Hotel subnav collapse - full width strip */
  .hotel-subnav .navbar-collapse {
    background: transparent !important;
    padding: 0 !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .navbar-collapse .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .navbar-collapse hr {
    margin: 0.5rem 0;
    opacity: 0.1;
  }
  
  .nav-dropdown-overlay.mobile-dropdown {
    position: static;
    top: auto;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: visible;
    opacity: 0;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 4px;
  }
  
  .nav-dropdown-overlay.mobile-dropdown.active {
    max-height: none;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .mobile-dropdown .dropdown-city-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.25rem;
  }
  
  .mobile-dropdown .hotel-list {
    margin-bottom: 0;
  }
  
  .mobile-dropdown .hotel-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}


/* ===========================
   Booking Bar
   =========================== */

.booking-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 2px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  min-height: 200px;
  -webkit-overflow-scrolling: touch;
}

/* Only animate on first appearance, not when switching tabs */
.tab-pane:not(.was-active).active .hotels-expanded-section,
.tab-pane:not(.was-active).active .events-expanded-section {
  animation: fadeIn 0.2s ease-out;
}

.hotels-expanded-section.collapsing {
  transition: height 0.2s ease;
  overflow: hidden;
}

.hotels-chevron {
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

[aria-expanded="true"] .hotels-chevron {
  transform: rotate(180deg);
}

#hotelsToggle {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  white-space: nowrap;
  width: 100%;
  text-align: left;
}

#hotelsToggle:hover,
#hotelsToggle:focus {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  background: transparent;
}

.city-hotels-group {
  animation: fadeInUp 0.5s ease-out backwards;
}

.city-hotels-group h3 {
  color: #800020 !important;
}

@media (prefers-reduced-motion: reduce) {
  .city-hotels-group {
    animation: none;
  }
  .hotels-expanded-section {
    animation: none;
  }
}

.city-hotels-group:nth-child(1) { animation-delay: 0.05s; }
.city-hotels-group:nth-child(2) { animation-delay: 0.1s; }
.city-hotels-group:nth-child(3) { animation-delay: 0.15s; }
.city-hotels-group:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotels-grid {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hotel-mini-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hotel-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hotel-mini-card:focus-within {
  outline: 2px solid #800020;
  outline-offset: 2px;
}

.hotel-mini-image {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hotel-mini-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotel-mini-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hotel-mini-address {
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.4;
}

.hotel-mini-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hotel-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.hotel-card-link:hover .hotel-mini-title {
  color: #800020;
}

.hotel-card-link:focus {
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tab-content-wrapper {
    top: 60px; /* Smaller navbar on mobile */
  }
  
  .hotels-expanded-section {
    max-height: 70vh;
    padding: 0;
  }
  
  .hotels-expanded-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .hotel-mini-card {
    margin-bottom: 0;
  }
  
  #hotelsToggle {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  
  .city-hotels-group {
    margin-bottom: 2rem !important;
  }
  
  .city-hotels-group h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .hotels-expanded-section {
    max-height: 75vh;
  }
  
  .hotels-grid > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hotel-mini-image {
    height: 160px;
  }
  
  .hotel-mini-title {
    font-size: 0.9rem;
  }
  
  .hotel-mini-address {
    font-size: 0.8rem;
  }
  
  .city-hotels-group h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem !important;
  }
}

/* RTL Support for Hotels Section */
[dir="rtl"] .hotel-mini-address {
  flex-direction: row-reverse;
}

[dir="rtl"] .city-hotels-group h3 {
  text-align: right;
}

[dir="rtl"] .hotels-expanded-section .d-flex {
  flex-direction: row-reverse;
}


.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(139, 21, 56, 0.1);
  color: var(--secondary-color);
}

/* ===========================
   Hotel Sub-Navigation - Sticky on Scroll
   =========================== */

.hotel-subnav {
  position: sticky;
  top: var(--header-height, 76px);
  z-index: 999;
  background: #ffffff;
  margin: 0;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: visible;
  padding: 0 !important;
}

.hotel-subnav .container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hotel-subnav .navbar-brand {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.hotel-subnav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hotel-subnav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(127, 21, 68, 0.1);
  border-radius: 6px;
}

/* Sticky State - Color change only */
.hotel-subnav.is-sticky {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid var(--primary-color);
}

/* Ensure sticky stops before footer */
main, .main-content {
  position: relative;
  z-index: 1;
}

/* Breadcrumb spacing - account for sticky submenu */
.hotel-breadcrumb {
  margin-top: 5rem;
}

.footer {
  position: relative;
}

.hotel-subnav.is-sticky .navbar-collapse {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.hotel-subnav.is-sticky .navbar-collapse::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.hotel-subnav.is-sticky .navbar-brand {
  color: var(--text-light) !important;
}

.hotel-subnav.is-sticky .nav-link {
  color: rgba(0, 0, 0, 0.9) !important;
}

.hotel-subnav.is-sticky .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(127, 21, 68, 0.15);
}

.hotel-subnav.is-sticky .btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Placeholder to prevent content jump when nav becomes fixed */
.hotel-subnav-placeholder {
  display: none;
  height: 56px;
}

.hotel-subnav-placeholder.active {
  display: block;
}

/* ===========================
   Dropdown Menu - Simple & WCAG Compliant
   =========================== */

.dropdown-menu {
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  color: var(--text-dark);
  font-size: 0.95rem;
  min-height: 44px; /* WCAG touch target */
  display: flex;
  align-items: center;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(127, 21, 68, 0.1);
  color: var(--primary-color);
  outline: 2px solid rgba(127, 21, 68, 0.3);
  outline-offset: -2px;
}

.dropdown-item.active {
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
}

.dropdown-header {
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Language Switcher */
.lang-switcher {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

.lang-icon {
  font-size: 1.2rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7; /* 16:7 for desktop chain hero */
  background: linear-gradient(135deg, #8e8e8e 0%, #e7e7e7 100%);
  background-blend-mode: overlay;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 0;
}

/* Video Hero Section */
.hero-video-section {
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-video-section .hero-overlay-dark-gradient,
.hero-video-section .hero-overlay-light-gradient,
.hero-video-section .hero-overlay-solid-dark,
.hero-video-section .hero-overlay-solid-light {
  z-index: 1;
}

.hotel-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5; /* 16:5 for desktop hotel pages hero */
  background: transparent;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hotel-hero-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 5; /* 16:5 for desktop hotel pages video hero */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.hotel-hero-video .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hotel-hero-video .hero-overlay,
.hotel-hero-video .container {
  position: relative;
  z-index: 1;
}

.hotel-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

.hotel-hero-logo {
  max-width: 600px;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  background: transparent;
}

@media (max-width: 991px) {
  .hotel-hero-logo {
    max-width: 450px;
    max-height: 225px;
  }
}

@media (max-width: 767px) {
  .hotel-hero-logo {
    max-width: 320px;
    max-height: 160px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(45, 45, 68, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Overlay Styles for ChainCovers */
.hero-overlay-dark-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-light-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-solid-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background: rgba(0, 0, 0, 0.6); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-solid-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease;
}

.hero-text.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero-text.text-start {
  text-align: left;
}

.hero-text.text-end {
  text-align: right;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Century Gothic', 'Futura', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-buttons .btn {
  min-width: 180px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel specific styles for hero */
#heroCarousel .carousel-item {
  transition-duration: 1s;
}

#heroCarousel.carousel-fade .carousel-item {
  transition-property: opacity;
}

/* Hero container alignment */
.hero-content .d-flex {
  justify-content: center;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
}

#heroCarousel .carousel-indicators {
  bottom: 30px;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  margin: 0 8px;
  transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
  background-color: white;
  transform: scale(1.2);
}

/* ===========================
   Booking Widget
   =========================== */

/* Mobile Booking Trigger - Hidden on desktop */
.mobile-booking-trigger {
  display: none;
}

.booking-widget {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.3s both;
  transition: all 0.3s ease;
}

.booking-widget.sticky {
  position: fixed;
  top: 80px; /* Adjust based on header height */
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 1.5rem;
}

.booking-widget-placeholder {
  display: none;
}

.booking-widget-placeholder.active {
  display: block;
}

.booking-widget .form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: var(--transition);
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(127, 21, 68, 0.25);
}

.booking-widget .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-light);
}

.booking-widget .btn-primary:hover {
  background: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Promo Code Toggle Button */
#togglePromoCode {
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0.85;
}

#togglePromoCode:hover {
  color: var(--primary-hover);
  opacity: 1;
  transform: scale(1.05);
}

#togglePromoCode i {
  font-size: 0.9rem;
}

/* Promo Code Dropdown */
.promo-code-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 1000;
  min-width: 250px;
}

[dir="rtl"] .promo-code-dropdown {
  left: 0;
  right: 0;
}

.promo-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.promo-code-header .form-label {
  font-weight: 600;
  color: var(--text-dark);
}

.btn-close-promo {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.btn-close-promo:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

/* Date & Guest Selector Icons */
.date-icon, .guest-icon, .promo-icon, .property-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  font-size: 1rem;
}

[dir="rtl"] .date-icon, 
[dir="rtl"] .guest-icon, 
[dir="rtl"] .promo-icon,
[dir="rtl"] .property-icon {
  right: auto;
  left: 15px;
}

/* Property Selector */
.property-input {
  cursor: pointer;
  padding-right: 40px;
}

[dir="rtl"] .property-input {
  padding-right: 0.75rem;
  padding-left: 40px;
}

.property-selector-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 1002;
  min-width: 350px;
  max-height: 500px;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.property-selector-dropdown[style*="display: block"] {
  display: flex !important;
}

[dir="rtl"] .property-selector-dropdown {
  left: 0;
  right: 0;
}

.property-tabs {
  display: flex;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 12px 12px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
}

.property-tabs::-webkit-scrollbar {
  height: 4px;
}

.property-tabs::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.property-tab {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.property-tab:first-child {
  border-radius: 12px 0 0 0;
}

.property-tab:hover {
  background: rgba(127, 21, 68, 0.05);
}

.property-tab.active {
  background: var(--primary-color);
  color: white;
  border-bottom-color: var(--primary-color);
}

[dir="rtl"] .property-tab:first-child {
  border-radius: 0 12px 0 0;
}

.property-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem;
}

.property-list::-webkit-scrollbar {
  width: 8px;
}

.property-list::-webkit-scrollbar-thumb {
  background: rgba(127, 21, 68, 0.3);
  border-radius: 4px;
}

.property-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.property-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.property-option:hover {
  background: rgba(127, 21, 68, 0.05);
}

.property-option.active {
  background: rgba(127, 21, 68, 0.1);
  font-weight: 600;
}

.property-option i {
  font-size: 1.1rem;
  color: var(--primary-color);
  min-width: 20px;
  text-align: center;
}

.property-option.active i {
  color: var(--primary-color);
}

.property-option span {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Guest Selector */
.guest-selector-wrapper {
  position: relative;
}

.guest-input {
  cursor: pointer;
  padding-right: 40px;
}

[dir="rtl"] .guest-input {
  padding-right: 0.75rem;
  padding-left: 40px;
}

.guest-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 1000;
  min-width: 280px;
}

[dir="rtl"] .guest-dropdown {
  left: auto;
  right: 0;
}

.guest-dropdown.show,
.guest-dropdown[style*="display: block"] {
  display: block !important;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.guest-row:last-child {
  border-bottom: none;
}

.guest-label {
  display: flex;
  flex-direction: column;
}

.guest-label strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.guest-label small {
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-guest-control {
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-guest-control:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
}

.btn-guest-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-count {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Date Range Calendar */
.date-calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 1001;
  width: 750px;
  max-width: calc(100vw - 2rem);
  overflow: visible;
}

[dir="rtl"] .date-calendar {
  left: 50%;
  transform: translateX(-50%);
}

.calendar-tabs {
  display: flex;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.calendar-tab {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.calendar-tab:first-child {
  border-radius: 12px 0 0 0;
}

.calendar-tab:last-child {
  border-radius: 0 12px 0 0;
}

[dir="rtl"] .calendar-tab:first-child {
  border-radius: 0 12px 0 0;
}

[dir="rtl"] .calendar-tab:last-child {
  border-radius: 12px 0 0 0;
}

.calendar-tab:hover {
  background: rgba(127, 21, 68, 0.05);
}

.calendar-tab.active {
  background: var(--primary-color);
  color: white;
  border-bottom-color: var(--primary-color);
}

.calendar-months-wrapper {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.calendar-months {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.calendar-month {
  flex: 1;
  min-width: 280px;
}

.calendar-month-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.btn-calendar-nav {
  background: transparent;
  border: 2px solid var(--primary-color);
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-calendar-nav:hover {
  background: var(--primary-color);
  color: white;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  padding: 0.4rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-dark);
  font-weight: 400;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(127, 21, 68, 0.08);
  border-color: rgba(127, 21, 68, 0.3);
}

.calendar-day.disabled {
  color: #ddd;
  cursor: not-allowed;
  background: #fafafa;
}

.calendar-day.empty {
  cursor: default;
  visibility: hidden;
}

.calendar-day.selected {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  border-color: var(--primary-color);
}

.calendar-day.in-range {
  background: rgba(127, 21, 68, 0.12);
  color: var(--text-dark);
  font-weight: 400;
}

.calendar-day.today {
  border-color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* ===========================
   Sections
   =========================== */

.featured-section,
.amenities-section,
.hotels-section {
  padding: 5rem 0;
}

.featured-section,
.hotels-section {
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #4a4a4a; /* Darker color for WCAG AA contrast (4.5:1 ratio) */
}

/* ===========================
   Hotels by City Section
   =========================== */

.city-section {
  margin-bottom: 4rem;
}

.city-title {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.hotel-card {
  transition: var(--transition);
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.hotel-card .card-title {
  color: #2d2d2d; /* Darker color for WCAG AA contrast (4.5:1 ratio) */
  font-weight: 600;
  font-size: 1.25rem; /* Ensure consistent sizing for h3 card titles */
}

.offer-card .card-title {
  color: #2d2d2d; /* Darker color for WCAG AA contrast (4.5:1 ratio) */
  font-weight: 600;
  font-size: 1.25rem; /* Ensure consistent sizing for h3 card titles */
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

.hotel-card .card-img-top {
  transition: var(--transition);
}

.hotel-card:hover .card-img-top {
  transform: scale(1.05);
}

/* ===========================
   Destination Cards
   =========================== */

.destination-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 400px;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--text-light);
  transition: var(--transition);
}

.destination-overlay h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.destination-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.4) 100%);
}

/* ===========================
   Amenity Cards
   =========================== */

.amenity-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-light);
}

.amenity-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.amenity-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.amenity-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: #a01d57;
  color: #ffffff;
  padding: 4rem 0 2rem;
  border-top: none;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f4e5c2;
}

.footer-text {
  opacity: 0.9;
  line-height: 1.8;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.95;
}

.footer-links a:hover {
  color: #ffd700;
  opacity: 1;
  transition: var(--transition);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-social {
  text-align: center;
}

.footer-social a {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: var(--transition);
  text-decoration: none;
  filter: brightness(1.2);
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.1);
  filter: brightness(1.5);
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 991px) {
  /* Main Navigation - Keep Vertical Layout */
  .header-main .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid #e0e0e0;
  }
  
  .header-main .navbar-nav {
    display: flex;
    flex-direction: column;
  }

  .header-main .nav-item {
    margin: 0.5rem 0;
  }
  
  .navbar-dark .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }

  /* Hotel Subnav Mobile - Always Visible Horizontal Scroll */
  .hotel-subnav {
    overflow: visible;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Hide sandwich button on hotel subnav */
  .hotel-subnav .navbar-toggler {
    display: none !important;
  }
  
  .hotel-subnav .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Always show menu items - no collapse */
  .hotel-subnav .navbar-collapse {
    display: block !important;
    background: transparent;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
  }
  
  .hotel-subnav .navbar-collapse::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
  }
  
  /* RTL direction for non-sticky state */
  [dir="rtl"] .hotel-subnav .navbar-collapse {
    direction: rtl !important;
  }
  
  [dir="ltr"] .hotel-subnav .navbar-collapse {
    direction: ltr !important;
  }
  
  .hotel-subnav .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: max-content !important;
  }
  
  .hotel-subnav .navbar-brand {
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .hotel-subnav .nav-item {
    flex-shrink: 0;
    margin: 0;
  }
  
  .hotel-subnav .nav-link {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  .hotel-subnav .btn {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
  }
  
  /* Keep sticky behavior on mobile - IMPORTANT */
  .hotel-subnav.is-sticky {
    position: fixed !important;
    top: var(--header-height, 76px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    width: 100%;
    overflow: visible !important;
    animation: none !important;
    margin-top: 0 !important;
  }
  
  .hotel-subnav.is-sticky .navbar-collapse {
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  
  /* RTL for hotel subnav - keep item order, only reverse scroll direction */
  [dir="rtl"] .hotel-subnav .navbar-collapse {
    direction: rtl !important;
  }
  
  [dir="ltr"] .hotel-subnav .navbar-collapse {
    direction: ltr !important;
  }

  /* Mobile RTL fixes */
  [dir="rtl"] .header-main .navbar-collapse {
    text-align: right;
  }

  [dir="ltr"] .header-main .navbar-collapse {
    text-align: left;
  }

  /* Remove desktop spacing on mobile */
  .ms-lg-3,
  .ms-lg-2 {
    margin-left: 0 !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .booking-widget {
    padding: 1.5rem;
  }

  .booking-widget.sticky {
    width: calc(100% - 1rem);
    padding: 1rem;
    top: 70px; /* Smaller top spacing on tablet */
  }

  /* Booking widget tablet adjustments */
  .date-calendar {
    width: 320px;
  }

  .guest-dropdown {
    min-width: 260px;
  }
}

@media (max-width: 767px) {
  /* Booking widget mobile styles */
  .booking-widget {
    padding: 1rem;
  }

  .booking-widget .row {
    row-gap: 0.75rem !important;
  }

  .booking-widget .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
  }

  .booking-widget .form-control,
  .booking-widget .form-select {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .date-icon, .guest-icon, .promo-icon {
    top: 35px;
    font-size: 0.9rem;
  }

  .date-calendar {
    width: calc(100vw - 2rem);
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  [dir="rtl"] .date-calendar {
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  .calendar-tabs {
    flex-direction: column;
  }

  .calendar-tab {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .calendar-months-wrapper {
    padding: 1rem;
    flex-direction: column;
  }

  .calendar-months {
    flex-direction: column;
    gap: 1.5rem;
  }

  .calendar-month {
    min-width: auto;
  }

  .calendar-month-title {
    font-size: 0.95rem;
  }

  .btn-calendar-nav {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    border-width: 1.5px;
  }

  .btn-calendar-nav.btn-prev {
    order: -1;
  }

  .btn-calendar-nav.btn-next {
    order: 1;
  }

  .calendar-weekday {
    font-size: 0.65rem;
    padding: 0.35rem 0;
  }

  .calendar-day {
    font-size: 0.8rem;
  }

  .guest-dropdown {
    min-width: auto;
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%);
  }

  [dir="rtl"] .guest-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .guest-row {
    padding: 0.6rem 0;
  }

  .guest-label strong {
    font-size: 0.9rem;
  }

  .guest-label small {
    font-size: 0.7rem;
  }

  .btn-guest-control {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }

  .guest-count {
    font-size: 0.95rem;
    min-width: 25px;
  }

  .guest-controls {
    gap: 0.5rem;
  }

  .booking-widget .btn-primary {
    font-size: 0.9rem;
    padding: 0.65rem;
  }

  .property-selector-dropdown {
    min-width: auto;
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%);
    max-height: 400px;
  }

  [dir="rtl"] .property-selector-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .property-tabs {
    padding: 0.25rem 0.5rem;
  }

  .property-tab {
    font-size: 0.75rem;
    padding: 0.6rem 0.75rem;
  }

  .property-list {
    max-height: 300px;
  }

  .property-option {
    padding: 0.6rem;
    gap: 0.5rem;
  }

  .property-option i {
    font-size: 1rem;
  }

  .property-option span {
    font-size: 0.85rem;
  }

  .hero-section {
    aspect-ratio: 1 / 1; /* 16:16 (1:1) for mobile chain hero */
    min-height: 80vh; /* Adjusted for mobile viewing */
    padding: 2rem 0;
    margin-top: 1rem; /* Add spacing below header on mobile */
    background-size: cover !important;
    background-position: center !important; /* Always center on mobile */
  }

  .hero-video-section .hero-video {
    object-fit: cover; /* Maintain aspect but cover the area */
    object-position: center; /* Center the video */
  }

  .carousel-item {
    min-height: 80vh; /* All carousel items same height */
  }

  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
  }

  #heroCarousel .carousel-indicators {
    bottom: 20px;
  }

  .hotel-hero,
  .hotel-hero-video {
    aspect-ratio: 16 / 9; /* 16:9 for mobile hotel hero */
    margin-top: 1rem; /* Add spacing below header on mobile */
    background-size: cover !important;
    background-position: center !important; /* Always center on mobile */
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .booking-widget .row > div {
    margin-bottom: 1rem;
  }

  .booking-widget.sticky {
    position: relative !important; /* Disable sticky on mobile */
    transform: none !important;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
  }

  [dir="rtl"] .booking-widget .row > div {
    direction: rtl;
  }

  /* Hide desktop booking widget on mobile */
  .booking-section-desktop {
    display: none !important;
  }

  /* Mobile Booking Trigger Button */
  .mobile-booking-trigger {
    display: block !important;
  }

  /* Mobile Booking Overlay */
  .mobile-booking-overlay {
    position: fixed;
    top: var(--navbar-height, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000 !important; /* Lower than bottom bar */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-booking-overlay.show {
    transform: translateY(0);
  }

  .mobile-booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-booking-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
  }

  .btn-close-mobile-booking {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: background 0.2s;
  }

  .btn-close-mobile-booking:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .mobile-booking-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - var(--navbar-height, 80px) - 70px - var(--mobile-bottom-nav-height, 60px));
  }

  .mobile-booking-content .form-label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .mobile-booking-content .form-control-lg {
    font-size: 1rem;
    padding: 0.85rem 3rem 0.85rem 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
  }

  #mobilePromoCodeInput {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  }

  #mobilePromoCodeInput.show {
    max-height: 80px;
    opacity: 1;
    margin-top: 1rem;
  }

  .mobile-booking-content .form-control-lg:focus {
    border-color: #800020;
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.15);
  }

  .mobile-date-calendar {
    position: relative;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 1rem;
    overflow: hidden;
    padding: 0.75rem;
    z-index: 1;
  }

  .mobile-date-calendar .calendar-months {
    flex-direction: column;
  }

  .mobile-date-calendar .calendar-months-wrapper {
    padding: 0.25rem;
  }

  .mobile-date-calendar .calendar-month {
    width: 100%;
  }

  .mobile-date-calendar .calendar-days {
    gap: 0.25rem;
  }

  .mobile-date-calendar .calendar-day {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .mobile-date-calendar .calendar-weekday {
    font-size: 0.7rem;
  }

  .mobile-date-calendar .btn-calendar-nav {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .mobile-booking-content .mobile-guest-dropdown {
    display: none;
    position: relative !important;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    transform: none !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    max-height: none !important;
    z-index: 2;
    top: auto !important;
    box-shadow: none !important;
  }

  .mobile-booking-content .mobile-guest-dropdown.show {
    display: block !important;
  }

  .mobile-booking-content .property-selector-dropdown {
    display: none;
    position: relative !important;
    margin-top: 1rem;
    transform: none !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    z-index: 2;
    top: auto !important;
    box-shadow: none !important;
    min-width: auto !important;
  }

  .mobile-booking-content .property-selector-dropdown.show {
    display: block !important;
  }

  [dir="ltr"] .booking-widget .row > div {
    direction: ltr;
  }

  .destination-card {
    height: 300px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .featured-section,
  .amenities-section {
    padding: 3rem 0;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .brand-icon {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .booking-widget {
    padding: 1rem;
  }

  .amenity-card {
    padding: 2rem 1rem;
  }
}

/* ===========================
   Utility Classes & Unified Button Styling
   =========================== */

/* Base button styles */
.btn {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 44px; /* WCAG touch target */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Primary Button - Burgundy brand color */
.btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 21, 68, 0.3);
}

/* Secondary Button - Gray */
.btn-secondary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary-hover) !important;
  border-color: var(--secondary-hover) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Outline Primary Button */
.btn-outline-primary {
  background: transparent !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 21, 68, 0.3);
}

/* ===========================
   Mobile Bottom Navigation
   =========================== */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e0e0e0;
  z-index: 99999 !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
  background: white;
  position: relative;
  z-index: 99999 !important;
}

.bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #666;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
  min-width: 60px;
  position: relative;
}

.bottom-nav-btn i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.bottom-nav-btn span {
  display: block;
  font-size: 0.7rem;
  white-space: nowrap;
}

.bottom-nav-btn.active {
  color: #800020;
}

.bottom-nav-btn:hover,
.bottom-nav-btn:focus {
  color: #800020;
  background: rgba(128, 0, 32, 0.05);
  border-radius: 8px;
}

/* Bottom Nav Overlays */
.bottom-nav-overlay {
  position: fixed;
  top: var(--navbar-height, 80px);
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 1000 !important; /* Lower than bottom bar */
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.bottom-nav-overlay.active {
  transform: translateY(0);
}

.bottom-nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: linear-gradient(135deg, #800020 0%, #a00028 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: inherit;
}

.bottom-nav-overlay-header h5 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.btn-close-overlay {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}

.btn-close-overlay:hover {
  background: rgba(255, 255, 255, 0.3);
}

.bottom-nav-overlay-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  padding-bottom: 80px; /* Extra padding at bottom to avoid content under bottom bar */
  -webkit-overflow-scrolling: touch;
}

/* More Menu Styles */
.more-menu-section {
  margin-bottom: 1.5rem;
}

.more-menu-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
  text-align: start;
}

.language-option:hover {
  background: #e9ecef;
  color: #333;
}

.language-option.active {
  background: rgba(128, 0, 32, 0.1);
  color: #800020;
  border: 2px solid #800020;
  text-align: start;
}

.language-flag {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #800020;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-inline-end: 0.75rem;
}

.language-name {
  font-size: 1rem;
  font-weight: 500;
}

.more-menu-item {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.more-menu-item:hover {
  background: #e9ecef;
  color: #800020;
}

.more-menu-item i {
  color: #800020;
  font-size: 1.2rem;
}

.more-menu-item .menu-icon {
  margin-inline-end: 0.75rem;
}

/* Hide hamburger menu on mobile when bottom nav is active */
@media (max-width: 991px) {
  .hamburger {
    display: none !important;
  }
  
  /* Add padding to bottom of body to account for bottom nav */
  body {
    padding-bottom: 70px;
  }
  
  /* Adjust mobile booking trigger position */
  .mobile-booking-trigger {
    bottom: 80px !important;
  }
}

/* Desktop - hide bottom nav */
@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* Outline Secondary Button */
.btn-outline-secondary {
  background: transparent !important;
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Link Button */
.btn-link {
  background: transparent !important;
  border: none !important;
  color: var(--primary-color) !important;
  text-decoration: none;
  padding: 0.6rem 1rem;
}

.btn-link:hover,
.btn-link:focus {
  color: var(--primary-hover) !important;
  text-decoration: underline;
  transform: none;
  box-shadow: none;
}

/* Text utility classes */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* ===========================
   Offers Section - Mobile/Desktop
   =========================== */

.offers-desktop {
  display: block;
}

.offers-mobile {
  display: none;
}

@media (max-width: 767px) {
  /* Force center alignment for chain covers on mobile */
  .hero-content .d-flex {
    justify-content: center !important;
    align-items: center !important;
  }
  
  .hero-text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .hero-buttons {
    justify-content: center !important;
  }
  
  .offers-desktop {
    display: none;
  }
  
  .offers-mobile {
    display: block;
  }
  
  .offers-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .offers-scroll-container::-webkit-scrollbar {
    display: none;
  }
  
  .offer-mobile-pill {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(127, 21, 68, 0.2);
  }
  
  .offer-mobile-pill:hover,
  .offer-mobile-pill:active {
    background: var(--primary-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 21, 68, 0.3);
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }
}