.header {
  width: 100%;
  position: relative;
  box-shadow: var(--box-shadow);
  top: 0;
  left: 0;
  z-index: 100;
  transition: box-shadow 0.4s;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue-color);
  flex-wrap: wrap;
  padding: 0 40px;
}

.header__logo {
  /* padding: 15px 30px; */
  /* margin-right: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;

}

.header__logo-img {
  top: -35px;
  position: absolute;
  width: 218px;
  left: 28px;
  height: 222px;
}

.header__menu-icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1001;
}

.header__right {
  flex: 1;
  width: 100%;
}

.top__bar {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 40px;
  font-size: var(--small-font-size);
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 0;
  justify-content: flex-start;
}

.top__bar-left span {
  margin-left: 0;
  margin-right: 0;
}

.top__bar-left span i {
  color: var(--orange-color);
  margin-right: 5px;
  font-size: 20px;
  cursor: pointer;
}

.top__bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 0;
}

.top__bar-right a {
  color: var(--white-color);
  /* position: absolute; */
  /* margin-right: -50px; */
  margin-left: 1150px;
}

.top__bar-icons {
  color: var(--orange-color);
  margin-left: 30px;
  font-size: 20px;
}

.top__bar-icons i {
  margin-left: 10px;
}

/* Main Navigation */

.main__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  margin-left: 90px;
  margin-top: 0;
  background-color: var(--white-color);
  position: relative;
  border-radius: 50px 0px 0px 50px;
  width: 84%;
  left: 180px;
}

.nav__list {
  display: flex;
  gap: 24px;
}

.nav__item .nav__link {
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;

}

.nav__link:hover {
  color: var(--hover-color);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 20;
  background: var(--white-color);
  padding: 10px 0;
  min-width: 150px;
  border-radius: 8px;
  z-index: 999;
  box-shadow: var(--small-box-shadow);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.nav__dropdown.active {
  opacity: 1;
  pointer-events: auto;
}

.nav__dropdown-item {
  padding: 8px 20px;
}

.nav__dropdown-link {
  color: var(--text-color);
  font-size: var(--font-medium);
}

.nav__dropdown-link:hover {
  color: var(--orange-color);
}

.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__right .btn {
  animation: headerBookingPushPop 1s ease-in-out infinite;
  transform-origin: center;
}

@keyframes headerBookingPushPop {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  40% {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }

  70% {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone i {
  color: var(--orange-color);
  font-size: var(--h3-font-size)
}

.header .phone i {
  animation: headerPhoneTrin 1s ease-in-out infinite;
  transform-origin: center;
  display: inline-flex;
}

@keyframes headerPhoneTrin {

  0%,
  100% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(8deg);
  }

  45% {
    transform: rotate(-6deg);
  }

  60% {
    transform: rotate(6deg);
  }

  75% {
    transform: rotate(-3deg);
  }
}

.phone__text {
  display: flex;
  flex-direction: column;
}

.phone__number {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

.menu-icon {
  font-size: var(--h3-font-size);
  display: none;
  cursor: pointer;
  color: white;
}

/* Show header menu-icon on mobile */
@media (max-width: 768px) {
  .header__menu-icon {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header__wrapper {
    position: relative;
  }

  .nav__list,
  .right-content {
    display: none !important;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  overflow-x: visible;
  z-index: 999;
}

.sidebar.active {
  left: 0;
}

.slidbar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar__logo-img {
  width: 150px;
}

.close-icon {
  font-size: var(--h3-font-size);
  cursor: pointer;
  color: var(--title-color);
  z-index: 1000;
  position: relative;
}

.sidebar__list {
  list-style: none;
}

.sidebar__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--container-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: visible;
}

.sidebar__link {
  color: var(--title-color);
}

.sidebar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 40px;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  min-width: 180px;
  z-index: 999;
  padding: 0;
}

.sidebar__dropdown.active {
  display: block;
}

.sidebar__dropdown-item {
  padding: 8px 0;
  position: relative;
}

.sidebar__dropdown-link {
  display: block;
  padding: 10px 15px;
  color: var(--black-color);
  white-space: nowrap;
  font-size: var(--small-font-size);
}

.sidebar__dropdown-link:hover {
  color: var(--orange-color);
}

.sidebar__socials {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.sidebar__socials i {
  color: var(--orange-color);
  font-size: var(--large-font-size);
}



/* ====================
        HOME
==================== */

.home {
  padding: 0px 120px !important;
  /* background: var(--bg-color); */
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
}

.home__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.home__text {
  flex: 1 300px;
}

.home__subtitle {
  font-weight: var(--font-medium);
  color: var(--blue-color);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--h3-font-size);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-family: var(--h1-font);
  font-weight: var(--font-medium);
  margin: .5rem 0;
  line-height: 1.2;
  color: var(--black-color);
}

.home__title-orange {
  color: var(--dark-orange-color);
}

.home__desc {
  font-size: var(--large-font-size);
  margin-bottom: 2rem;
}

.hero__btn {
  font-size: var(--h4-font-size);
}


.home__image {
  flex: 1 700px;
  position: relative;
}

.home__image-map {
  position: absolute;
  max-width: 500px;
  width: 100%;
  top: 80px;
  left: 0;
  right: auto;
  opacity: .5;
  z-index: -10;
}

@media screen and (max-width: 768px) {
  .home__image-map {
    top: 20px;
    left: 10%;
    right: auto;
    max-width: 500px;
    opacity: .5;
  }

}


.home__image-plane {
  position: absolute;
  max-width: 350px;
  width: 100%;
  left: 150px;
  top: 150px;
  opacity: .5;
  z-index: -3;
}

.home__image-girl {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin-left: 0;
  bottom: 20px;
  left: 0;
  right: auto;
  z-index: -2;
  /* height: %; */
}

.home__image-birds {
  position: absolute;
  width: 100%;
  max-width: 150px;
  top: 150px;
  left: 50px;
  z-index: 99;
  transform-origin: bottom center;
  animation: pendulum 3s infinite ease-in-out;
}

.home__image-bird {
  position: absolute;
  width: 100%;
  max-width: 150px;
  top: 150px;
  left: 600px;
  z-index: 89;
  transform-origin: bottom center;
  animation: pendulum 3s infinite ease-in-out;
}


@keyframes pendulum {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.home__image-icon {
  position: absolute;
  width: 100%;
  max-width: 300px;
  top: 60px;
  left: -800px;
  z-index: -4;
  transform: rotate(-30deg);
  filter: var(--gray-filter);
}

.booking__buttons {
  margin-top: 2rem;
  right: 100px;
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 1.5rem;
}

.booking__item {
  position: relative;
  display: flex;
  align-items: center;
}

.booking__icon-wrapper {
  position: absolute;
  left: -20px;
  z-index: 1;
}

.booking-icon {
  font-size: var(--h4-font-size);
  color: var(--white-color);
  /* background-color: var(--blue-color); */
  background-color: var(--dark-orange-color);

  padding: 15px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.booking-btn {
  padding: 10px 20px 10px 30px;
  padding-left: 3rem;
  background-color: var(--dark-orange-color);
  color: var(--white-color);
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  z-index: 0;
  box-shadow: var(--box-shadow);
  margin-left: 1rem;
}

.booking-btn:hover {
  background-color: var(--hover-color);
}

.search__box {
  margin-top: -80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--white-color);
  padding: 10px;
  /* border-radius: 10px; */
  box-shadow: var(--box-shadow);
  gap: 12px;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 1303px;
}

@media screen and (max-width: 768px) {
  .search__box {
    flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 1200px) {
  .header__wrapper {
    position: relative;
    height: 70px;
  }
}

.search__row {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .search__row {
    flex-wrap: wrap;
    gap: 16px;
  }

}

.search__field {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-right: 0;
  border-right: none;
}

/* Make date field more compact on desktop */
.search__field:nth-child(3) {
  flex: 0 0 180px;
  max-width: 350px;
}

/* Ensure other fields take remaining space */
.search__field:not(:nth-child(3)) {
  flex: 1;
}

.search__field:last-of-type {
  border-right: none;
}

.search-icon {
  color: var(--orange-color);
  font-size: var(--h4-font-size);
}

.search__text {
  display: flex;
  flex-direction: column;
}

.search__label {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 4px;
}

.select {
  font-size: var(--normal-font-size);
  padding: 5px;
  border: none;
  border-radius: 4px;
  font-weight: var(--font-bold);
  width: 130px;
  outline: none;
}

.search__input,
.search__select {
  font-size: var(--normal-font-size);
  padding: 10px 14px;
  border: 1px solid var(--light-gray-color);
  border-radius: 8px;
  width: 100%;
  min-width: 0;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.search__input:focus,
.search__select:focus {
  border-color: var(--orange-color);
}

.book-car-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 30px;
  font-weight: var(--font-bold);
  box-shadow: 0 8px 20px rgba(238, 90, 36, 0.35);
  width: 120px;
  margin-left: 600px;
  /* margin-left:85%; */
  align-self: stretch;
  justify-content: center;
}

.price-display {
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  margin-top: 4px;
}

.range__slider {
  position: relative;
  height: 35px;
  width: 180px;
  margin-top: 10px;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--light-gray-color);
  pointer-events: auto;
  border-radius: 5px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: var(--orange-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  position: relative;
}

.search-btn {
  background-color: var(--dark-orange-color);
  color: var(--white-color);
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: var(--font-semi-bold);
  font-size: var(--large-font-size);
}

.search-btn:hover {
  background-color: var(--hover-color);
}

.price-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--white-color);
  box-shadow: var(--small-box-shadow);
  padding: 10px;
  border-radius: 4px;
  z-index: 10;
  transition: 0.3s ease;
}

.search__field.show .price-dropdown {
  display: block;
}


/* ====================
        ABOUT
==================== */

.about {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.about__content {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.about__one-container {
  display: flex;
  align-items: center;
  background-color: var(--container-color);
  padding: 15px 20px;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: var(--box-shadow);
}

.about__image-1 {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about__one-title {
  font-size: var(--large-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 4px;
}

.about__one-desc {
  font-size: var(--small-font-size);
}

.about__image-2 {
  position: absolute;
  top: 200px;
  left: 200px;
  z-index: 1;
  pointer-events: none;
  filter: var(--blue-filter);
}

.about__features-list {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__features-list i {
  color: var(--blue-color);
}

.about__images {
  position: relative;
  flex: 1;
  min-height: 300px;
}

.about__image-3 {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}

.about__image-4 {
  width: 100%;
  max-width: 220px;
  position: absolute;
  left: 220px;
  top: 260px;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
}

.about__image-5 {
  position: absolute;
  right: 80px;
  top: 120px;
  z-index: 1;
  text-align: center;
}

.tagline {
  position: absolute;
  left: 70px;
  top: 400px;
  z-index: -1;
  text-align: center;
}

.tagline span {
  background-color: var(--hover-color);
  color: var(--white-color);
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
}

/* ====================
       MEMORIES
==================== */


.memories {
  text-align: center;
  background: var(--section-bg);
}

.memories__intro {
  max-width: 600px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.memories__btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.memories__btn {
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: var(--box-shadow);
}

.memories__btn-primary {
  background: var(--orange-color);
  color: var(--white-color);
  border: none;
}

.memories__btn-primary:hover {
  filter: brightness(1.1);
  background: var(--hover-color);
}

.memories__btn-outline {
  background: transparent;
  border: 2px solid var(--orange-color);
  color: var(--orange-color);
}

.memories__btn-outline:hover {
  background-color: var(--hover-color);
  color: var(--white-color);
}

.memories__content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.memories__images-box {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.memories__img {
  display: flex;
  width: 100%;
}

img {
  transition: transform 1.4s ease-in-out;
}

:is(.header, .main-slider, .footer) img {
  transition: none !important;
}

:not(.main-slider):not(.header__logo) img:hover {
  transform: scale(1.08);
}

.main-slider img:hover {
  transform: none;
}

.header__logo-img:hover,
.header__logo-img {
  transform: none !important;
  transition: none !important;
}

.main-slider img,
.main-slider img:hover {
  transform: none;
  transition: none;
}

/* Ensure slide 5 image in slider never zooms on hover */
.main-slider .slide:nth-child(5) img,
.main-slider .slide:nth-child(5) img:hover {
  transform: none !important;
  transition: none !important;
}

.memories__image-1 {
  width: 100%;
  max-width: 550px;
  cursor: pointer;
  transition: transform 1.4s ease-in-out;
}

.memories__images-box:hover .memories__image-1 {
  transform: scale(1.08);
}

.memories__activities {
  flex: 1 1 200px;
}

.memories__box {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.memories__question {
  margin: 0 0 32px -150px;
}

.memories__question-title {
  font-size: var(--large-font-size);
  color: var(--title-color);
  display: inline-block;
  margin-bottom: 8px;
}

.memories__question-line {
  width: 90px;
  height: 3px;
  background: var(--title-color);
  border: none;
  margin: -30px 0 0 140px;
}

.memories__activity-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.memories__activity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.memories__activity-number {
  font-weight: var(--font-semi-bold);
  font-size: var(--h4-font-size);
  color: var(--dark-orange-color);
}

.memories__image-2,
.memories__image-3,
.memories__image-4 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--box-shadow);
}

.memories__activity-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-bold);
  margin: 0;
}

.memories__activity-desc {
  margin: 3px 0 0;
}

.memories__image-5 {
  position: absolute;
  width: 200px;
  margin: -200px 0 0 300px;
  transform: rotate(40deg);
  filter: var(--orange-filter);
}

.memories__image-6 {
  position: absolute;
  width: 60px;
  margin: 350px 0 0 -70px;
  transform: rotate(20deg);
}

.memories__image-7 {
  position: absolute;
  width: 150px;
  margin: 400px 0 0 -70px;
  filter: var(--blue-filter);
}

/* ====================
       FEATURE
==================== */

.features {
  min-height: 600px;
}

.features__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background: transparent;
  max-width: 1200px;
  margin: auto;
  gap: 32px;
}

.features__left {
  flex: 1 35%;
}

.features__title {
  margin-bottom: 13px;
}

.features__right {
  flex: 1 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow: visible;
}

.features__card-wrapper {
  position: relative;
  flex: 0 32%;
  max-width: 32%;
  margin-top: 30px;
}

.features__card {
  clip-path: polygon(31% 0, 100% 0%, 100% 100%, 0 100%, 0 33%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  background-color: var(--white-color);
  transition: all 0.3s ease;
  z-index: 1;
}

/* .features__card:hover{
  background-color: var(--blue-color);
} */

.feature__images-icon {
  filter: var(--orange-filter);
  display: block;
  margin: 0 auto 12px auto;
  width: 120px;
}

/* .features__card:hover .feature__images-icon{
  filter: var(--gray-filter);
} */

.features__card-title {
  font-size: var(--large-font-size);
  font-weight: var(--font-bold);
  color: var(--dark-blue-color);
  margin-bottom: 8px;
}

.features__card-desc {
  font-size: var(--small-font-size);
  color: inherit;
}

/* 
.features__card:hover .features__card-title,
.features__card:hover .features__card-desc{
  color: white;
} */

.features__number {
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--blue-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: var(--light-gray-color);
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: all 0.4s ease;
}


/* ====================
       NATURE
==================== */

.nature {
  height: 100vh;
  background: var(--section-bg);
  text-align: center;
}

.nature__intro {
  text-align: center;
}

.nature__title {
  margin-bottom: 16px;
}

.nature__desc {
  margin: 0 auto 48px;
}

.nature__image-1 {
  position: absolute;
  width: 300px;
  margin-top: 100px;
  right: -50px;
  transform: rotate(-70deg);
}

.nature__image-2 {
  position: absolute;
  width: 200px;
  margin: -100px 0 0 350px;
  transform: rotate(30deg);
}

.nature__image-3 {
  position: absolute;
  width: 400px;
  margin-top: 200px;
  left: -70px;
  transform: rotate(50deg);
}

.nature__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.nature__card {
  width: 250px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: var(--box-shadow);
}

.nature__card-up {
  transform: translateY(-20px);
}

.nature__card-down {
  transform: translateY(20px);
}

.nature__card-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border-radius: 16px;
}

.nature__card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: var(--h4-font-size);
  color: var(--dark-orange-color);
  background: var(--white-color);
  padding: 5px;
  border-radius: 50%;
}

.nature__card-title {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  text-shadow: 1px 1px 4px rgb(0, 0, 0);
}


/* ====================
      DESTINATION
==================== */

.destination {
  background: var(--section-bg);
  text-align: center;
}

.destination__container {
  border-radius: 30px;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: center;
}

.destinatio__intro {
  position: relative;
  z-index: 1;
  background: var(--container-color);
  padding: 70px 200px;
  border-radius: 30px;
}

.destination__topic {
  background-color: var(--white-color) !important;
}

.destinatio__title {
  margin-bottom: 16px;
}

.destinatio__desc {
  margin: 0 auto 48px;
}

.destinatio__search-box {
  position: relative;
  margin: 30px auto 0;
  width: 100%;
}

.destination__grid {
  display: grid;
  gap: 30px;
  margin: 130px 0 0 30px;
  grid-template-columns: repeat(3, 1fr);
}

.destinatio__btn {
  margin-top: 20px;
}

.destination__card {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  position: relative;
}

.destination__card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.destination__card:hover {
  transform: translateY(-5px);
}

.destination__card-content {
  padding: 15px;
  position: relative;
  text-align: left;
}

.destination__card-title {
  margin: 0 0 5px;
  font-size: 16px;
}

.destination__card-location {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 10px;
}

.destination__price {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--section-bg);
  color: var(--dark-orange-color);
  padding: 5px 10px;
  font-weight: bold;
  font-size: var(--large-font-size);
}

.destinatio__btn {
  margin-top: 50px;
  font-size: var(--h5-font-size);
}



/* ====================
      testimonial
==================== */

.testimonial {
  height: 80vh;
}

.testimonial__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial__left {
  flex: 1;
  min-width: 300px;
}

.testimonial__wrapper {
  position: relative;
  width: 420px;
  height: 220px;
}

.orange__card {
  position: absolute;
  top: 90px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--dark-orange-color);
  border-radius: 20px;
  transform: rotate(10deg);
  z-index: 0;
}

.testimonial__card {
  position: relative;
  background: var(--container-color);
  border-radius: 20px;
  top: 90px;
  left: 10px;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  color: var(--dark-blue-color);
  box-shadow: var(--box-shadow);
}

.testimonial__card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 80px;
  width: 10px;
  height: 0;
  border: 20px solid transparent;
  border-top-color: var(--container-color);
  border-bottom: 0;
  border-left: 0;
  margin-left: -10px;
}

.testimonial__quote-mark {
  position: absolute;
  background: var(--blue-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: var(--white-color);
  font-size: var(--h3-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  left: -30px;
  top: -30px;
}

.testimonial__quote-mark-right {
  right: -30px;
  left: auto;
  bottom: -30px;
  top: auto;
}

.testimonial__card-title {
  font-size: var(--h4-font-size);
  margin: 15px 0;
}

.testimonial__card-desc {
  font-size: var(--normal-font-size);
  line-height: 1.6;
}

.testimonial__user {
  position: absolute;
  top: 30px;
  right: -45px;
  width: 110px;
  height: 110px;
  border: 8px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.testimonial__user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.testimonial__images {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.testimonial__image-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  top: -200px;
}

.testimonial__image-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  top: 100px;
  border: 8px solid var(--white-color);
  left: 300px;
}

.testimonial__image-3 {
  position: absolute;
  top: -250px;
  right: 10px;
  width: 300px;
  z-index: 99;
}

.testimonial__image-4 {
  position: absolute;
  top: 250px;
  left: -200px;
  width: 300px;
  z-index: 99;
  filter: var(--blue-filter);
}

.testimonial__image-5 {
  position: absolute;
  top: -150px;
  left: -750px;
  width: 120px;
  z-index: 99;
  filter: var(--orange-filter);
}



/* ====================
     Promo Section
==================== */

.promo {
  padding: 120px 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.promo__text {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.promo__title {
  font-size: var(--h3-font-size);
  margin-bottom: 15px;
  color: var(--dark-orange-color);
}

.promo__desc {
  font-size: 16px;
  color: var(--black-color) !important;
  margin-bottom: 20px;
}

.promo__btn {
  background-color: var(--dark-orange-color);
  color: var(--white-color);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.promo__btn:hover {
  background-color: var(--hover-color);
}


/* ====================
       FOOTER
==================== */

.footer {
  position: relative;
  padding: 70px 30px 35px;
  color: var(--white-color);
  overflow: hidden;
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
}

/* .footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(6px);
  z-index: 0;
} */

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 10px 0;
}


/* .footer__brand::after{
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(12,207,138,0.45), transparent 70%);
  animation: footerGlow 6s ease-in-out infinite;
  z-index: -1;
} */

.footer__brand-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-top: 120px;
}

.footer__brand-img {
  width: 250px;
  left: -29px;
  position: absolute;
  top: -80px;
  transform: none !important;
  transition: none !important;
}

.footer__brand-img:hover {
  transform: none !important;
}

.footer__eyebrow {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 80px;
}

.footer__eyebrow span {
  color: orange;
}

.footer__col-head {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: orange;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer__col-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #db920a, transparent);
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links ul li a,
.footer__links ul li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--normal-font-size);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer__links ul li::before {
  content: "▸";
  color: orange;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer__links ul li::after,
.footer__contact ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: orange;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer__links a:hover,
.footer__links li:hover {
  color: orange;
  transform: translateX(4px);
}

.footer__links li:hover::after,
.footer__contact ul li:hover::after {
  transform: scaleX(1);
}

.footer__contact ul li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  position: relative;
  padding-bottom: 2px;
}

.footer__contact ul li i {
  color: orange;
  margin-right: 8px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: orange;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__social a:hover {
  transform: translateY(-4px);
  border-color: orange;
  box-shadow: 0 15px 25px rgba(219, 205, 10, 0.3);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 50px;
  font-size: var(--small-font-size);
  color: orange;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes footerGlow {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer__brand {
    padding: 24px;
    align-items: flex-start;
    text-align: left;
  }

  .footer__grid {
    gap: 30px;
    text-align: left;
  }

  .footer__col,
  .footer__links,
  .footer__contact {
    text-align: left;
  }

  .footer__links ul,
  .footer__contact ul {
    align-items: flex-start;
  }

  .footer__links ul li::after,
  .footer__contact ul li::after {
    left: 0;
    right: auto;
    transform-origin: left;
  }
}

/*=============== MOBILE SIDEBAR NAVIGATION ===============*/
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--blue-color);
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo-img {
  width: 175px;
  height: 170px;
  position: absolute;
  border-radius: 8px;
  left: 0px;
  top: -26px;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
  padding: 20px 0;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-item {
  margin-bottom: 5px;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.sidebar-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav-link i {
  font-size: 18px;
}

.sidebar-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

.sidebar-nav-item.active .sidebar-dropdown {
  display: block;
}

.sidebar-dropdown-item {
  margin: 0;
}

.sidebar-dropdown-link {
  display: block;
  padding: 12px 20px 12px 35px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-phone {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-phone .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.sidebar-phone .phone i {
  font-size: 20px;
  color: var(--orange-color);
}

.sidebar-phone .phone__text span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.sidebar-phone .phone__text strong {
  font-size: 14px;
  font-weight: 600;
}

.sidebar-phone .btn {
  background: var(--orange-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-phone .btn:hover {
  background: #d64503;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}