/*





*/

  @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

  body {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    line-height: inherit;
  }

  h1 {
    color: #252525;
    font-size: 3em;
    line-height: 50px;
  }

  h2 {
    color: #353535;
    font-size: 2em;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 1.5em;
    margin-bottom: 0;
  }

  h3,
  h3 a {
    color: #454545;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #ce3232;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    display: none;
  }


  #about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-text {
    flex: 1 1 500px;
    max-width: 600px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .about-text .subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
  }
  
  .about-map {
    flex: 1 1 400px;
    min-width: 300px;
  }
  
  .about-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* Responsive */
  
  .main-content {
    padding-top: 100px; /* navbar-ın altında başlasın */
  }
  

  .section-title {
    margin-top: 50px;
    padding-bottom: 40px;
  }


  .section-title h2 {
    margin: 0;
  }

  .section-title h4 {
    color: #bfbdbd;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
  }

  .overlay {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #team, 
  #services,
  #testimonial {
    text-align: center;
  }

  .about-image img,
  .team-thumb img {
    width: 100%;
  }
  
  #google-map iframe {
    border: 0;
    width: 100%;
    height: 390px;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #ad7335;
    border-radius: 50px;
    color: #f7f7f7;
    font-size: inherit;
    font-weight: normal;
    padding: 10px 25px;
    transition: 0.5s 0.2s;
    border-width: 0px;
    cursor: pointer !important;
  }
  




  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 20px 0;
  }



.hotels body {
    padding-top: 0;
}





  .has-submenu {
    position: relative;
  }
  
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
  }
  
  .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  .submenu li a {
    display: block;
    padding: 1px 2px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .submenu li a i {
    margin-right: 8px;
  }
  
  .submenu li a:hover {
    background: #f0f0f0;
  }
  

 




  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home {
    padding: 0;
  }


  .slider .owl-dots {
    position: absolute;
    top: 50%;
    right: 2em;
    justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot {
    display: block;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 7px 10px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #c7ac84;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background-color: rgba(42, 42, 42, 0.2);
    height: 100%;
    color: #fff;
    cursor: e-resize;
    padding: 4em 0 0 2em;
  }


  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }


.owl-carousel .caption,
.owl-carousel .caption * {
    cursor: default !important;
}

.owl-carousel .caption h1,
.owl-carousel .caption h3 {
  color: white !important;
}

.slider {
    background-image: url('../images/baku.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}


  .slider .item-second {
    background-image: url(../images/slider-image2.jpg);
  }

  .slider .item-third {
    background-image: url(../images/slider-image3.jpg);
  }
  

  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sound-btn:hover {
  background: rgba(255, 255, 255, 1);
}


.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 nisbəti üçün */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


  .slider .item-second .price-btn {
    background: #32c17c;
  }

  .slider .item-second .price-btn:hover {
    background: #25c76b;
  }

  .slider .item-third .price-btn {
    background: #32c17c;
  }

  .slider .item-third .price-btn:hover,
  .slider .item-third .price-btn:focus {
    background: #ce3232;
    border-color: transparent;
    color: #ffffff;
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    padding-bottom: 0;
  }

  .about-info {
    padding: 0 6em 5em 0;
  }

  .about-info .section-title {
    padding-bottom: 20px;
  }

  .about-image {
    position: absolute;
  }



  /*---------------------------------------
      TEAM              
  -----------------------------------------*/

  #team {
    background: #f9f9f9;
  }

  .team-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .team-info {
    padding: 10px 30px 20px 30px;
  }

  .team-thumb .team-hover {
    position: absolute;
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
  }

  .team-thumb:hover .team-hover {
    opacity: 0.95;
    transition-delay: 0.3s;
    transform: translateY(0);
  }

  .team-thumb img {
    transition: 0.5s 0.2s;
  }

  .team-thumb:hover img {
    transform: scale(1.2);
  }

  .team-thumb .social-icon li a {
    background: #292929;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #d9d9d9;
    font-size: 20px;
    margin: 15px 5px 0 5px;
  }

  .team-thumb .team-item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  .team-item h4 {
    color: #ffffff;
  }

  .team-info p {
    color: #bfbdbd;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
  }



  /*---------------------------------------
     MENU              
  -----------------------------------------*/

  #services {
    margin-top: -75px;
  }

  #services .container {
    width: 100%;
  }

  #services .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .service-thumb img {
    width: 100%;
    transition: 0.5s;
  }

  .service-thumb:hover img {
    transform: scale(1.15);
  }

  #services .service-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 100%;
  }

  .service-thumb .service-info {
    position: absolute;
    top: 60%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: left;
    padding: 25px 30px;
    transition: 0.5s 0.2s;
  }

  .service-info .menu-item {
    float: left;
  }

  .service-info .menu-price {
    float: right;
  }

  .service-info .menu-price span {
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    display: block;
    margin-top: 10px;
  }

  .service-thumb .service-info h3,
  .service-thumb .service-info p,
  .service-thumb .service-info span {
    transform: translateY(100%);
    opacity: 0;
    display: block;
    transition: 0.5s 0.2s;
    color: #ffffff;
    z-index: 2;
    position: relative;
  }

  .service-thumb .service-info h3 {
    margin-top: 0;
  }

  .service-thumb .service-info p {
    color: #d9d9d9;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .service-thumb:hover .service-info h3,
  .service-thumb:hover .service-info p,
  .service-thumb:hover .service-info span {
    transform: translateY(0px);
    opacity: 1;
  }

  .service-thumb:hover .service-info {
    background: rgba(0,0,0,0.8);
  }

  
  



  /*---------------------------------------
      TESTIMONIAL             
  -----------------------------------------*/

  #testimonial {
    background: url('../images/travel.jpg') center no-repeat;
    background-size: cover;
  }

  #testimonial .owl-dots {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
  }

  #testimonial .owl-theme .owl-dots .owl-dot,
  #testimonial .owl-theme .owl-dots .owl-dot span {
    display: inline-block;
  }

  #testimonial .owl-theme .owl-dots .owl-dot span {
    margin: 20px 5px;
  }

  #testimonial h2 {
    color: #ffffff;
  }

  #testimonial p,
  .tst-author h4,
  .tst-author span {
    display: inline;
  }

  #testimonial p {
    color: #d9d9d9;
    font-size: 20px;
    line-height: 35px;
  }

  .tst-author {
    margin-top: 20px;
  }

  .tst-author h4,
  .tst-author span {
    color: #b2b2b2;
  }

  .tst-author span {
    margin-left: 5px;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact .section-title {
    padding-bottom: 0;
  }

  #contact .text-success,
  #contact .text-danger {
    display: none;
  }

  #contact .form-control {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: all ease-in-out 0.4s;
  }

  #contact .form-control:hover,
  #contact .form-control:focus {
    border-bottom-color: #c9c9c9;
  }

  #contact input {
    height: 55px;
  }

  #contact button#cf-submit {
    background: #ce3232;
    border-radius: 0;
    border: 0;
    color: #ffffff;
    font-weight: bold;
    height: 50px;
  }

  #contact button#cf-submit:hover {
    background: #292929;
    color: #ffffff;
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 120px 0;
    padding-bottom: 80px;
  }

  footer .section-title {
    padding-bottom: 10px;
  }

  footer h2 {
    font-size: 20px;
  }

  footer a,
  footer p {
    color: #909090;
  }

  footer strong {
    color: #d9d9d9;
  }

  footer address p {
    margin-bottom: 0;
  }

  .footer-info,
  footer .social-icon {
    margin-top: 20px;
  }

  .footer-open-hour {
    background: #ce3232;
    background: url('../images/footer-open-hour-bg.jpg') center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-top: 0;
    padding: 40px 0 40px 80px;
    overflow: hidden;
    position: relative;
    z-index: 22;
    right: 20px;
    bottom: 20px;
  }

  .footer-open-hour::after {
    background: rgba(29,29,29,0.85);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2222;
  }

  .footer-open-hour h2 {
    color: #ffffff;
  }

  .footer-open-hour p {
    color: #d9d9d9;
  }

  .footer-open-hour strong {
    color: #f9f9f9;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #ce3232;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .social-icon li a:hover {
    background: #ce3232;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/















  /* Ümumi stil */
/* Ümumi form üslubları */
.trip-form {
  display: flex;
  align-items: flex-start;
  border-radius: 7px;
  padding: 40px;
  background: #fff;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.1);
}

/* Tablar üçün üslub */
.tabs {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
  margin-left: 120px;
}

.tab-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.tab-item {
  padding: 10px 20px;
  cursor: pointer;
  background: #ddd;
  border-radius: 5px 0 0 5px;
  margin-bottom: 5px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.tab-item.active {
  background: #bc7f35;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}






/* Inputlar və buttonlar */
.input-field {
  width: 100%;
  padding: 0px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: 14px;
}

.input-field:active, 
.input-field:focus {
  border-color: #000;
}

.input-wrap {
  position: relative;
}

.icon {
  .icon {
    display: block;
    margin-bottom: 10px;
  }
}

.icon img {
  height: 40px;
  width: auto;
  margin-top: 30px;
  margin-left: 10px;
}

.search-btn {
  background-color: #cf8939;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #b34200;
  color: white;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  background: linear-gradient(to bottom, #ffffff, #fcf9f4);
  background-size: 100% 100%;
}

.background-gif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('.gif') center center / cover no-repeat;
  opacity: 0.25;
  z-index: -2;
  pointer-events: none; /* klikləri bloklamasın deyə */
}




.property-section {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  background-repeat: repeat;
  position: relative;
  margin-top: 10px;
}

.hotels .property-section {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 10px;
}

.property-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0); /* 0.7 şəffaflıq dərəcəsi */
  z-index: 1;
}


.property-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.property-header {
  margin-top: -150px;
}

.property-header h1 {
  font-size: 32px;
  margin-bottom: 0px;
  color: #282828;
}
.property-header p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.property-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* Ümumi tab tərtibatı */
.tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Property tabları üçün xüsusi tərtibat */
.property-tab-btn {
  padding: 10px 20px;
    border: 1px solid #a47142;
    background: white;
    color: #a47142;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.property-tab-btn:hover {
  background: #a47142;
  color: white;
}

.property-tab-btn.active {
  background-color: #a47142;
  color: white;
}

/* Entertainment tabları üçün xüsusi tərtibat */
.entertainment-tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.entertainment-tab-btn:hover {
  background: #a47142;
  color: white;
}

.entertainment-tab-btn.active {
  background-color: #a47142;
  color: white;
}

.status-text {
  font-weight: bold;
  margin-right: 15px; /* və ya padding-left: 5px */
}

.status-text.open {
  color: #a47142;
}

.status-text.closed {
  color: rgb(113, 113, 113);
}


.property-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating i {
  color: #decd8b;  /* qızılı ulduz */
  font-size: 18px;
  margin-right: 4px;
  margin-bottom: 10px;
}

.right .fa-wifi {
  color: #25c76b;
}

.right .fa-car {
  color: #c75b25;
  margin-left: 5px;
}

.right .fa-shield-dog {
  color: #25a4c7;
  margin-left: 5px;
}


.tour-section {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.tours .tour-section {
  width: 100%;
  padding: 0px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.tour-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0);
  z-index: 1;
}

.tour-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tour-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tour-header p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.tour-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tour-tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tour-tab-btn:hover {
  background: #a47142;
  color: white;
}

.tour-tab-btn.active {
  background-color: #a47142;
  color: white;
}

.entertainment-tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.entertainment-tab-btn:hover {
  background: #a47142;
  color: white;
}

.entertainment-tab-btn.active {
  background-color: #a47142;
  color: white;
}

.status-text {
  font-weight: bold;
  margin-right: 15px;
}

.status-text.open {
  color: #a47142;
}

.status-text.closed {
  color: rgb(113, 113, 113);
}

.tour-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating i {
  color: #decd8b;
  font-size: 18px;
  margin-right: 4px;
  margin-bottom: 10px;
}

.right .fa-wifi {
  color: #25c76b;
}

.right .fa-car {
  color: #c75b25;
  margin-left: 5px;
}

.right .fa-shield-dog {
  color: #25a4c7;
  margin-left: 5px;
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card img:hover {
  transform: scale(1.20);
}

.tour-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.tour-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: start;
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-title {
  font-weight: bold;
  margin-top: 10px;
}

.details {
  color: #5a5a5a;
  font-size: 15px;
  margin-bottom: 5px;
  padding-left: 0;
}

.details li {
  margin-left: 20px;
  list-style-type: disc;
}

.tour-details .left {
  text-align: left;
}

.tour-details .right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-details .right .icons {
  display: flex;
  gap: 8px;
}


.details {
  font-size: 16px;
  font-weight: normal;
  color: #5a5a5a;
}






.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card img:hover {
  transform: scale(1.20);
}

.property-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.property-info h3 {
  display: block;
  font-size: 18px;
  text-align: start;
  overflow: visible;
  height: auto;
}

.property-card h3 {
  visibility: visible;
  opacity: 1;
}

.property-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-details h3 {
margin-top: 20px !important;
 margin-bottom: 10px !important;
 color: #000;
 font-family: 'Montserrat', sans-serif;
}


.entertainment-details h3 {
  margin-top: 20px;
 margin-bottom: 10px;
 color: #000;
 font-family: 'Montserrat', sans-serif;
}



.property-details .left {
  text-align: left;
}

.property-details .right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* və ya 'center' — istəyə görə */
}

.property-details .right .icons {
  display: flex;
  gap: 8px; /* ikonlar arasında boşluq */
}

.details {
  font-size: 16px;
  font-weight: normal;
  color: #5a5a5a;
}

.dropdown {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

.total-price {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #a47142;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #a47142;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: rgb(155, 67, 16);
  color: #ffffff;
}





.entertainment-section {
  width: 100%;
  padding: 50px 0;
  display: flex;
  background-color: transparent;
  justify-content: center;
  position: relative;
}



.entertainment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0); /* 0.7 şəffaflıq dərəcəsi */
  z-index: 1;
}


.entertainment-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.entertainment-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.entertainment-header p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.entertainment-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #a47142;
  background: white;
  color: #a47142;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: #a47142;
  color: white;
}

.entertainment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.entertainment-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.entertainment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.entertainment-card img:hover {
  transform: scale(1.20);
}

.entertainment-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.entertainment-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: start;
}

.entertainment-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entertainment-details .left {
  text-align: left;
}

.entertainment-details .right {
  text-align: right;
}

.left-column {
  position: sticky;
  top: 100px; /* navbar hündürlüyünə uyğun olaraq tənzimlə */
  height: calc(100vh - 100px); /* ekranın tam hündürlüyü - navbar */
  overflow-y: auto;
  width: 300px;
  padding: 20px;
  border-right: 1px solid #d2bcab;
  float: left;
  z-index: 1;
}

.right-column {
  margin-left: 320px; /* left-column width + spacing */
  padding: 0px;
}

/* Filter bölməsi */
.filters {
  flex: 0 0 280px;
  background-color: #ffffff00;
  padding: 20px;
  border-radius: 8px;
  text-align: left; /* Yazıları sola hizalayır */
}

.filters h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.filter-category {
  margin-bottom: 20px;
}

.filter-category h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
  text-align: left; /* Başlıqları sola hizalayır */
}

/* Price Range */
.filter-category .price-range {
  width: 100%;
  margin-top: 10px;
}

.filter-category input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

.filter-category input[type="range"]:focus {
  outline: none;
  background: #cbcbcb;

}

.filter-category input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #a47142; /* Dairənin rəngi burada dəyişir */
  border: 2px solid #fff; /* Dairənin ətrafında ağ sərhəd */
  cursor: pointer;
}

.filter-category input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a9d8f; /* Dairənin rəngi burada dəyişir */
  border: 2px solid #fff; /* Dairənin ətrafında ağ sərhəd */
  cursor: pointer;
}

.filter-category input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a9d8f; /* Dairənin rəngi burada dəyişir */
  border: 2px solid #fff; /* Dairənin ətrafında ağ sərhəd */
  cursor: pointer;
}

#price-range-label {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 14px;
  font-weight: normal;
  text-align: left; /* Qiymət etiketini sola hizalayır */
}

/* Checkbox stilini təkmilləşdirmək */
.filters label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
  font-weight: normal;
  color: #555;
  text-align: left; /* Checkbox yazılarını sola hizalayır */
}

.filters input[type="checkbox"] {
  margin-right: 10px;
}



.tour-filters {
  flex: 0 0 280px;
  background-color: #ffffff00;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.tour-filters h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.tour-filter-category {
  margin-bottom: 20px;
}

.tour-filter-category h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
  text-align: left;
}

/* Price Range */
.tour-filter-category .tour-price-range {
  width: 100%;
  margin-top: 10px;
}

.tour-filter-category input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

.tour-filter-category input[type="range"]:focus {
  outline: none;
  background: #cbcbcb;
}

.tour-filter-category input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #a47142;
  border: 2px solid #fff;
  cursor: pointer;
}

.tour-filter-category input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a9d8f;
  border: 2px solid #fff;
  cursor: pointer;
}

.tour-filter-category input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a9d8f;
  border: 2px solid #fff;
  cursor: pointer;
}

#tour-price-range-label {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}

/* Checkbox stilini təkmilləşdirmək */
.tour-filters label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
  font-weight: normal;
  color: #555;
  text-align: left;
}

.tour-filters input[type="checkbox"] {
  margin-right: 10px;
}



.place-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.5s ease;
  background-size: cover;
  background-position: center;
  
}

.place-card:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0)), url('images/your-image.jpg');
}


.place-name {
  color: white;
  font-weight: bold;
  font-size: 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.place-info {
  margin-top: -100px;
}

.gallery-main {
  overflow: hidden; /* Həddindən artıq hissəni gizlət */
  position: relative;
}

.gallery-main img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 1s ease-in-out; /* Şəkilin sürüşmə effekti */
}

.gallery-controls {
  text-align: center;
  margin: 10px 0;
}

.gallery-controls button {
  padding: 6px 14px;
  font-size: 24px;
  background-color: #a47142;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.gallery-controls button:hover {
  background-color: #8c5f2f;
}

.gallery-thumbnails img {
  width: 80px;
  margin: 5px;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 6px;
  transition: opacity 0.3s, border 0.3s;
}

.gallery-thumbnails img.active {
  opacity: 1;
  border: 2px solid #a47142;
}





.region-filters {
  flex: 0 0 280px;
  background-color: #ffffff00;
  padding: 10px;
  border-radius: 8px;
  text-align: left; /* Yazıları sola hizalayır */
}

.select-all-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}


.region-filters .choose-city {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 sütunlu düzülüş */
  gap: 10px;
}

.region-filters label {
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: normal;
  margin-top: -5px;
}

.region-filters input[type="checkbox"] {
  display: none;
}

/* Custom checkbox */
.region-filters input[type="checkbox"] + span {
  width: 18px;
  height: 18px;
  border: 2px solid #c49e7f;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
  margin-right: 10px;
}

/* Check icon */
.region-filters input[type="checkbox"]:checked + span {
  margin-right: 10px;
  background-color: #c49e7f;
  border-color: #c49e7f;
}

.region-filters input[type="checkbox"]:checked + span::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Hover effekti */
.region-filters input[type="checkbox"]:hover + span {
  border-color: #c88650;
  background-color: #c88650;
  margin-right: 10px;
}



/* Galereya əsas stili */
.gallery {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  background-repeat: repeat;
  position: relative;
  margin-top: 10px;
}

/* Region grid - 4 sütunlu grid */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 50px;
}

/* Region item (kart) stili */
.region-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

.region-item img {
  height: 200px;
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.region-item h3 {
  font-size: 14px;
}

.region-item:hover img {
  transform: scale(1.05);
}




/* Popup konteyneri */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(116, 116, 116, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto; /* Popup içində sürüşdürmə */
}

/* Popup içeriği */
.popup-content {
  background: #ffffffd9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  max-height: 80%; /* Popupun maksimum hündürlüyü */
  overflow-y: auto; /* Yuxarı-aşağı sürüşdürmə */
  position: relative;
  width: 900px; /* Popupın sabit eni */
  height: 700px; /* Popupın sabit hündürlüyü */
}

/* Əsas şəkil */
.main-image {
  width: 70%; /* Popupın eni ilə bərabər olmalıdır */
  height: 50%; /* Popupın hündürlüyü ilə bərabər olmalıdır */
  object-fit: cover; /* Şəkil kəsiləcək və popupın ölçüsünə uyğun olacaq */
  border-radius: 10px;
}

/* Başlıq və təsvir */
.popup-content h2 {
  margin-top: 10px;
  font-size: 24px;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

/* Bağla düyməsi */
.close-btn {
  background: #ab6e12;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  float: right;
  margin-bottom: 10px;
}

.close-btn:hover {
  background: #555;
}

/* Thumbnail şəkillər sırası */
.thumbnail-row {
  display: flex;
  margin-top: 15px;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Thumbnail şəkillər */
.thumbnail-row img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.thumbnail-row img.active {
  opacity: 1;
  border: 2px solid #333;
}

/* Popupdan kənara kliklə bağlama */
.popup.active {
  display: flex;
}

/* Popupdan kənara kliklə bağlama */
.popup-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto; /* Popup içində sürüşdürmə */
}





.left-column {
  /* Digər stil xüsusiyyətləri */
  overflow: scroll; /* Scroll-ı aktiv saxla */
}

/* Webkit-based browserlarda scrollbar-ı gizlətmək */
.left-column::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Scrollbar düymələrinin gizlədilməsi */
.left-column::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Scrollbar track-in gizlədilməsi */
.left-column::-webkit-scrollbar-track {
  background: transparent;
}

#services {
  scroll-margin-top: 10px;
}


.reserve-btn {
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #cebb8e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.reserve-btn:hover {
  background-color: #dbba72;
}


/* Search container */
.search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Search bar */
.search-bar {
  width: 100%;
  padding: 6px 40px 6px 15px; /* Extra space for the icon */
  font-size: 14px;
  border: 2px solid #bc967b;
  border-radius: 25px; /* Rounded corners */
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

/* Focus effect for the input */
.search-bar:focus {
  border-color: #c06d1f; /* Blue border on focus */
}

/* Search icon */
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #aaa;
  pointer-events: none; /* Prevent icon from interfering with the input */
}



.tour-search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Search bar */
.tour-search-bar {
  width: 100%;
  padding: 6px 40px 6px 15px; /* Extra space for the icon */
  font-size: 14px;
  border: 2px solid #bc967b;
  border-radius: 25px; /* Rounded corners */
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

/* Focus effect for the input */
.tour-search-bar:focus {
  border-color: #c0771f; /* Blue border on focus */
}

/* Search icon */
.tour-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #aaa;
  pointer-events: none; /* Prevent icon from interfering with the input */
}


.logo-slider-section {
  background: transparent;
  padding: 10px 0;
  overflow: hidden;
  margin-top: 50px;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: calc(200%); /* Daha uzun track üçün */
  animation: scrollLeft 25s linear infinite;
}

.logo-track img {
  width: 150px;
  height: auto;
  margin: 0 30px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



.badge-track {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  justify-content: left;
  align-items: left;
  gap: 20px;
  flex-wrap: nowrap;
  margin-left: 0px;
  margin-top: -80px;
}

.custom-logo {
  width: 70px !important;
  height: auto !important;
  object-fit: contain;
  display: block !important;
}



@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .badge-track {
    flex-wrap: nowrap;
  }
}





@keyframes shine {
  0% {
      background-position: -100% 0;
  }
  100% {
      background-position: 100% 0;
  }
}





/* Navbar tərtibatı */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background-color 0.3s ease;
  margin-top: -1px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: transparent;
}

.logo img {
  height: 53px;
  width: 100px;
  margin-top: 30px;
  margin-left: 30px;
}



/* Mərkəzdə olan menyu */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links ul {
  display: flex;
  list-style-type: none;
  margin-top: 30px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #393939;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b9a88a; /* Hover effekti */
}

.nav-links a.active {
  color: #a79370;
}

.navbar.scrolled .nav-links a:hover {
  color: #a79370; /* Hover effekti */
}

#home .nav-links a {
  color: #dfdfdf;
}

#home .nav-links a:hover {
  color: #dfd0b6;
}

#home .nav-links a.active {
  color: #dfd0b6;
}

/* Sağdakı düymələr */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-buttons a {
  text-decoration: none;
  color: #e8e8e8;
  margin-right: 20px;
  margin-top: 25px;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 30px;
}

.right-buttons .call-btn {
  background-color: #ffffff;
  color: #363636;
  border: 1px solid #e6e6e6;
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.right-buttons .call-btn:hover {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: #363636 !important;
}


.payment-btn {
  background-color: #34ada3;
  color: #f3f3f3 !important;
  border: 1px solid #34ada3;
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
}


.payment-btn:hover {
  background-color: #238a61;
  border-color: #238a61;
  color: #f3f3f3;
}


.navbar.scrolled .nav-links a.active {
  color: #a79370; /* Hover effekti */
}





.navbar.scrolled {
  background-color: #ffffff;
  background-size: 400% 400%;
  animation: gradientLoop 15s ease infinite;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 120px;
}


@keyframes gradientLoop {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.navbar.scrolled a {
  color: #262626;
}

#home .navbar.scrolled a {
  color: #262626;
}

#home .navbar.scrolled a:hover {
  color: #a79370;
}

#home .navbar.scrolled a.active {
  color: #a79370;
}










.flag-icon {
  width: 30px;
  height: auto;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 25px;
  margin-right: 20px;
}

#language-toggle {
  background: none;
  border: none;
  padding: 0;
}


.mobile-buttons {
  display: flex;
  gap: 20px;
  position: fixed;
  top: 30px;
  z-index: 9000;
  gap: 10px;
  right: 20px;
}


.mobile-buttons button {
  background: none;
  border: none;
  padding: 0px;
  font-size: 22px;
  cursor: pointer;
  color: #d1bba4;
  align-items: center;
  justify-content: center;
}

.filter-toggle,
  .menu-toggle {
  display: none;
}

.sidebar-filters {
  position: fixed;
  left: -250px; /* Başlanğıcda soldan kənarda gizli */
  top: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(to bottom, #fefefeb7, #e9deda), url('/images/ui/background03.gif') center center / cover no-repeat;
  transition: 0.3s;
  padding: 20px;
  z-index: 9999;
  overflow-y: auto;
}

.sidebar-filters::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Arxa fon da görünməz olsun */
}

/* Firefox üçün */
.sidebar-filters {
  scrollbar-width: none; /* Scrollbar yox kimi */
  -ms-overflow-style: none; /* IE/Edge üçün */
}


/* Sidebar açıldıqda */
.sidebar-filters.open {
  left: 0;
}

/* Filter toggle düyməsinin stili */
.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: rgb(207, 186, 137);
  font-size: 30px;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: rgb(207, 186, 137);
  font-size: 30px;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 10px;
}

.mobile-menu {
  display: none;
}


.region-city {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: -10px;
  color: #444;
}

.region-city .location-icon {
  color: #ff0000;
  margin-left: 6px;
  font-size: 16px;
}



.instagram-widget {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.instagram-widget h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.instagram-embed-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.instagram-embed-wrapper blockquote.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}



.exhibition-slider-section {
  overflow: hidden;
  padding: 2rem 0;
  background: transparent;
}

.exhibition-slider {
  white-space: nowrap;
  position: relative;
}

.exhibition-track {
  display: flex;
  animation: scrollExhibitions 20s linear infinite;
}

.exhibition-card {
  min-width: 250px;
  max-width: 250px; /* genişlik sabitlənir */
  margin: 0 1rem;
  background-color: #ffffff70;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s;
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exhibition-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0.5rem;
}


.exhibition-card h3 {
 font-size: 14px;
 color: #363636;
}

.exhibition-card p {
  font-size: 12px;
}

.exhibition-card a {
  font-size: 12px;
  color: #232323;
  margin-top: -10px;
}

.exhibition-date {
  color: #8a4a23;
}


.exhibition-card:hover {
  transform: scale(1.05);
}

@keyframes scrollExhibitions {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.exhibition-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  user-select: none;
  padding-right: 1rem; /* boşluq əlavə olunur */
  margin-right: -50rem; /* scroll "cut" problemini düzəldir */
}


.exhibition-track.dragging {
  cursor: pointer;
}

.exhibition-track::-webkit-scrollbar {
  display: none;
}




















/* Mobile Responsive Parameters */

@media (max-width: 768px) {


  h1 {
    font-size: 2.1em;
  }

  h2 {
    font-size: 1.8em;
  }

  .service-thumb .service-info {
    top: 60%;
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .filter-toggle,
  .menu-toggle {
  display: flex;
}
  
  .logo img {
    height: 50px;
    width: auto;
    margin-top: 30px;
    margin-left: 10px;
  }

  .left-column {
    display: none;
  }
  
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 150px;
    height: 100vh;
    background: linear-gradient(to bottom, #fefefe, #e9deda);
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    padding: 2rem 1rem;
    list-style: none;
  }

  .mobile-menu .payment-btn {
    text-align: center;
    margin-left: 15px;
  }
  
  .mobile-menu.open {
    right: 0;
  }

  .mobile-menu .logo img {
    height: 50px;
    width: 50px;
  }
  
  .mobile-menu ul {
    margin-top: 50px !important;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu ul li {
    margin: 10px 20px;
  }
  
  .mobile-menu ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
  }

  .mobile-menu ul li a.active {
    color: #9e8b4e;
  }
  
  .filter-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .search-container {
    margin-top: 20px;
  }
  

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-map {
    width: 100%;
    max-width: 100%;
  }

  .about-map iframe {
    min-height: 300px;
  }

  .section-title {
    margin-top: -10px;
    margin-left: 20px;
  }

  .custom-navbar .navbar-brand {
    margin-top: 0px;
    margin-left: 20px;
  }

  .navbar-toggle {
  margin-top: 20px;
  }




  

  .slider .col-md-8 {
    padding-left: 0;
  }


  .caption .container {
    margin-left: -20px;
  }



  .about-info {
    padding-right: 0;
  }

  .about-image {
    position: relative;
  }


  section {
    padding: 130px 0;
  }

  .custom-navbar .price-btn {
    margin-left: 1em;
  }

  .slider .item {
    background-position: center;
  }

  .about-info {
    padding: 0;
  }

  .team-info {
    margin-bottom: 50px;
  }

  #services .service-thumb {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  #testimonial {
    background-position: 50% 0 !important;
  }

  #google-map,
  .footer-info {
    margin-bottom: 50px;
  }


  .custom-navbar .nav li a {
    padding-right: 10px;
    padding-left: 10px;
  }


  h1 {
    font-size: 2.5em;
  }

  h1,h2,h3 {
    line-height: normal;
  }

  

  .slider .caption {
    padding: 0;
  }

  .service-thumb .service-info {
    top: 100%;
  }

  footer {
    padding: 60px 0;
    padding-bottom: 60px;
  }

  .footer-open-hour {
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }


  .tab-list {
    display: block; /* Tabları alt-üst düz yerləşdirir */
  }

  .tab-content {
    width: 100%; /* Tabın içeriği ekranın genişliyinə uyğun olur */
  }

  .input-field, .form-control {
    width: 100%; /* Inputları ekranın tam eni ilə uyğunlaşdırır */
    box-sizing: border-box; /* Kənarlardan sızma olmaması üçün */
  }

  .row {
    display: block; /* Column-ları alt-üst düz yerleştirir */
  }

  .trip-form {
    display: none;
  }



  .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .left-column,
  .right-column {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  .right-column {
    /* Sağ sütunun altındakı boşluğu sıfırlayırıq */
    width: 100% !important;
    margin-left: -10px !important;
  }

  /* Daha da sıxlaşdırmaq üçün hər iki sütunun arasındakı boşluğu azaldırıq */
  .container > * {
    margin-bottom: 0px; /* İstədiyiniz boşluğu tənzimləyə bilərsiniz */
  }
  
  /* Sol sütunun sticky olmamasını təmin edirik */
  .left-column {
    position: static !important;
  }


  .property-container {
    flex-direction: column;
  }

  .filters {
    min-width: 100%;
  }

  .property-list {
    grid-template-columns: 1fr;
  }
  


  .container, .row, .col-md-6, .col-md-4, .col-md-3 {
    width: 100% ;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background-color: rgba(14, 14, 14, 0.169);
    height: 100%;
    color: #fff;
    cursor: e-resize;
    padding: 4em 0 0 2em;
  }

.property-tabs {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap;
  }

  .property-tab-btn {
    padding: 10px 20px;
    border: 1px solid #a47142;
    background: white;
    color: #a47142;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .property-tab-btn:hover {
    background: #a47142;
    color: white;
  }
  
  .property-tab-btn.active {
    background-color: #a47142;
    color: white;
  }


  .property-list {
    display: block; /* Kartları alt-üst düzür */
  }

  .property-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    height: 100%;
    margin-left: 20px;
  }


  .entertainment-list {
    display: grid; /* Grid sistemi istifadə edirik */
    grid-template-columns: 1fr !important; /* Yalnız bir sütun */
    gap: 20px; /* Kartlar arasında boşluq */
  }

  .entertainment-card {
    width: 90%; /* Kartın tam eni */
    margin-bottom: 20px; /* Kartlar arasında əlavə boşluq */
    margin-left: 20px;
    margin-right: 10px;
  }

  .entertainment-tabs {
    display: block; /* Tabları alt-üst düzür */
    width: 100%; /* Ekranın tam genişliyinə uyğun edirik */
  }

  .view-more-btn {
    width: 100%; /* "View More" düyməsini ekranın genişliyinə uyğun edirik */
    text-align: center; /* Düyməni ortalayırıq */
  }

  
  .view-more-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    background-color: #a47142;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    padding: 12px 0;
  }


  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
      display: none;
  }

  .menu-toggle {
      display: block;
  }

  .right-buttons {
      display: none;
  }

  .mobile-menu {
      right: -100%;
  }

  .mobile-menu.open {
    right: 0;
  }



  .nav-links,
  .right-buttons {
    display: none; /* Mobil versiyada menyuları gizlət */
  }



  .gallery {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background-repeat: repeat;
    position: relative;
    margin-top: 10px;
  }
  
  /* Region grid - 4 sütunlu grid */
  .region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 sütun */
    gap: 0px;
    margin-left: 10px;
  }
  
  /* Region item (kart) stili */
  .region-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    height: 100%;
  }
  
  .region-item img {
    height: 150px;
    width: 150px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .region-item h3 {
    font-size: 18px;
  }
  
  .region-item:hover img {
    transform: scale(1.05);
  }
  
  
  
  
  /* Popup konteyneri */
  .popup {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.799);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    
  }
  
  /* Popup içeriği */
  .popup-content {
    background: linear-gradient(to bottom, #fefefe, #f7f7f7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto; 
    position: relative;
    width: 900px;
    height: 700px;
    overflow-y: scroll; 
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* Əsas şəkil */
  .main-image {
    width: 90%; /* Popupın eni ilə bərabər olmalıdır */
    height: 40%; /* Popupın hündürlüyü ilə bərabər olmalıdır */
    object-fit: cover; /* Şəkil kəsiləcək və popupın ölçüsünə uyğun olacaq */
    border-radius: 25px;
  }
  
  /* Başlıq və təsvir */
  .popup-content h2 {
    margin-top: 10px;
    font-size: 24px;
  }
  
  .popup-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
  }
  
  /* Bağla düyməsi */
  .close-btn {
    background: #ab6e12;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    float: right;
    margin-bottom: 10px;
  }
  
  .close-btn:hover {
    background: #555;
  }
  
  /* Thumbnail şəkillər sırası */
  .thumbnail-row {
    display: flex;
    margin-top: 15px;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Thumbnail şəkillər */
  .thumbnail-row img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
  }
  
  .thumbnail-row img.active {
    opacity: 1;
    border: 2px solid #333;
  }
  
  /* Popupdan kənara kliklə bağlama */
  .popup.active {
    display: flex;
  }
  
  /* Popupdan kənara kliklə bağlama */
  .popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto; /* Popup içində sürüşdürmə */
  }




  .tour-card {
    display: flex;
    flex-direction: column;
    justify-content: center; /* dikey mərkəz */
    align-items: center; /* üfüqi mərkəz */
    text-align: center;
    height: 100%;
    margin-left: 20px;
  }


  .region-city {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: -5px;
    color: #444;
  justify-content: center;
  }
  
  .region-city .location-icon {
    color: #ff0000;
    margin-left: 6px;
    font-size: 16px;
  }








}
