@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cairo", sans-serif;
  --nav-font: "Cairo", sans-serif;

}
* {
  font-family: "Cairo", sans-serif !important;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f4f1; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32220b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #736335; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(248, 242, 233, 0.9);  /* The default color of the main navmenu links */
  --nav-hover-color: #736335; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #736335; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #e7e5dd;
  --surface-color: #fffefb;
}

.dark-background {
  --background-color: rgba(15, 13, 7, 0.782);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(46, 43, 40, 0.577);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
p{
  font-family: var(--default-font);
}

ul{
  list-style: none;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  max-height: 50px;
  margin-top: -18px;
}

.header .logo img {
  height: 50px;
  margin-right: 8px;
}

/* .header .logo svg {
  height: 32px;
  margin-right: 8px;
} */

.header .logo h1 {
  font-size: 30px;
  /* margin: 0; */
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 24px;
  }
}
.auth-buttons{
  margin-bottom: 0px;
}
.auth-buttons a{
  transition: all 0.3s ease-in-out;

}
.auth-buttons a:hover{
    color: var(--accent-color);
  /* background-color: var(--contrast-color); */

}
html[dir="rtl"] .auth-buttons .custom-auth-btn{
  /* margin-right: 10px; */
  /* padding: 0px; */
}

.custom-auth-btn {
    /* background-color: transparent !important; */
    color: #fff;
    border: none;
    /* border-radius: 25px; */
    /* padding: 0.5rem; */
    font-weight: 600;
    /* font-size:14px ; */
    transition: all 0.3s ease;
}

.auth-buttons li a {
    /* background-color: var(--accent-color); */
    color: #fff;
    border: none;
    border-radius: 25px;
    /* padding: 0.5rem 1rem; */
    font-weight: 600;
    transition: all 0.3s ease-in-out;

}
.auth-buttons li a:hover ul li{
  opacity: 1;
  top: 100%;
  visibility: visible;
  
}
.auth-buttons .dropdown{
  position: relative;

}  
.auth-buttons li ul{
    margin: 0;
    padding: 12px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    top: 0px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.auth-buttons li ul li{
    transition: all 0.2s ease-in-out;
    width: 100%;
    padding: 6px 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.auth-buttons li ul li:hover{
  /* color: var(--accent-color); */
  color: var(--contrast-color);
  background-color: rgba(24, 14, 1, 0.686);

}
 .auth-buttons .dropdown:hover>ul {
    opacity: 1;
    top: 35px;
    visibility: visible;
  }

  .auth-buttons .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .auth-buttons .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  html[dir="rtl"] .auth-buttons .fa-sign-out-alt {
    transform: rotate(180deg);
    margin-right: 5px;
    
  }

.auth-buttons i{
  display: inline-block;
  color: #ccc;

}
.auth-buttons .auth-text{
  font-size: 22px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  /* padding: 8px 26px; */
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--accent-color);
  background-color: var(--contrast-color);
}
/* .link-im{
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
.link-im .dropdown{
  /*  */

}
@media (max-width: 992px){
    .header .logo{
    margin-right: auto ;
  }
  
  html[dir="rtl"] header .logo{
      margin-left: auto ;
    margin-right: 0px;

  }
  html[dir="rtl"] .mobile-nav-toggle{
    order: 1;
    margin: 0px 5px 0px 0px;
    
  }
}
@media (max-width:768px){
  .scrolled .header {
      height: 60px;
    padding: 5px 0px !important;
  }
  .header .logo{
    margin-right: auto ;
    margin-top: 0;
    height: 40px;
  }
  .header .logo img{
     height: 40px;
  }
  
  html[dir="rtl"] header .logo{
      margin-left: auto ;
    margin-right: 0px;
    /* margin-left: -30px; */
    /* 
    order: -1 !important;
    margin-right: -30px !important;
    margin-left: 100px !important; */
  }
  html[dir="rtl"] .mobile-nav-toggle{
    order: 1;
    margin: 0px 5px 0px 0px;
    /* margin-right: 100px !important; */
    /* margin-left: -30px !important; */
  }
  html[dir="rtl"] header .auth-buttons{
    margin: 0px;
  }
   header .auth-buttons{
     margin: 0px 5px 0px 0px;
   }
  html[dir="rtl"] .auth-buttons .custom-auth-btn{
  margin-right: 10px;
  padding: 0px;
}
.auth-buttons .custom-auth-btn{
  /* margin-right: 10px; */
  padding: 0px;}
}
@media (max-width: 1200px) {
   .header .logo{
    margin-right: auto ;
  }
  
  html[dir="rtl"] header .logo{
      margin-left: auto ;
    margin-right: 0px;
  }
  html[dir="rtl"] .mobile-nav-toggle{
    order: 1;
    margin: 0px 5px 0px 0px;
  }

  .header .btn-getstarted {
    order: -1;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(24, 14, 1, 0.8);
  height: 80px;
  padding:10px 0px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  /* .navmenu {
    padding: 0;
  } */

  /* .navmenu svg {
    height: 16px;
    padding-right: 10px;
  } */

  .navmenu ul {
    /* margin: 0; */
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  /* .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  } */

  /* .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  } */

  /* .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
*/
} 
 /* language */

/* .navmenu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color);
}

.navmenu .dropdown-item:hover,
.navmenu .dropdown-item.active {
  color: var(--nav-dropdown-hover-color);
} */

.hero-actions a,
button.btn
,.btn-gallery  {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}

[dir="rtl"] .hero-actions a,
[dir="rtl"] button.btn,
[dir="rtl"] .logo {
  flex-direction: row-reverse;
}

[dir="rtl"] button.btn {
  padding-right: 1rem;
}
[dir="rtl"] .navmenu .dropdown > a > i {
  margin-right: 0.5rem;
}



/* Navmenu - Mobile */
@media (max-width: 1199px) {
  html[dir="rtl"] header .logo{
    /* margin-left: -30px; */
    display: none;
  }
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    /* margin-right: -50px;
    margin-left: 5px; */
    cursor: pointer;
    transition: color 0.3s;
  }
.auth-buttons{
  /* margin-right: -35px; */
}

.auth-buttons .dropdown .toggle-dropdown{
  /* display: none; */
}
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    /* position: absolute; */
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer{
  font-size: 14px;
}
.footer .address {
  font-style: normal !important;
}
#footer-flex{
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  /* align-items: center; */
  gap: 40px !important;
  /* width: 100%; */
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}
/* .footer .container .row >div {
  width: 18%;
} */

.footer .icon {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  line-height: 0;
}
html[dir="rtl"] .footer .icon {
  margin-left: 10px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .row p ,strong{
  width:max-content;
}

.footer .address p {
  margin-bottom: 0px;
}
.footer p {
  font-size: 12px;
} 
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* width: 35px;
  height: 35px; */
  /* border-radius: 50%; */
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%); */
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 15px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  margin: 0px auto !important;
  padding: 10px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

@media (max-width: 768px){
  #footer-flex{
    gap: 0px !important;
  }
  .footer .container .row >div {
    margin-top: 30px;
    
  }
  .footer #social-links{
    margin-bottom: 20px;
  }
  
  .footer #social-links{
  /* margin-left: 30px; */
  padding-left: 30px;
}
html[dir="rtl"] .footer #social-links{
  /* margin-right: 30px; */
  /* margin-left: 0; */
   padding-right: 40px;
}


} 

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;    /* اختياري */
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* عموديًا */
  justify-content: center; /* أفقيًا */
  height: 80px; /* نفس ارتفاع الصورة */
  overflow: hidden;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

 h1.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
    color :var(--accent-color);
    margin-top: 10px;
}
@media (max-width: 768px){
   h1.page-title{
      font-size: 26px;
   }
}
 .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}
 .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
html[dir="rtl"]  .breadcrumbs ol li+li::before{
  padding-left: 10px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 768px){
.section-title h2{
font-size: 22px;
}
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hotel Hero Section
--------------------------------------------------------------*/
.hotel-hero {

  padding: 0;
  height:85vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hotel-hero .hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  /* padding: 120px 0; */
  /* top: 70px; */
}
@media (max-width: 1200px) {
/* .hotel-hero .hero-text {
  margin-bottom: 0px;
 
} */


}
.hotel-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hotel-hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.hotel-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--background-color), transparent 10%) 100%);
  z-index: 2;
}

.hotel-hero .container {
  position: relative;
  z-index: 3;
}

.hotel-hero .hero-text {
  margin-bottom: 0px;
}

.hotel-hero .hero-text h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hotel-hero .hero-text h1 {
    font-size: 22px !important;
  }
  /* .hotel-hero .hero-content{
    align-items: center;
  } */
}
@media screen and (min-height: 800px) and (max-height: 1000px){
   .hotel-hero .hero-content{
    align-items: center;
  }
}
@media screen and (min-height: 1001px){
    .hotel-hero .hero-content{
    align-items: center;
  }
}
@media screen and (max-height: 600px) {
 .hotel-hero .hero-content{
    align-items: end;
    padding-bottom: 30px;
  }
}
.hotel-hero .hero-text .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 0rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hotel-hero .hero-text .hero-subtitle {
    font-size: 16px !important;
  }
}

.hotel-hero .hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hotel-hero .hero-features {
    /* flex-direction: column; */
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .hotel-hero .hero-features .feature-item i{
    font-size: 1rem;
  }
    .hotel-hero .hero-features .feature-item span{
      font-size: 12px;
    }
}

.hotel-hero .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
}

.hotel-hero .hero-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.hotel-hero .booking-card {
  margin-bottom: 1rem;
  background-color: transparent;
}

.hotel-hero .booking-card .card {
  background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
  /* backdrop-filter: blur(5px); */
  border-radius: 15px;
  /* box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%); */
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%); */
}

.hotel-hero .booking-card .card-body {
  padding:10px;
}

.hotel-hero .booking-card .form-label {
  color: var(--heading-color);
  /* font-weight: 600; */
  /* margin-bottom: 0.5rem; */
  font-size: 15px;

}

.hotel-hero .booking-card input[type=date],
.hotel-hero .booking-card select {
  color: var(--default-color);
  background-color: var(--surface-color);
 box-sizing: border-box;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 6.8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hotel-hero .booking-card input[type=date]:focus,
.hotel-hero .booking-card select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}
.hotel-hero .booking-card button[type=submit]{
  
  /* padding: 0.5rem !important; */
}
.hotel-hero .booking-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  /* background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)); */
  /* border: 2px solid var(--accent-color); */
  border: none;
  border-radius: 8px;
  padding: 8.8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hotel-hero .booking-card .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  /* box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%); */
}

.hotel-hero .booking-card .btn-primary i {
  margin-right: 0.5rem;
}

.hotel-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  /* position: relative; */
}

@media (max-width: 768px) {
  .hotel-hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.hotel-hero .hero-actions .btn {
  position: relative;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; 
  background-color: var(--accent-color) ;
  color: var(--contrast-color) !important;
}
.hotel-hero .hero-actions .btn:hover{
  background-color: var(--contrast-color);
  color: var(--accent-color) !important;
}
/* .hotel-hero .hero-actions .btn::before{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1 ; 
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;

}
.hotel-hero .hero-actions .btn:hover::before{
  height: 100%;
  width: 100%;
  
} */

.hotel-hero .hero-actions .btn i {
  margin-right: 0.5rem;
}

/* .hotel-hero .hero-actions .btn.btn-outline-light {
  color: var(--default-color);
  border: 2px solid var(--default-color);
}

.hotel-hero .hero-actions .btn.btn-outline-light:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hotel-hero .hero-actions .btn.btn-light {
  background-color: var(--accent-color);
  color: var(--contrsat-color);
  border: none;
}

.hotel-hero .hero-actions .btn.btn-light:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
} */

.hotel-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 992px) {
  .hotel-hero .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hotel-hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 1.5rem;
  }
}


.hotel-hero .hero-stats .stat-item {
  text-align: center;
  padding-top: 0px;
  margin-top: 0px;
}

.hotel-hero .hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hotel-hero .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}

.hotel-hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .hotel-hero .booking-card .card-body {
    padding: 1rem;
  }

  .hotel-hero .hero-text h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hotel-hero {
 
    height: 100vh;
  }
  .hotel-hero .hero-content {
    height: 100%;

  }

  .hotel-hero .hero-text {
    font-size: 13px !important;
  }

  .hotel-hero .booking-card {
    /* margin-top: -20px; */
    /* display: none; */
  }
 

  .hotel-hero .booking-card .card-body {
    /* padding: .5rem; */
  }

  /* .hotel-hero .booking-card .row.g-3 {
    --bs-gutter-x: 0.75rem;
  } */

  .hotel-hero .hero-actions {
    /* margin-bottom: 2rem; */
  }
}

@media (max-width: 576px) {
  .hotel-hero .booking-card .row.g-3>div {
    margin-bottom: 1rem;
  }

  .hotel-hero .booking-card .col-md-2,
  .hotel-hero .booking-card .col-md-3 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home .about-content{
  margin-top: 20px;
  margin-bottom: 0px;
}
.about-home .about-content h2 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.about-home .about-content .lead {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 5px;
  font-weight: 500;
}

.about-home .about-content p {
  margin-bottom: 0px;
  line-height: 1.7;
  font-size: 1rem;
  font-family: var(--default-font);
}

.about-home .about-content .stats-row {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  margin: 10px 0;
}

@media (max-width: 576px) {
  .about-home .about-content .stats-row {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 15px;
  }
}

.about-home .about-content .stats-row .stat-item {
  position: relative;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

.about-home .about-content .stats-row .stat-item .stat-number {
  font-size: 32px;
  font-weight: bolder;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-home .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.about-home .about-images {
  position: relative;
  height: 270px;
}

.about-home .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

html[dir="rtl"] .about-home .about-images .main-image {
  left: 0;
  right: auto;
}



.about-home .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-home .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .experience-badge {
  position: absolute;
  bottom:2%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}
html[dir="rtl"] .about-home .about-images .experience-badge {
  left: 10%;
  right: auto;
}

.about-home .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-home .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-home .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.70rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-home .about-images {
    /* height: 400px; */
  }

  .about-home .about-images .main-image {
    width: 100%;
    height: 100%;
  }

  .about-home .about-images .secondary-image {
    width: 65%;
    height: 45%;
  }

  .about-home .about-images .experience-badge {
    right: 5%;
  }

  .about-home .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.25rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.6rem;
  }
  .about-home .about-content h2{
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column-reverse;
  }

  .about-home .about-content {
    text-align: center;
  }

  .about-home .about-content .stats-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
  margin-bottom: 2rem;
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
  height: auto !important;
}

.gallery-showcase .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-showcase .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-showcase .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-showcase .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery-showcase .gallery-item img {
    height: 200px;
  }
}

.gallery-showcase .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.gallery-showcase .btn-gallery {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 7px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000000 10%), color-mix(in srgb, var(--accent-color), #000000 30%));
}

.gallery-showcase .btn-gallery i {
  font-size: 1.2rem;
  margin-left: 5px;
}
html[dir="rtl"] .gallery-showcase .btn-gallery i {
  margin-right: 5px;
  margin-left: 0;
}

@media (max-width: 576px) {
  .gallery-showcase .btn-gallery {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Home 3 Section
--------------------------------------------------------------*/
.about-home-3 .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-home-3 .about-content .lead {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-home-3 .about-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-home-3 .about-content .stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .about-home-3 .about-content .stats-row {
    flex-direction: row;
    gap: 1rem;
  }
}

.about-home-3 .about-content .stats-row .stat-item {
  text-align: center;
}

.about-home-3 .about-content .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-home-3 .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.about-home-3 .about-content .about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about-home-3 .about-content .about-actions {
    flex-direction: column;
  }
}

.about-home-3 .about-content .about-actions .btn-primary,
.about-home-3 .about-content .about-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-home-3 .about-content .about-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.about-home-3 .about-content .about-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about-home-3 .about-content .about-actions .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.about-home-3 .about-content .about-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-home-3 .about-images {
  position: relative;
  /* height: 500px; */
}

.about-home-3 .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-home-3 .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-3 .about-images .secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-home-3 .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-3 .about-images .experience-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}

.about-home-3 .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-home-3 .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-home-3 .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-home-3 .about-images {
    /* height: 400px; */
    margin-top: 2rem;
  }

  .about-home-3 .about-images .main-image {
    width: 80%;
    height: 65%;
  }

  .about-home-3 .about-images .secondary-image {
    width: 65%;
    height: 45%;
  }

  .about-home-3 .about-images .experience-badge {
    right: 5%;
  }

  .about-home-3 .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about-home-3 .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.25rem;
  }

  .about-home-3 .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 992px) {
  .about-home-3 .row {
    flex-direction: column-reverse;
  }

  .about-home-3 .about-content {
    margin-top: 2rem;
    text-align: center;
  }

  .about-home-3 .about-content .stats-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Rooms 4 Section
--------------------------------------------------------------*/
.rooms-4 .filter-sort-bar {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
}

.rooms-4 .filter-sort-bar .filter-label,
.rooms-4 .filter-sort-bar .sort-label {
  font-weight: 900;
  color: var(--heading-color);
  font-size: 15px;
  margin-right: 5px;
  white-space: nowrap;

}

/* .rooms-4 .filter-sort-bar .sort-label{
  margin-right: 10px;
} */

.rooms-4 .filter-sort-bar .filter-group {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .rooms-4 .filter-sort-bar .filter-group {
    margin-top: 10px;
  }
}

.rooms-4 .filter-sort-bar .filter-select,
.rooms-4 .filter-sort-bar .sort-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 15px;
  padding: 8px 12px;
  background-color: var(--background-color);
  color: var(--default-color);
  font-size: 14px;
  /* min-width: 140px; */
}

.rooms-4 .filter-sort-bar .filter-select:focus,
.rooms-4 .filter-sort-bar .sort-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.rooms-4 .filter-sort-bar .sort-options {
  text-align: right;
}

@media (max-width: 992px) {
  .rooms-4 .filter-sort-bar .sort-options {
    text-align: left;
    margin-top: 5px;
    /* margin-left: -15px !important; */
  }
  html[dir="rtl"] .rooms-4 .filter-sort-bar .sort-options {
    text-align: right;
    margin-left: 0 !important;
    /* margin-right: -15px !important; */
  }
}

.rooms-4 .rooms-grid .room-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.rooms-4 .rooms-grid .room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.rooms-4 .rooms-grid .room-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.rooms-4 .rooms-grid .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rooms-4 .rooms-grid .room-image:hover img {
  transform: scale(1.05);
}

.rooms-4 .rooms-grid .room-image .room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rooms-4 .rooms-grid .room-image .room-price {
  position: absolute;
  top: 15px;
  right: 15px;
  /* background-color: var(--contrast-color); */
  background: color-mix(in srgb, var(--default-color), transparent 10%);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  backdrop-filter: blur(10px);
}
.rooms-4 .icon-saudi_riyal{
  font-size: 16px !important;
  /* color: red; */
  color: var(--contrast-color) !important; 
  font-weight: bolder;
  
}
html[dir="rtl"] .rooms-4 .icon-saudi_riyal {
  /* order: -1 !important; */
} 
.room-details .icon-saudi_riyal{
  font-size: 20px !important;
  color: var(--default-color);
}
/* .rooms-4 .rooms-grid .room-image .room-price img {
  width: 20px;
  
} */

.rooms-4 .rooms-grid .room-image .room-price span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}

.rooms-4 .rooms-grid .room-content {
  padding-inline: 25px;
   padding-block: 15px;
  display: flex;
  flex-direction: column;
  /* height: calc(100% - 250px); */
  position: relative;
}
html[dir="rtl"] .rooms-4 .rooms-grid .room-content{
  padding-block: 15px;
  padding-right: 10px;
  padding-left: 15px;
}
.rooms-4 .rooms-grid .room-content h4 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
html[dir="rtl"] .rooms-4 .rooms-grid .room-content h4 {
  /* font-size: 16px; */
}
.rooms-4 .rooms-grid .room-content .room-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  /* flex-grow: 1; */
   display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rooms-4 .rooms-grid .room-content .room-features {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  font-weight: bold;
  gap: 15px;
  /* margin-bottom: 25px; */
  padding-top: 10px;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

.rooms-4 .rooms-grid .room-content .room-features span {
  display: flex;
  align-items: center;
  gap: 5px;
 font-size: 12px;
  font-weight: 700px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
html[dir="rtl"] .rooms-4 .rooms-grid .room-content .room-features span{
    font-size: 12px;

}
.rooms-4 .rooms-grid .room-content .room-features span i {
  color: var(--accent-color);
  margin-right: 2px;
 font-size: 12px;
  font-weight: bolder;
}
html[dir="rtl"] .rooms-4 .rooms-grid .room-content .room-features span i{
  font-size: 12px;
}
.rooms-4 .rooms-grid .room-content .room-actions {
  display: flex;
  gap: 10px;
  /* width: 70%; */
  margin: 5px ;
  justify-content: end;
  position: relative;
  transition: all 0.3s ease-in-out;
  /* z-index: 0; */
}

@media (max-width: 576px) {
  .rooms-4 .rooms-grid .room-content .room-actions {
    /* flex-direction: column; */
  }
}

.rooms-4 .rooms-grid .room-content .btn-view-details {
  /* flex: 1; */
  padding-top: 10px;
  /* border: 2px solid var(--accent-color);
  background: transparent; */
  color: var(--accent-color);
  text-align: center;
  /* border-radius: 15px; */
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-4 .rooms-grid .room-content .btn-view-details:hover {
  /* background: var(--accent-color); */
  /* color: var(--contrast-color); */
}

.rooms-4 .rooms-grid .room-content .btn-book-now {
  flex: 1;
  padding: 12px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rooms-4 .rooms-grid .room-content .btn-book-now:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.rooms-4 .load-more-section {
  text-align: center;
  margin-top: 50px;
}

.rooms-4 .load-more-section .btn-load-more {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rooms-4 .load-more-section .btn-load-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.rooms-4 .load-more-section .showing-results {
  margin-top: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

@media (max-width: 768px) {
  .rooms-4 .filter-sort-bar {
    padding: 15px;
  }

  .rooms-4 .filter-sort-bar .filter-group {
    width: 100%;
    justify-content: flex-start;
  }

  .rooms-4 .filter-sort-bar .filter-select,
  .rooms-4 .filter-sort-bar .sort-select {
    /* min-width: 120px; */
  }

  .rooms-4 .rooms-grid .room-card .room-content {
    padding: 20px;
  }
  .rooms-4 .rooms-grid .room-card{
    width: 90%;
    margin: auto;
   }

  .rooms-4 .rooms-grid .room-card .room-content h4 {
    font-size: 13.5px;
    font-weight: bold;
  }

  .rooms-4 .rooms-grid .room-card .room-content .room-features {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-gallery .main-image-container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.room-details .room-gallery .main-image-container .main-room-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: zoom-in;
}

.room-details .room-gallery .main-image-container .image-zoom-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 10;
}

@media (max-width: 768px) {
  .room-details .room-gallery .main-image-container .image-zoom-container {
    display: none;
  }
}

.room-details .room-gallery .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.room-details .room-gallery .main-image-container .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.room-details .room-gallery .main-image-container .image-nav-btn.prev-image {
  left: 15px;
}

.room-details .room-gallery .main-image-container .image-nav-btn.next-image {
  right: 15px;
}

.room-details .room-gallery .thumbnail-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.room-details .room-gallery .thumbnail-gallery .thumbnail-item {
  flex: 1;
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.room-details .room-gallery .thumbnail-gallery .thumbnail-item.active,
.room-details .room-gallery .thumbnail-gallery .thumbnail-item:hover {
  border-color: var(--accent-color);
}

.room-details .room-gallery .thumbnail-gallery .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-details .room-details-sidebar {
  position: sticky;
  top: 120px;
}

@media (max-width: 991px) {
  .room-details .room-details-sidebar {
    position: static;
    margin-top: 40px;
  }
}

.room-details .room-header {
  margin-bottom: 20px;
}

.room-details .room-header h2 {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
}

.room-details .room-header .room-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-details .room-header .room-rating i {
  color: #ffc107;
  font-size: 16px;
}

.room-details .room-header .room-rating .rating-text {
  color: var(--default-color);
  font-weight: 500;
}

.room-details .room-price {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .room-price .price-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}

.room-details .room-price .price-value .currency {
  font-size: 1.2rem;
  color: var(--default-color);
  font-weight: 500;
}
.room-details .room-price .price-value .currency img {
  width: 20px !important;
}

.room-details .room-price .price-value .amount {
  font-size: 24px;
  color: var(--accent-color);
  font-weight: 700;
}

.room-details .room-price .price-value .period {
  font-size: 1rem;
  color: var(--default-color);
}

.room-details .room-price .price-note {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
}

.room-details .booking-form {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .booking-form .form-label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 8px;
}
.room-details .booking-form label{
  font-size: 14px;
  margin-bottom: 5px;
}
.room-details .booking-form .form-control {
  color: var(--default-color);
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  padding: 12px 15px;
}

.room-details .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.room-details .booking-form .btn-book {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.room-details .booking-form .btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.room-details .room-highlights {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .room-highlights h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.room-details .room-info-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 40px;
}
.room-details .room-info-tabs h3{

  font-size: 16px;
}
.room-details .room-info-tabs p{
  font-size: 14px;
}
.room-details .room-info-tabs .nav-tabs .nav-link {
  color: var(--default-color);
  border: none;
  padding: 15px 25px;
  font-weight: 500;
  position: relative;
  background: transparent;
}

.room-details .room-info-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background: transparent;
  border: none;
}

.room-details .room-info-tabs .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-color);
}

.room-details .room-info-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  background: transparent;
  border: none;
}

.room-details .room-info-tabs .room-description {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-details .room-info-tabs .room-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.room-details .room-info-tabs .room-features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .room-info-tabs .room-features-grid .feature-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}


.room-details .room-info-tabs .room-features-grid .feature-item .feature-info h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: var(--heading-color);
}

.room-details .room-info-tabs .room-features-grid .feature-item .feature-info p {
  margin: 0;
  color: var(--default-color);
  font-size: 14px;
}

.room-details .room-info-tabs .room-stats {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .room-info-tabs .room-stats h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.room-details .room-info-tabs .room-stats .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.room-details .room-info-tabs .room-stats .stat-item:last-child {
  border-bottom: none;
}

.room-details .room-info-tabs .room-stats .stat-item .stat-label {
  color: var(--default-color);
  font-weight: 500;
}

.room-details .room-info-tabs .room-stats .stat-item .stat-value {
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .room-info-tabs .amenities-section h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.room-details .room-info-tabs .amenities-section .amenities-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.room-details .room-info-tabs .amenities-section .amenities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--default-color);
}

.room-details .room-info-tabs .amenities-section .amenities-list li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.room-details .room-info-tabs .policies-section .policy-group {
  margin-bottom: 30px;
}

.room-details .room-info-tabs .policies-section .policy-group h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.room-details .room-info-tabs .policies-section .policy-group .policy-list {
  list-style: none;
  padding: 0;
}

.room-details .room-info-tabs .policies-section .policy-group .policy-list li {
  padding: 8px 0;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.room-details .room-info-tabs .policies-section .policy-group .policy-list li:last-child {
  border-bottom: none;
}

.room-details .room-info-tabs .policies-section .policy-group .policy-list li strong {
  color: var(--heading-color);
}

.room-details .room-info-tabs .reviews-section .review-summary {
  text-align: center;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.room-details .room-info-tabs .reviews-section .review-summary .overall-rating {
  margin-bottom: 30px;
}

.room-details .room-info-tabs .reviews-section .review-summary .overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.room-details .room-info-tabs .reviews-section .review-summary .overall-rating .rating-stars {
  margin-bottom: 10px;
}

.room-details .room-info-tabs .reviews-section .review-summary .overall-rating .rating-stars i {
  color: #ffc107;
  font-size: 20px;
  margin-right: 3px;
}

.room-details .room-info-tabs .reviews-section .review-summary .overall-rating .review-count {
  color: var(--default-color);
  margin: 0;
}

.room-details .room-info-tabs .reviews-section .review-summary .rating-breakdown .rating-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.room-details .room-info-tabs .reviews-section .review-summary .rating-breakdown .rating-item .rating-label {
  color: var(--default-color);
  font-size: 14px;
  min-width: 80px;
  text-align: left;
}

.room-details .room-info-tabs .reviews-section .review-summary .rating-breakdown .rating-item .rating-bar {
  flex: 1;
  height: 6px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 3px;
  overflow: hidden;
}

.room-details .room-info-tabs .reviews-section .review-summary .rating-breakdown .rating-item .rating-bar .rating-fill {
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.room-details .room-info-tabs .reviews-section .review-summary .rating-breakdown .rating-item .rating-value {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
  min-width: 30px;
  text-align: right;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item {
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 20px;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item:last-child {
  margin-bottom: 0;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info .reviewer-details h5 {
  margin: 0 0 5px 0;
  color: var(--heading-color);
  font-size: 1rem;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info .reviewer-details .review-stars {
  margin-bottom: 3px;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info .reviewer-details .review-stars i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .reviewer-info .reviewer-details .review-date {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

.room-details .room-info-tabs .reviews-section .reviews-list .review-item .review-text {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .room-details .room-gallery .main-image-container .main-room-image {
    height: 300px;
  }

  .room-details .room-gallery .thumbnail-gallery .thumbnail-item {
    min-width: 60px;
    height: 60px;
  }

  .room-details .room-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .room-details .room-features-grid .feature-item {
    padding: 15px;
  }

  .room-details .room-info-tabs .nav-tabs .nav-link {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.save-rate-btn {
  background-color: var(--accent-color);
}

 
.room-details table.table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-details table.table td {
  vertical-align: middle;
}

.room-details .badge {
  font-size: 0.85rem;
  padding: 0.4em 0.8em;
}
.room-details .card-body {
  padding: 0; 
}

.room-details .table {
  margin-bottom: 0;
  border-collapse: collapse;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden; 
 
}

.room-details .table th,
.room-details .table td {

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  text-align: left;
}

.rating-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.5rem; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-height: 350px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

.rating-form .form-group {
  margin-bottom: 1rem;
}

.rating-form label {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
  color: var(--accent-color);
}

.rating-form select,
.rating-form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(115, 99, 53,0.5);
  border-radius: 1rem;
  background-color: #f9f8fc; 
  font-size: 1rem;
  resize: vertical;
  transition: 0.3s ease;
}

.rating-form select:focus,
.rating-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px #73633533;
}

.rating-form .btn.save {
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;

}

.rating-form .btn.save:hover {
  background-color: var(--accent-color)
}
.rating-form {
  margin-right: 0;
  margin-left: 0;
  max-width: 100%; 
}
/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.amenities .amenity-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 15px 45px color-mix(in srgb, var(--default-color), transparent 75%); */
  box-shadow: 0 0 0 1px var(--accent-color);
}

.amenities .amenity-card .amenity-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.amenities .amenity-card .amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.amenities .amenity-card .amenity-image .amenity-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--contrast-color) ;
  backdrop-filter: blur(10px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color:color-mix(in srgb, var(--accent-color), transparent 10%);
  font-size: 20px;
  font-weight: bolder;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.amenities .amenity-card .amenity-content {
  padding: 15px;
  /* flex: 1; */
  display: flex;
  flex-direction: column;
}

.amenities .amenity-card .amenity-content h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.amenities .amenity-card .amenity-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.amenities .amenity-card .amenity-content .amenity-features {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 8px;
}

.amenities .amenity-card .amenity-content .amenity-features .feature-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px;
  /* width: 50%; */
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenities .amenity-card:hover .amenity-image img {
  transform: scale(1.1);
}

.amenities .additional-amenities {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .additional-amenities .service-icon {
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.amenities .additional-amenities .service-icon:hover {
  transform: translateY(-5px);
}

.amenities .additional-amenities .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.amenities .additional-amenities .service-icon h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

@media (max-width: 768px) {
  .amenities .amenity-card .amenity-content {
    padding: 20px;
  }

  .amenities .amenity-card .amenity-content h3 {
    font-size: 20px;
  }

  .amenities .amenity-card .amenity-content p {
    font-size: 14px;
  }

  .amenities .additional-amenities {
    padding: 30px 20px;
  }

  .amenities .additional-amenities .service-icon {
    padding: 15px 5px;
  }

  .amenities .additional-amenities .service-icon i {
    font-size: 30px;
  }

  .amenities .additional-amenities .service-icon h5 {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Amenities 2 Section
--------------------------------------------------------------*/
.amenities-2 .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.amenities-2 .amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px color-mix(in srgb, var(--default-color), transparent 75%);
}

.amenities-2 .amenity-card .amenity-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.amenities-2 .amenity-card .amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.amenities-2 .amenity-card .amenity-image .amenity-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 20px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.amenities-2 .amenity-card .amenity-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.amenities-2 .amenity-card .amenity-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities-2 .amenity-card .amenity-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.amenities-2 .amenity-card .amenity-content .amenity-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenities-2 .amenity-card .amenity-content .amenity-features .feature-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenities-2 .amenity-card:hover .amenity-image img {
  transform: scale(1.1);
}

.amenities-2 .additional-amenities {
  background:var(--background-color);
  border-radius: 12px;
  /* padding: 40px 30px; */
  margin-top: -60px;
}


.amenities-2 .additional-amenities .service-icon {
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.amenities-2 .additional-amenities .service-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px var(--accent-color);
  border-radius: 20px;
}

.amenities-2 .additional-amenities .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.amenities-2 .additional-amenities .service-icon h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

@media (max-width: 768px) {
  .amenities-2 {
    /* margin-top: -80px;
    margin-bottom: -70px; */
  }
  
  .amenity-card .amenity-content {
    /* padding: 20px; */
  }

  .amenities-2 .amenity-card .amenity-content h3 {
    font-size: 20px;
  }

  .amenities-2 .amenity-card .amenity-content p {
    font-size: 14px;
  }

  .amenities-2 .additional-amenities {
    padding: 30px 20px;
  }

  .amenities-2 .additional-amenities .service-icon {
    padding: 15px 5px;
  }

  .amenities-2 .additional-amenities .service-icon i {
    font-size: 30px;
  }

  .amenities-2 .additional-amenities .service-icon h5 {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
.offers .featured-offer {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.offers .featured-offer:hover {
  transform: translateY(-5px);
}

.offers .featured-offer .offer-image {
  position: relative;
  overflow: hidden;
}

.offers .featured-offer .offer-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offers .featured-offer .offer-image:hover img {
  transform: scale(1.05);
}

.offers .featured-offer .offer-image .offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.offers .featured-offer .offer-content {
  padding: 30px;
}

.offers .featured-offer .offer-content .offer-category {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offers .featured-offer .offer-content h3 {
  margin: 10px 0 15px;
  font-size: 28px;
  font-weight: 700;
}

.offers .featured-offer .offer-content .offer-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 25px;
}

.offers .featured-offer .offer-content .offer-includes {
  margin-bottom: 25px;
}

.offers .featured-offer .offer-content .offer-includes h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.offers .featured-offer .offer-content .offer-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offers .featured-offer .offer-content .offer-includes ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.offers .featured-offer .offer-content .offer-includes ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.offers .featured-offer .offer-content .offer-validity {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.offers .featured-offer .offer-content .offer-validity p {
  margin: 0;
  color: var(--heading-color);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.offers .featured-offer .offer-content .offer-validity p i {
  margin-right: 8px;
  color: var(--accent-color);
}

.offers .featured-offer .offer-content .offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.offers .featured-offer .offer-content .offer-cta .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offers .featured-offer .offer-content .offer-cta .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offers .featured-offer .offer-content .offer-cta .starting-price {
  color: var(--heading-color);
  font-size: 16px;
}

.offers .featured-offer .offer-content .offer-cta .starting-price strong {
  font-size: 20px;
  color: var(--accent-color);
}

.offers .offer-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.offers .offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.offers .offer-card .offer-card-image {
  position: relative;
  overflow: hidden;
}

.offers .offer-card .offer-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offers .offer-card .offer-card-image:hover img {
  transform: scale(1.05);
}

.offers .offer-card .offer-card-image .offer-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.offers .offer-card .offer-card-content {
  padding: 20px;
}

.offers .offer-card .offer-card-content h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.offers .offer-card .offer-card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.offers .offer-card .offer-card-content .offer-price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offers .offer-card .offer-card-content .offer-price .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
}

.offers .offer-card .offer-card-content .offer-price .discounted-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.offers .offer-card .offer-card-content .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.offers .offer-card .offer-card-content .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.offers .seasonal-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.offers .seasonal-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.offers .seasonal-banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers .seasonal-banner .banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.offers .seasonal-banner .banner-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--contrast-color);
}

.offers .seasonal-banner .banner-content .banner-text {
  flex: 1;
}

.offers .seasonal-banner .banner-content .banner-text .banner-label {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.offers .seasonal-banner .banner-content .banner-text h3 {
  color: var(--contrast-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offers .seasonal-banner .banner-content .banner-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.offers .seasonal-banner .banner-content .banner-text .banner-validity {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.8;
}

.offers .seasonal-banner .banner-content .banner-text .banner-validity i {
  margin-right: 8px;
  color: var(--accent-color);
}

.offers .seasonal-banner .banner-content .banner-cta {
  margin-left: 30px;
}

.offers .seasonal-banner .banner-content .banner-cta .btn-light {
  background: var(--contrast-color);
  color: var(--heading-color);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offers .seasonal-banner .banner-content .banner-cta .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
  .offers .featured-offer .offer-content {
    padding: 25px;
  }

  .offers .featured-offer .offer-content .offer-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .offers .featured-offer .offer-content .offer-cta .starting-price {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .offers .seasonal-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .offers .seasonal-banner .banner-content .banner-cta {
    margin-left: 0;
    margin-top: 20px;
  }

  .offers .seasonal-banner .banner-content .banner-text h3 {
    font-size: 26px;
  }

  .offers .featured-offer .offer-content {
    padding: 20px;
  }

  .offers .featured-offer .offer-content h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Restaurant Section
--------------------------------------------------------------*/
.restaurant .about-content h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.restaurant .about-content .fst-italic {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.restaurant .about-content .feature-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.restaurant .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.restaurant .about-content .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.restaurant .about-content .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.restaurant .about-content .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.restaurant .about-content .signature .chef-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.restaurant .about-content .signature img {
  max-width: 180px;
  height: auto;
  margin-top: 5px;
}

.restaurant .about-gallery {
  position: relative;
}

.restaurant .about-gallery .years-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.restaurant .about-gallery .years-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.restaurant .about-gallery .years-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.restaurant .about-gallery img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.restaurant .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .restaurant .about-gallery {
    margin-top: 2rem;
  }

  .restaurant .about-gallery .years-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .restaurant .about-gallery .years-badge .number {
    font-size: 2rem;
  }

  .restaurant .about-gallery .years-badge .text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .restaurant .about-gallery .years-badge {
    bottom: 15px;
    right: 15px;
  }

  .restaurant .about-content .signature img {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  color: var(--heading-color);
  background: var(--background-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: var(--background-color);
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/


.booking .booking-widget {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.booking .booking-widget::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}

.booking .booking-header {
  margin-bottom: 30px;
}

.booking .booking-header h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  
}

.booking .booking-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.booking .form-group {
  margin-bottom: 0;
}

.booking .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking .form-group .form-control,
.booking .form-group .form-select {
  height: 50px;
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.booking .form-group .form-control:focus,
.booking .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.booking .form-group .form-control::placeholder,
.booking .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.booking .form-group textarea.form-control {
  height: auto;
  resize: vertical;
}

.booking .form-group .text-muted {
  font-size: 0.8rem;
  margin-top: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%) !important;
}

.booking .booking-actions {
  margin-top: 30px;
}

.booking .booking-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.booking .booking-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), var(--contrast-color) 10%), var(--accent-color));
}

.booking .booking-actions .btn-primary i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.booking .booking-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.booking .booking-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.booking .booking-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 8px;
}

.booking .info-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.booking .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.booking .info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.booking .info-card .icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.booking .info-card .content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.booking .info-card .content p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}

.booking .info-card .content strong {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
}
.booking .card{
  position: relative;
  /* height: 90vh; */
}

.booking .card .card-header {
  padding: 20px 0px;
  margin-bottom: 20px;

 }
.booking .card-body p{
  padding: 12px ;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
  letter-spacing: 1.1px;
  text-align: start;
  /* margin-left: 0px; */
  /* text-align: start !important; */
}
.booking .card-body p#total{
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}
.booking .card-body p#total span{
  font-size: 16px;
  font-weight: 900;
  margin-left: 2px;
}
.booking .card-body p strong{
  font-size: 16px;

}
.booking .card-body label{
  margin-left: 10px;
}
.booking .card-body label i{
  margin-right: 5px;
  font-size: 17px;
  font-weight: 900;
  color: var(--accent-color);
}


.booking .card-body input, .card-body textarea{
  border-radius: 10px;
}
@media (max-width: 768px) {
  .booking .booking-widget {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .booking .booking-header h3 {
    font-size: 1.8rem;
  }

  .booking .booking-header p {
    font-size: 1rem;
  }

  .booking .booking-features {
    gap: 20px;
    margin-top: 20px;
  }

  .booking .booking-features .feature-item {
    font-size: 0.85rem;
  }

  .booking .booking-features .feature-item i {
    margin-right: 6px;
  }

  .booking .btn-primary {
    font-size: 1rem !important;
    padding: 12px 30px !important;
  }
}

@media (max-width: 576px) {
  .booking .booking-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .gallery .section-heading {
    font-size: 2rem;
  }
}

.gallery .section-subheading {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .gallery .section-subheading {
    font-size: 1rem;
  }
}

.gallery .gallery-filters {
  margin-bottom: 3rem;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .gallery-filters li {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  padding: 10px 20px;
  margin: 0 5px 10px 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery .gallery-filters li:hover,
.gallery .gallery-filters li.filter-active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .isotope-container .gallery-item {
  margin-bottom: 30px;
}

.gallery .isotope-container .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover {
  transform: translateY(-5px);
}

.gallery .isotope-container .gallery-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover img {
  transform: scale(1.05);
}

.gallery .isotope-container .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery .isotope-container .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}

.gallery .isotope-container .gallery-content {
  color: white;
  text-align: left;
  width: 100%;
}

.gallery .isotope-container .gallery-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.gallery .isotope-container .gallery-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery .isotope-container .gallery-content .gallery-link {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery .isotope-container .gallery-content .gallery-link:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery .isotope-container .gallery-content {
    padding: 15px;
  }

  .gallery .isotope-container .gallery-content h4 {
    font-size: 1.125rem;
  }

  .gallery .isotope-container .gallery-content p {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .events .section-subtitle {
    font-size: 2rem;
  }
}

.events .section-description {
  font-size: 1.1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.events .event-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.events .event-features .feature-item i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.events .event-features .feature-item span {
  color: var(--default-color);
  font-size: 1rem;
}

.events .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.events .hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.events .venues-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.events .venue-card {
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events .venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.events .venue-card .venue-image {
  position: relative;
}

.events .venue-card .venue-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.events .venue-card .venue-details {
  padding: 1.5rem;
}

.events .venue-card .venue-details h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.events .venue-card .venue-details p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.events .venue-card .venue-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.events .venue-card .venue-specs .spec-item {
  display: flex;
  align-items: center;
}

.events .venue-card .venue-specs .spec-item i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1rem;
}

.events .venue-card .venue-specs .spec-item span {
  color: var(--default-color);
  font-size: 0.9rem;
}

.events .venue-card .btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.events .venue-card .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .venue-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  border-color: color-mix(in srgb, var(--accent-color) 90%, black);
}

.events .packages-section .packages-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.events .packages-section .package-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.events .packages-section .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.events .packages-section .package-card .package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.events .packages-section .package-card .package-header h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.events .packages-section .package-card .package-header .package-subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.events .packages-section .package-card .package-content {
  flex: 1;
}

.events .packages-section .package-card .package-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.events .packages-section .package-card .package-content ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.events .packages-section .package-card .package-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.events .packages-section .package-card .package-content ul li:last-child {
  border-bottom: none;
}

.events .packages-section .package-card .package-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.events .packages-section .package-card .package-footer .btn {
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.events .packages-section .package-card .package-footer .btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.events .packages-section .package-card .package-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .testimonial-section {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
}

.events .testimonial-section .testimonial-content {
  max-width: 700px;
  margin: 0 auto;
}

.events .testimonial-section .testimonial-content blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.events .testimonial-section .testimonial-content blockquote:before {
  content: "";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -30px;
}

.events .testimonial-section .testimonial-content .testimonial-auth strong {
  display: block;
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.events .testimonial-section .testimonial-content .testimonial-auth span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Hotel Location Section
--------------------------------------------------------------*/
.hotel-location .map-wrapper {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hotel-location .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hotel-location .map-wrapper .location-pin {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.hotel-location .map-wrapper .location-pin i {
  margin-right: 5px;
  font-size: 14px;
}

.hotel-location .location-info {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hotel-location .location-info h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 14px;
}

.hotel-location .location-info .location-description {
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
   font-size: 14px;
}

.hotel-location .location-info .address-block,
.hotel-location .location-info .transport-info,
.hotel-location .location-info .contact-info {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hotel-location .location-info .address-block:last-child,
.hotel-location .location-info .transport-info:last-child,
.hotel-location .location-info .contact-info:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hotel-location .location-info .address-block h5,
.hotel-location .location-info .transport-info h5,
.hotel-location .location-info .contact-info h5 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hotel-location .location-info .address-block h5 i,
.hotel-location .location-info .transport-info h5 i,
.hotel-location .location-info .contact-info h5 i {
  color: var(--accent-color);
 padding-right: 10px;
  font-size: 18px;
}
html[dir="rtl"] .hotel-location .location-info .address-block h5 i,
html[dir="rtl"] .hotel-location .location-info .transport-info h5 i,
html[dir="rtl"] .hotel-location .location-info .contact-info h5 i {
    padding-left: 10px;
}

.hotel-location .location-info .address-block p,
.hotel-location .location-info .transport-info p,
.hotel-location .location-info .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 14px;
}

.hotel-location .location-info .address-block p:not(:last-child),
.hotel-location .location-info .transport-info p:not(:last-child),
.hotel-location .location-info .contact-info p:not(:last-child) {
  margin-bottom: 8px;
}

.hotel-location .location-info .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hotel-location .location-info .btn:hover {
  background: transparent;
  color: var(--accent-color);
}

.hotel-location .nearby-attractions {
  margin-top: 80px;
}

.hotel-location .nearby-attractions .attractions-title {
  text-align: center;
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.hotel-location .nearby-attractions .attractions-subtitle {
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 50px;
  font-size: 16px;
}

.hotel-location .nearby-attractions .attraction-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.hotel-location .nearby-attractions .attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .nearby-attractions .attraction-card .attraction-image {
  height: 200px;
  overflow: hidden;
}

.hotel-location .nearby-attractions .attraction-card .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.hotel-location .nearby-attractions .attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.hotel-location .nearby-attractions .attraction-card .attraction-content {
  padding: 25px;
}

.hotel-location .nearby-attractions .attraction-card .attraction-content h5 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 10px;
}

.hotel-location .nearby-attractions .attraction-card .attraction-content .distance {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;

}

.hotel-location .nearby-attractions .attraction-card .attraction-content .distance i {
  margin-right: 5px;
  font-size: 14px;
}
html[dir="rtl"] .hotel-location .nearby-attractions .attraction-card .attraction-content .distance i{
    margin-left: 5px;
}
.hotel-location .nearby-attractions .attraction-card .attraction-content p:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-location .transportation-section {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hotel-location .transportation-section .transport-title {
  text-align: center;
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 50px;
}

.hotel-location .transportation-section .transport-option {
  text-align: center;
  padding: 30px 20px;
  /* background: var(--accent-color); */
  background: var(--contrast-color);
   color: var(--accent-color); 
  border-radius: 15px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.hotel-location .transportation-section .transport-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hotel-location .transportation-section .transport-option .transport-icon {
  /* background: var(--contrast-color); */
  background: var(--accent-color); 
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hotel-location .transportation-section .transport-option .transport-icon i {
  font-size: 22px;
  /* color: var(--accent-color); */
  color: var(--contrast-color);
}

.hotel-location .transportation-section .transport-option h5 {
  /* color: var(--surface-color); */
    color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.hotel-location .transportation-section .transport-option p {
  /* color: var(--contrast-color); */
      color: var(--accent-color);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hotel-location .map-wrapper {
    height: 300px;
    margin-bottom: 30px;
  }

  .hotel-location .location-info {
    padding: 20px;
  }

  .hotel-location .nearby-attractions {
    margin-top: 50px;
  }

  .hotel-location .nearby-attractions .attractions-title {
    font-size: 20px;
  }

  .hotel-location .transportation-section {
    margin-top: 50px;
  }

  .hotel-location .transportation-section .transport-title {
    font-size: 18px;
  }

  .hotel-location .transportation-section .transport-option {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hotel-location .attraction-card .attraction-content {
    padding: 20px;
  }

  .hotel-location .transport-option .transport-icon {
    width: 70px;
    height: 70px;
  }

  .hotel-location .transport-option .transport-icon i {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
background-color: var(--contrast-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  color: var(--accent-color);
  justify-content: center;
  align-items: center;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  /* margin-bottom: 40px; */
}

.contact .info-item i {
  font-size: 18px;
  color:  var(--contrast-color);
  background: var(--accent-color);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 3px !important;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--default-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact iframe{
  width: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* .contact .info-item:hover i {
  background:  var(--contrast-color);
  color: var(--accent-color);
} */

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius:20px ;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
background-color: color-mix(in srgb, var(--accent-color) 80%, white);
  border: 0;
  padding: 10px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}



/* ترجع شكل الحقل الأصلي */
.flatpickr-input {
  background-color: transparent !important;
  border: 1px solid #ccc !important;
  color: white !important;
  height: auto !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  padding: 10px 15px !important;
  width: 100% !important;
}



/* Login Register Section */
.login-register .login-register-wraper {
  height: 60vh;
  margin-top: -50px;
  background-color: #ffffff;
  border-radius: 20px; 
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 380px;
}
.login-register .login-register-wraper img{
 width:200px;
 /* margin-top: 30px;
 margin-bottom: 30px;
 margin-left: 80px; */
 margin: 30px 0px 10px 80px;
}
.login-register .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.login-register .form-control {
  width: 93%;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s;
}

.login-register .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color)
}

.login-register .btn-primary {
  margin-top: 1rem;
  width: 100%;
  background-color: var(--accent-color);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.room-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.room-features-grid .feature-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.room-features-grid .feature-item i {
  font-size: 24px;
  color: var(--accent-color);
}

.room-features-grid .feature-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.room-features-grid .feature-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
#footer {
  bottom: 0;
  width: 100%;
}

html[lang="ar"] select {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] select.form-select {
  background-position: left 0.5rem center;
  /* padding-left: 2.5rem;
  padding-right: 0.75rem; */
    padding: 7.8px !important;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%) !important;
      width: 100%;
}

.booking-card .datepicker {
  background-color: var(--surface-color) !important;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%) !important;
  color: var(--default-color) !important;
  padding: 0.5rem !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  width: 100%;
}


.booking-card .datepicker:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%) !important;
  outline: none;
}


/* @media (max-width: 1300px) {
  [dir="rtl"] .header .logo {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
} */
@media (max-width: 1000px) {
  .about-home .about-content .about-actions {
    flex-direction: row;
    align-items: center;     
    justify-content: center;  
    text-align: center;
  }

  .about-home .about-content .about-actions a {
    width: 100%;
    max-width: 250px;      
    margin-bottom: 1rem;    
  }
}

.custom-auth-btn {
  /* background-color: var(--accent-color); */
  color: #fff; 
  border: none;
  border-radius: 25px;
  /* padding: 0.5rem; */
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active{
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

button.btn-confirm, 
button.btn-confirm:active ,
button.btn-confirm:hover ,
button.btn-confirm:focus{
  background-color: var(--accent-color);
  color: #fff;
  outline: none;
  border: none;
   -webkit-tap-highlight-color: transparent !important;
}

.card-header{
   background-color: var(--accent-color);
   text-align: center;
}
.card-header h5{
color: white;
}



.card-body p {
  text-align: center;
}

.form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color)
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus {
  background-color: var(--accent-color) !important;
  color: #fff !important;
  outline: none !important;
  border: none !important;
  -webkit-tap-highlight-color: transparent !important;
}


div.container h1.text-success {
  color: #32220b !important;
}
.align{
  text-align: right;
}

