/* ===========================
   Golden Crown Hotels - Main Styles
   Modern, Luxury Hotel Design
   =========================== */

/* Force light mode - prevent dark mode */
:root {
  color-scheme: light only;
}

html {
  color-scheme: light only;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #7f1544;
  --accent-color: #7f1544;
  --text-dark: #2d2d2d;
  --text-light: #2d2d2d;
  --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: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ===========================
   RTL Support - Complete Reset
   =========================== */

/* Base RTL/LTR Direction - NO text-align override to preserve center */
[dir="rtl"] {
  direction: rtl !important;
}

[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;
}

/* 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(--secondary-color) !important;
  border: none !important;
  color: var(--text-dark) !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(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  outline: 3px solid rgba(212, 175, 55, 0.5);
  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: 1rem 0;
  background: white !important;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', 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;
}

.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(--secondary-color) !important;
}

.navbar .nav-link::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 .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(--secondary-color);
}

.navbar .btn-primary {
  background: var(--secondary-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 21, 56, 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: 76px;
  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: 'Playfair Display', 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(--secondary-color);
  border-left-color: var(--secondary-color);
  padding-left: 1rem;
}

.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(--secondary-color);
  padding-right: 1rem;
  padding-left: 0;
}

[dir="rtl"] .hotel-name,
[dir="rtl"] .hotel-address {
  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-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 4px;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-dropdown-overlay.mobile-dropdown.active {
    max-height: 60vh;
    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(--secondary-color) !important;
  background: rgba(212, 175, 55, 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(--secondary-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(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.15);
}

.hotel-subnav.is-sticky .btn-primary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-dark) !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(212, 175, 55, 0.1);
  color: var(--secondary-color);
  outline: 2px solid rgba(212, 175, 55, 0.3);
  outline-offset: -2px;
}

.dropdown-item.active {
  background: var(--secondary-color);
  color: var(--text-dark);
  font-weight: 600;
}

.dropdown-header {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem 0.5rem;
  color: var(--secondary-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,
.hotel-hero {
  position: relative;
  min-height: 400px;
  height: 40vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%),
              url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920') center/cover;
  background-blend-mode: overlay;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(45, 45, 68, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease;
}

.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;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

/* ===========================
   Booking Widget
   =========================== */

.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;
}

.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(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.booking-widget .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
}

.booking-widget .btn-primary:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ===========================
   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: var(--text-gray);
}

/* ===========================
   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: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: #7f1544;
  color: #ffffff;
  padding: 4rem 0 2rem;
  border-top: none;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #c8be93;
}

.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: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #f4d03f;
  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;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .booking-widget .row > div {
    margin-bottom: 1rem;
  }

  [dir="rtl"] .booking-widget .row > div {
    direction: rtl;
  }

  [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
   =========================== */

.btn {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}