:root {
    --gold-primary: #C7A24F;
    --gold-light: #E4CA7A;
    --gold-dark: #A68741;
    --cream: #FAF9F6;
    --text-dark: #2C2C2C;
    --text-muted: #6C757D;
  
    --gold: #C7A24F;
    --navy: #0F1419;
    --gray-900: #111827;
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --font-display: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rtl {
  direction: rtl;
  text-align: right;
}

body {
  background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html[lang="ar"], 
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: var(--gold);
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: var(--gray-900) !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-smooth);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
html[lang="ar"] .dropdown-menu {
  right: auto;
  left: 0;
  text-align: right;
}
html[lang="ar"] .dropdown-menu-right {
  right: 0 !important;
  left: auto !important;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold);
}
html[lang="ar"] .mr-1,
html[dir="rtl"] .mr-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}
html[lang="ar"] .ml-auto,
html[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}
.navbar-nav .dropdown-toggle::after {
    margin-left: 0;
    margin-right: .255em;
}


section {
    background: url('../hotels/hotel-banner.png');
    background-size: cover;
    background-position: bottom;
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.15;
}
section .container {
  position: relative;
  z-index: 1;
}
.container[dir="rtl"] * {
    text-align: right;
}
section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  letter-spacing: -0.5px;
}
section p {
  font-size: 1.15rem;
  opacity: 0.95;
  font-weight: 300;
  margin: 0;
}



.search-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    background: white;
    overflow: visible;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}
.search-card .card-body {
    padding: 2rem;
}
.form-label {
    text-align: right;
    display: block;
    width: 100%;    
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.form-control {
    text-align: right;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(199,162,79,0.15);
}



.multiselect-dropdown { 
  position: relative; 
}
.multiselect-selected {
  cursor: pointer;
  user-select: none;
  display: flex; 
  align-items: center;
  min-height: 48px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.multiselect-selected:hover {
  border-color: var(--gold-primary);
}
.multiselect-options {
  position: absolute;
  left: 0; 
  right: 0; 
  top: 100%;
  background: #fff;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: none;
  max-height: 450px;
  overflow: hidden;
  z-index: 1050;
  margin-top: 0.5rem;
}
.multiselect-options.open { 
  display: block; 
}
.multiselect-search { 
  padding: 1rem; 
  border-bottom: 1px solid rgba(0,0,0,.075); 
}
.multiselect-search .form-control {
  border-radius: 8px;
}
.multiselect-options-list { 
  max-height: 380px; 
  overflow-y: auto; 
  overflow-x: hidden;
  padding: 0.75rem 1rem; 
}



.custom-control {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
  display: block;
  position: relative;
  min-height: 2.5rem;
  padding-left: 2.5rem;
  margin-bottom: 0.25rem;
}
.custom-control:hover { 
  background: #f7f7f7; 
}
.custom-control-input {
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem;
  opacity: 1;
  cursor: pointer;
  margin: 0;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding-left: 0.5rem;
}
.custom-control-label::before {
  position: absolute;
  top: 0.35rem;
  left: -1.75rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 2px solid #adb5bd;
  border-radius: 0.25rem;
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.custom-control-input:checked ~ .custom-control-label::after {
  position: absolute;
  top: 0.55rem;
  left: -1.5rem;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}




.multiselect-selected.has-value { 
  color: #212529; 
}


.searchBtn, 
.resetBtn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: white;
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(199,162,79,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.searchBtn:hover,
.resetBtn:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199,162,79,0.4);
}
.resetBtn {
  background: linear-gradient(135deg, #6c757d, #868e96);
  box-shadow: 0 4px 15px rgba(108,117,125,0.3);
}
.resetBtn:hover {
  background: linear-gradient(135deg, #868e96, #adb5bd);
  box-shadow: 0 6px 20px rgba(108,117,125,0.4);
}




#resultsCol h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

#resultCount {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}



.hotel-card { 
  display: flex; 
  padding: 0;
  border: none;
  border-radius: 16px; 
  margin-bottom: 1.5rem; 
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(199,162,79,0.1);
}
.hotel-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: rgba(199,162,79,0.3);
}
.hotel-card .row.no-gutters {
  align-items: stretch;
  width: 100%;
  margin: 0;
}
.hotel-card .col-md-4 {
  height: 200px;
  overflow: hidden;
  padding: 0;
}
.hotel-card .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hotel-card:hover .thumb {
  transform: scale(1.05);
}
html[dir="rtl"] .hotel-card .col-md-8 {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
.hotel-card .card-body {
  padding: 0;
}
.hotel-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hotel-room {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.hotel-location {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-align: right;
}
.hotel-size {
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: right;
}
.hotel-size small {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.size-value {
    font-weight: 600;
    color: var(--gold-dark);
}
html[dir="rtl"] .amenities-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    direction: rtl;
    margin-left: auto;
    margin-bottom: 10px;
}
.badge-gold-soft {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 999px;
    color: #7a5c1e; /* dark gold text */
    background: linear-gradient(135deg, #f6e7b2, #e2c97a);
    border: 1px solid #d6b45f;
    white-space: nowrap;
}
.badge-gold-soft:hover {
    background: linear-gradient(135deg, #ffe9a8, #e9c45a);
}



.btn-details {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(199,162,79,0.25);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-details:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(199,162,79,0.35);
  color: white;
  text-decoration: none;
}



.cta-dock {
    position: sticky;
    top: 90px;
    /*z-index: 50;*/
}
.cta-dock .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}
.cta-dock .card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.cta-dock .card-body {
  padding: 1.75rem;
}
.cta-dock .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.cta-dock h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-dock .text-muted {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-size: 0.95rem;
}
.whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a, #1fa855);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}


.btn-outline-secondary {
  border: 2px solid #e0e0e0;
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}
.btn-outline-secondary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}


@media (max-width: 991.98px) {
  section h1 {
    font-size: 2rem;
  }
  
  .search-card {
    margin-top: -2rem;
  }
  
  .hotel-card .col-md-4 {
    height: 180px;
  }
  
  .hotel-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0 2rem;
  }
  
  section h1 {
    font-size: 1.75rem;
  }
  
  section p {
    font-size: 1rem;
  }
  
  .search-card {
    margin-top: 0;
    border-radius: 12px;
  }
  
  .search-card .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hotel-card {  
    flex-direction: column; 
  }

  .hotel-card .col-md-4 {
    height: 200px;
    width: 100%;
  }

  .hotel-card .thumb {
    height: 200px;
  }

  .hotel-card .col-md-8 {
    padding: 1.25rem;
  }
  
  .hotel-name {
    font-size: 1.15rem;
  }
  
  .btn-details {
    width: 100%;
    justify-content: center;
  }
  
  .searchBtn,
  .resetBtn {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}



.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-left: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
  background: linear-gradient(135deg,#C7A24F,#E4CA7A);
  color: #fff;
  border: 0; 
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(199,162,79,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold:hover { 
  filter: brightness(1.05); 
  transform: translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-left: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}



@media (max-width:767.98px) {
    html[lang="ar"] .navbar-collapse {
        text-align: right;
    }
    html[lang="ar"] .navbar-nav {
        width: 100%;
        margin-right: 0 !important; /* override ml-auto mapping */
        margin-left: 0 !important;
        align-items: flex-end;  
    }
    html[lang="ar"] .navbar-nav .nav-item,
    html[lang="ar"] .navbar-nav .nav-link {
        width: 100%;
        text-align: right;
    }
    html[lang="ar"] .dropdown-menu {
        right: 0 !important;
        left: auto !important;
        text-align: right;
    }     
    #ft-container01, #ft-container02 {
        max-width: 490px;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-left: none;
        padding-bottom: 15px;
    }
}


