/* ====================
       HEADER
==================== */

.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: flex-start;
  background: var(--blue-color);
  flex-wrap: nowrap;
}

.header__logo {
  padding: 10px 40px 10px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-img {
  width: 180px;
}

.header__right {
  flex: 1;
  width: 100%;
}

.top__bar {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  justify-content: space-between;
  margin-right: 15px;
  padding: 10px 100px 10px 0;
  font-size: var(--small-font-size);
  flex-wrap: wrap;
}

.top__bar-left span {
  margin-left: 30px;
}

.top__bar-left span i {
  color: var(--orange-color);
  margin-right: 5px;
  font-size: 20px;
}

.top__bar-right {
  display: flex;
  align-items: center;
}

.top__bar-right a {
  color: var(--white-color);
}

.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: 15px 100px;
  background-color: var(--white-color);
  position: relative;
  border-radius: 40px 0 0 40px;
}

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__item {
  position: relative;
}

.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__link--active {
  color: var(--orange-color) !important;
}

.nav__item{
  position: relative;
}

.nav__dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 5px 0;
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.nav__item:hover .nav__dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  padding: 1px 20px;
}

.nav__dropdown-link{
  display: block;
  padding: 10px 20px;
  color: #333;
  transition: 0.3s;
}

.nav__dropdown-link:hover {
  color: var(--orange-color);
}

.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone i {
  color: var(--orange-color);
  font-size: var(--h3-font-size);
}

.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: var(--text-color);
}

.nav__link.active{
  color: var(--orange-color);
  position: relative;
}

.nav__link.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--orange-color);
  border-radius: 2px;
}

/* LANGUAGE SWITCHER */

.lang-switcher{
  position: relative;
}

.lang-btn{
  background: var(--orange-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-dropdown{
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  padding: 10px 0;
  list-style: none;
  width: 160px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 999;
}

.lang-dropdown li{
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
}

.lang-dropdown li:hover{
  background: #f5f5f5;
  color: var(--orange-color);
}

/* show dropdown */
.lang-switcher.active .lang-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hide google widget */
#google_translate_element{
  display: none;
}

/* remove top google bar */
.goog-te-banner-frame.skiptranslate{
  display: none !important;
}

body{
  top: 0 !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 300px;
  max-width: 80%;
  height: 100%;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
}

.sidebar.active {
  transform: translateX(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__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--container-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.sidebar__link {
  color: var(--title-color);
}

.sidebar__link--active {
  color: var(--orange-color);
  font-weight: var(--font-semi-bold);
}

.sidebar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  background-color: var(--white-color);
  box-shadow: var(--small-box-shadow);
  min-width: 180px;
  z-index: 999;
  padding: 0;
}

.sidebar__dropdown.active {
  display: block;
}

.sidebar__dropdown-item {
  padding: 8px 0;
}

.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 {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
  padding: 70px 20px 40px !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(8, 29, 54, 0.32), rgba(8, 29, 54, 0.32)),
    url("../images/sri-lanka-hero.jpg") center/cover no-repeat;
}

.home__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255, 166, 0, 0.18), transparent 28%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.10), transparent 24%);
  pointer-events: none;
}

.home__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.home__hero {
  max-width: 850px;
}

.home__badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home__title {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.08;
  color: var(--white-color);
  font-weight: var(--font-bold);
  margin-bottom: 18px;
}

.home__title-accent {
  color: var(--orange-color);
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.home__desc {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--large-font-size);
  line-height: 1.8;
}

/* ====================
    HERO FILTER ONLY
==================== */

.hero-filter {
  width: min(980px, 100%);
  max-width: 100%;
  margin: 30px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  padding: 24px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-filter__title {
  text-align: center;
  color: var(--dark-blue-color);
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: var(--font-bold);
}

.hero-filter__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 64px;
  gap: 14px;
  align-items: end;
  width: 100%;
}

.hero-filter__item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-filter__item label {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: var(--font-semi-bold);
}

.hero-filter__input,
.hero-filter__select {
  width: 100%;
  height: 54px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  background: var(--white-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.3s ease;
}

.hero-filter__input:focus,
.hero-filter__select:focus {
  border-color: var(--orange-color);
  box-shadow: 0 0 0 4px rgba(245, 161, 46, 0.14);
}

.hero-filter__btn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-color), var(--dark-orange-color));
  color: var(--white-color);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(245, 161, 46, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-filter__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(245, 161, 46, 0.36);
}

.hero-filter,
.hero-filter__form,
.hero-filter__item,
.hero-filter__input,
.hero-filter__select {
  max-width: 100%;
  box-sizing: border-box;
}

/* ====================
        ABOUT
==================== */

.about {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 20px;
}

.about__content {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.about__title {
  margin-bottom: 14px;
}

.about__desc {
  margin-bottom: 24px;
}

.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: 210px;
  left: 210px;
  z-index: 1;
  pointer-events: none;
  filter: var(--blue-filter);
  width: 90px;
}

.about__features {
  margin: 24px 0;
}

.about__features-list {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__features-list i {
  color: var(--blue-color);
}

.about__images {
  position: relative;
  min-height: 620px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image-3 {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
  position: absolute;
  left: 0;
  top: 0;
}

.about__image-4 {
  width: 100%;
  max-width: 230px;
  position: absolute;
  right: 20px;
  bottom: 60px;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
}

.about__image-5 {
  position: absolute;
  right: 40px;
  top: 110px;
  z-index: 2;
  width: 150px;
}

.tagline {
  position: absolute;
  left: 40px;
  bottom: 20px;
  z-index: 2;
  text-align: center;
}

.tagline span {
  background-color: var(--hover-color);
  color: var(--white-color);
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: var(--small-box-shadow);
}

/* ====================
       MEMORIES
==================== */

.memories {
  text-align: center;
  background: var(--section-bg);
}

/* ====================
   MEMORIES SECTION BORDER
==================== */

.memories{
  background: #fff5f0;
  border: 8px solid #ffffff;
  border-radius: 25px;
  padding: 80px 60px;
  margin: 60px auto;
  max-width: 1400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.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;
}

.memories__image-1 {
  width: 100%;
  max-width: 550px;
}

.memories__activities {
  flex: 1 1 200px;
  position: relative;
}

.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: var(--white-color);
}

.features__number {
  position: absolute;
  top: 0;
  left: 0;
  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 {
  min-height: 100vh;
  background: var(--section-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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;
  max-width: 1200px;
}

.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 {
  margin-top: -50px;
  position: relative;
  z-index: 9;
  width: min(920px, 100%);
  left: 50%;
  transform: translateX(-50%);
}

.destination__grid {
  display: grid;
  gap: 30px;
  margin: 80px 0 0;
  grid-template-columns: repeat(3, 1fr);
}

.destinatio__btn {
  margin-top: 50px;
}

.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);
}

.destination__tour-start{
  font-size: 13px;
  color: #777;
  margin: 6px 0 10px 0;
  font-weight: 500;
}

.package-start-location{
  margin-top: 12px;
  display: inline-block;
  background: #fff3e6;
  color: #ff7a00;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid #ff7a00;
}

.package-start-location i{
  margin-right: 6px;
}

/* Shared search box for destination section */
.search__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  gap: 20px;
}

.search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 15px;
  border-right: 1px solid var(--text-color-light);
  position: relative;
  cursor: pointer;
  flex: 1 1 180px;
}

.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;
  background: transparent;
}

.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);
  border-radius: 5px;
  appearance: none;
}

.range__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: var(--orange-color);
  border-radius: 50%;
  cursor: pointer;
}

.search-btn {
  background-color: var(--dark-orange-color);
  color: var(--white-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  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: calc(100% + 10px);
  background: var(--white-color);
  box-shadow: var(--small-box-shadow);
  padding: 10px;
  border-radius: 4px;
  z-index: 10;
}

.search__field.show .price-dropdown {
  display: block;
}

.destination__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.destination__price-btn{
  background: #f6d8c8;
  color: #ff7a00;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.destination__price-btn:hover{
  background: #ff7a00;
  color: white;
}

.destination__header{
  text-align: center;
  margin-bottom: 50px;
}

.destination__tag{
  display: inline-block;
  background: var(--orange-color);
  color: var(--white-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.destination__title{
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 10px;
}

.destination__subtitle{
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ====================
      SEO INTRO
==================== */

.seo-intro {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.seo-intro__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.95fr);
  gap: 32px;
  background:
    linear-gradient(135deg, hsla(37, 89%, 53%, 0.14), transparent 42%),
    linear-gradient(135deg, hsl(0, 0%, 100%), hsl(34, 100%, 98%));
  border: 1px solid hsla(37, 89%, 53%, 0.12);
  box-shadow: 0 28px 60px hsla(223, 95%, 18%, 0.12);
  overflow: hidden;
}

.seo-intro__container::before,
.seo-intro__container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.seo-intro__container::before {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, hsla(205, 93%, 40%, 0.16), transparent 72%);
}

.seo-intro__container::after {
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -180px;
  background: radial-gradient(circle, hsla(37, 89%, 53%, 0.2), transparent 70%);
}

.seo-intro__content,
.seo-intro__highlights {
  position: relative;
  z-index: 1;
}

.seo-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: hsla(205, 93%, 40%, 0.08);
  color: var(--blue-color);
  font-size: 0.8rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-intro__label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-color);
  box-shadow: 0 0 0 6px hsla(37, 89%, 53%, 0.14);
}

.seo-intro__title {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  color: var(--dark-blue-color);
  line-height: 1.1;
}

.seo-intro__lead {
  max-width: 62ch;
  margin-bottom: 18px;
  font-size: 1.12rem;
  font-weight: var(--font-medium);
  color: hsl(223, 62%, 24%);
}

.seo-intro__text {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--text-color);
}

.seo-intro__text + .seo-intro__text {
  margin-top: 14px;
}

.seo-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-intro__tags span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.88);
  color: var(--dark-blue-color);
  font-weight: var(--font-semi-bold);
  border: 1px solid hsla(205, 93%, 40%, 0.12);
  box-shadow: var(--small-box-shadow);
}

.seo-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-intro__card {
  padding: 24px;
  border-radius: 24px;
  background: hsla(0, 0%, 100%, 0.88);
  border: 1px solid hsla(205, 93%, 40%, 0.1);
  box-shadow: var(--small-box-shadow);
}

.seo-intro__card--accent {
  background: linear-gradient(180deg, hsl(217, 100%, 34%), hsl(223, 95%, 18%));
  color: var(--white-color);
  box-shadow: 0 22px 44px hsla(223, 95%, 18%, 0.28);
}

.seo-intro__card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: hsla(0, 0%, 100%, 0.14);
  color: var(--white-color);
  font-size: 1.55rem;
}

.seo-intro__card-title {
  margin-bottom: 10px;
  font-size: 1.45rem;
  color: inherit;
}

.seo-intro__card-text {
  color: inherit;
  opacity: 0.94;
}

.seo-intro__card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-intro__stat {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--dark-orange-color);
}

.seo-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--orange-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-intro__cta:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 18px 30px hsla(24, 89%, 53%, 0.26);
}

/* ====================
      testimonial
==================== */

.testimonial {
  min-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 {
  padding: 60px 30px 30px;
}

.footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.footer__logo img {
  width: 200px;
}

.social__icons {
  display: flex;
  gap: 12px;
}

.social__icons a {
  color: var(--light-gray-color);
  font-size: var(--h4-font-size);
  transition: color 0.3s ease;
}

.social__icons a:hover {
  color: var(--orange-color);
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__col {
  flex: 1 1 200px;
}

.footer__col-head {
  margin-bottom: 15px;
  font-size: var(--h4-font-size);
  color: var(--orange-color);
}

.footer__col ul {
  padding: 0;
  margin: 0;
}

.footer__col ul li {
  margin-bottom: 10px;
  font-size: var(--normal-font-size);
  color: var(--light-gray-color);
  cursor: pointer;
}

.footer__col ul li:hover {
  color: var(--white-color);
}

.contact__info p {
  font-size: var(--normal-font-size);
  margin: 8px 0;
  color: var(--white-color);
}

.contact__info i {
  color: var(--orange-color);
  margin-right: 8px;
}

.newsletter__box {
  background: var(--dark-blue-color);
  padding: 20px;
  border-radius: 15px;
}

.newsletter__box input[type="email"] {
  width: 70%;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter__box button {
  padding: 10px 15px;
  border: none;
  background: var(--orange-color);
  color: var(--white-color);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.checkbox {
  margin-top: 10px;
  font-size: var(--small-font-size);
  color: var(--light-gray-color);
}

.checkbox input {
  margin-right: 6px;
}

.footer__bottom {
  text-align: center;
  margin-top: 50px;
  font-size: var(--small-font-size);
  color: var(--white-color);
}
