:root {
  color-scheme: light;
}

/*
Theme Name: Hawaa - Travel and Tour Template
Theme URI: https://hawaa-html.vercel.app/
Author: Spree Themes
Author URI: https://themeforest.net/user/spreethemes/portfolio
Description: Hawaa is a creative travelling template designed for travel agencies, tour operators, and adventure websites.
Version: 1.0.4
*/
:root {
  /* Typography */
  --font-body--family: "Plus Jakarta Sans", sans-serif;
  --font-body--style: normal;
  --font-body--weight: 400;
  --font-heading--family: "Playfair Display", serif;
  --font-subheading--family: "Plus Jakarta Sans", sans-serif;
  --font-subheading--style: normal;
  --font-subheading--weight: 400;
  --font-button--family: "Space Grotesk", sans-serif;
  --font-button--weight: 600;
  /* h1-h6 */
  --font-h1--size: 60px;
  --font-h2--size: 48px;
  --font-h3--size: 36px;
  --font-h4--size: 24px;
  --font-h5--size: 20px;
  --font-h6--size: 16px;
  /* header nav */
  --font-nav-main: 16px;
  /* Colors */
  --color-background: #FAFBF7;
  --color-foreground: rgba(3, 15, 18, 0.7);
  --color-foreground-heading: rgba(3, 15, 18, 1);
  --color-foreground-subheading: rgba(3, 15, 18, 1);
  --color-primary-hover: rgb(241, 116, 0);
  --color-border: rgba(177, 181, 182, 1);
  --color-overlay: rgba(3, 15, 18, 0.4);
  /* Buttons */
  --font-button-size: 18px;
  --font-button-size-mobile: 16px;
  --style-button-height: 56px;
  --style-button-height-mobile: 48px;
  --style-button-slim-height: 44px;
  --style-button-slim-height-mobile: 40px;
  /* Colors - Primary Button */
  --color-primary-button-text: rgba(255, 255, 255, 1);
  --color-primary-button-border: rgb(241, 108, 0);
  --color-primary-button-icon: rgb(241, 88, 0);
  --color-primary-button-icon-background: rgba(255, 255, 255, 1);
  --color-primary-button-hover-text: rgba(255, 255, 255, 1);
  --color-primary-button-hover-background: rgb(177, 113, 10) --color-primary-button-hover-border: rgb(10, 138, 177, 1);
  --color-primary-button-hover-icon: rgb(241, 137, 0);
  --color-primary-button-hover-icon-background: rgba(255, 255, 255, 1);
  /* Colors - Secondary Button */
  --color-secondary-button-text: rgb(241, 104, 0);
  --color-secondary-button-background: rgba(255, 255, 255, 1);
  --color-secondary-button-border: rgb(241, 141, 0);
  --color-secondary-button-icon: rgba(255, 255, 255, 1);
  --color-secondary-button-icon-background: rgb(241, 145, 0);
  --color-secondary-button-hover-text: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-background: rgb(241, 141, 0);
  --color-secondary-button-hover-border: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-icon: rgb(241, 181, 0);
  --color-secondary-button-hover-icon-background: rgba(255, 255, 255, 1);
  /* Colors - Input */
  --color-input-background: rgba(255, 255, 255, 0.3);
  --color-input-text: rgba(3, 15, 18, 1);
  --color-input-border: rgba(3, 15, 18, 0.6);
  --color-input-hover-background: rgba(255, 255, 255, 0.3);
  --color-input-hover-text: rgba(3, 15, 18, 1);
  --color-input-hover-border: rgba(3, 15, 18, 0.6);
  /* Borders */
  --style-border-width-buttons-primary: 1.5px;
  --style-border-width-buttons-secondary: 1.5px;
  --style-border-radius-buttons-primary: 42px;
  --style-border-radius-buttons-secondary: 42px;
  --style-border-width-inputs: 1px;
  --style-border-radius-inputs: 8px;
  /* Focus */
  /* Pagination */
  /* Swiper */
  --swiper-navigation-size: 24px;
  --swiper-navigation-color: rgba(255, 255, 255, 1);
  --swiper-navigation-background-color: rgb(241, 108, 0);
  --swiper-navigation-hover-color: rgba(255, 255, 255, 1);
  --swiper-navigation-hover-background-color: rgb(241, 116, 0);
}

@media (max-width: 767px) {
  :root {
    --font-h1--size: 48px;
    --font-h2--size: 40px;
    --font-h3--size: 28px;
    --font-h4--size: 20px;
    --font-h5--size: 18px;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-foreground);
  background: var(--color-background);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body>main,
body>main main {
  background: #FAFBF7;
}

body.color-scheme>main>main>section,
body.color-scheme>main>main>div,
body.color-scheme>main>section,
body.color-scheme>main>div {
  --color-background: #FAFBF7;
  background-color: #FAFBF7;
}

html {
  scrollbar-width: thin;
  scroll-behavior: smooth;
  background: #fff;
  margin: 0;
  padding: 0;
}

.scroll-lock {
  overflow: hidden;
}

#drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.3);
}

#drawer-overlay:not(.show) {
  display: none;
}

@media (max-width: 991px) {
  #drawer-overlay {
    display: none;
  }
}

img,
picture,
video,
canvas,
iframe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  aspect-ratio: attr(width)/attr(height);
}

svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

iframe,
img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

textarea,
input {
  color: var(--color-input-text);
  background-color: var(--color-input-background);
  border: var(--style-border-width-inputs) solid var(--color-input-border);
  outline: none;
}

textarea:focus,
textarea:hover,
input:focus,
input:hover {
  color: var(--color-input-hover-text);
  background-color: var(--color-input-hover-background);
  border-color: var(--color-input-hover-border);
}

.no-underline {
  text-decoration: none;
}

/* override ios and firefox defaults */
select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

p:empty {
  display: none;
}

.theme-w-110 {
  min-width: 110px;
  width: 110px;
  height: 110px;
}

.theme-w-90 {
  min-width: 90px;
  width: 90px;
  height: 90px;
}

.theme-w-80 {
  min-width: 80px;
  width: 80px;
  height: 80px;
}

.theme-w-60 {
  min-width: 60px;
  width: 60px;
  height: 60px;
}

.theme-w-30 {
  min-width: 30px;
  width: 30px;
  height: 30px;
}

@media (max-width: 767px) {

  .theme-w-110 {
    min-width: 80px;
    width: 80px;
    height: 80px;
  }
}

/*---- Typography ----*/

/* Raw h1–h6 fallback assignments */
h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.25;
}

h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

/* .heading base — Playfair Display (section titles, card titles) */
.heading {
  color: var(--color-foreground-heading);
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.25;
}

/* Large display headings (text-50 and above) — Outfit */
.heading.text-50,
.heading.text-60 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.subheading {
  color: var(--color-foreground-subheading);
  font-weight: var(--font-subheading--weight);
  font-family: var(--font-subheading--family);
  font-style: var(--font-subheading--style);
  letter-spacing: normal;
}

.text {
  letter-spacing: normal;
  font-weight: var(--font-body--weight);
  color: var(--color-foreground);
  font-family: var(--font-body--family);
  font-style: var(--font-body--style);
}

/* ── Space Grotesk: UI elements, prices, numbers, badges, buttons ── */
.button,
.tab-btn,
.badge,
.card-price,
.card-price .heading,
.counter,
.ft-price-main,
.ft-duration-badge,
.ft-view-btn,
.ft-action-btn,
.ft-nav-btn,
.ft-view-all-link,
.ft-tab-nav .tab-btn,
.insta-view-profile-btn,
.swiper-button-prev,
.swiper-button-next,
.filter-item .tab-btn,
input,
select,
textarea,
.form-control {
  font-family: "Space Grotesk", sans-serif;
}

/* ── Playfair Display: card overlay titles ── */
.ft-card-title,
.product-title .heading,
.insta-card .heading {
  font-family: "Playfair Display", serif;
}

/* ── Outfit: counter/stat numbers for visual punch ── */
.counter-item .heading {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-size: var(--font-h1--size);
  line-height: 1.16;
}

h2,
.h2 {
  font-size: var(--font-h2--size);
  line-height: 1;
}

h3,
.h3 {
  font-size: var(--font-h3--size);
  line-height: 1;
}

h4,
.h4 {
  font-size: var(--font-h4--size);
  line-height: 1.2;
}

h5,
.h5 {
  font-size: var(--font-h5--size);
  line-height: 1.3;
}

h6,
.h6 {
  font-size: var(--font-h6--size);
  line-height: 1.4;
}

.text-60 {
  font-size: 60px;
  line-height: 1.17;
}

.text-50 {
  font-size: 50px;
  line-height: 1.2;
}

.text-40 {
  font-size: 40px;
  line-height: 1.2;
}

.text-36 {
  font-size: 36px;
  line-height: 1.2;
}

.text-32 {
  font-size: 32px;
  line-height: 1.2;
}

.text-30 {
  font-size: 30px;
  line-height: 1.2;
}

.text-24 {
  font-size: 24px;
  line-height: 1.25;
}

.text-22 {
  font-size: 22px;
  line-height: 2.5;
}

.text-20 {
  font-size: 20px;
  line-height: 1.3;
}

.text-18 {
  font-size: 18px;
  line-height: 1.55;
}

.text-16 {
  font-size: 16px;
  line-height: 1.62;
}

.text-14 {
  font-size: 14px;
  line-height: 1.62;
}

.text-12 {
  font-size: 12px;
  line-height: 1.4;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

@media (max-width: 1399px) {

  .text-60 {
    font-size: 56px;
  }

  .text-50 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .text-60 {
    font-size: 50px;
  }

  .text-50 {
    font-size: 40px;
  }

  .text-40 {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {

  .text-60 {
    font-size: 48px;
  }

  .text-50 {
    font-size: 38px;
  }

  .text-40 {
    font-size: 34px;
    line-height: 1.2;
  }

  .text-36 {
    font-size: 32px;
  }

  .text-32 {
    font-size: 30px;
  }

  .text-30 {
    font-size: 28px;
  }

  .text-24 {
    font-size: 22px;
  }

  .text-22 {
    font-size: 20px;
  }

  .text-20 {
    font-size: 18px;
  }

  .text-18 {
    font-size: 16px;
  }
}

/*---- Icons ----*/
.button-has-icon,
.svg-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button-has-icon .svg-wrapper {
  -webkit-margin-before: 3px;
  margin-block-start: 3px;
}

.svg-wrapper {
  min-width: 20px;
  height: 20px;
}

.svg-wrapper svg {
  min-width: inherit;
  width: inherit;
  height: inherit;
}

.icon-70 {
  min-width: 70px;
  height: 70px;
}

.icon-40 {
  min-width: 40px;
  height: 40px;
}

.icon-30 {
  /* min-width: 30px; */
  height: 30px;
}

.icon-32 {
  /* min-width: 32px; */
  height: 32px;
}

.icon-24 {
  /* min-width: 24px; */
  height: 24px;
}

.icon-20 {
  /* min-width: 20px; */
  height: 20px;
}

.icon-18 {
  /* min-width: 18px; */
  height: 18px;
}

.icon-16 {
  min-width: 16px;
  height: 16px;
}

.icon-14 {
  min-width: 14px;
  height: 14px;
}

.icon-12 {
  min-width: 12px;
  height: 12px;
}

@media (max-width: 767px) {
  .icon-70 {
    min-width: 56px;
    height: 56px;
  }

  .icon-40 {
    min-width: 32px;
    height: 32px;
  }
}

/*---- Buttons ----*/
.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: var(--style-button-height);
  font-size: var(--font-button-size);
  font-weight: var(--font-button--weight);
  font-family: var(--font-button--family);
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  padding: 10px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button--slim {
  min-height: var(--style-button-slim-height);
  gap: 6px;
  padding: 8px 20px;
}

.button--primary {
  color: var(--color-primary-button-text);
  background-color: #F26721;
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-border);
  border-radius: var(--style-border-radius-buttons-primary);
}

.button--primary:focus,
.button--primary:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
  background-color: var(--color-primary-button-hover-background);
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-hover-border);
}

.button--primary:hover {
  border: 1px solid #000;
}

.button--secondary {
  color: var(--color-secondary-button-text);
  background-color: var(--color-secondary-button-background);
  border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-border);
  border-radius: var(--style-border-radius-buttons-secondary);
}

.button--secondary:focus,
.button--secondary:hover {
  color: var(--color-secondary-button-hover-text);
  background-color: var(--color-secondary-button-hover-background);
  border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-hover-border);
}

.button .button-has-icon {
  color: var(--color-primary-button-icon);
  background-color: var(--color-primary-button-icon-background);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 36px;
  height: 36px;
  border-radius: 100%;
}

.button:focus .button-has-icon,
.button:hover .button-has-icon {
  color: var(--color-primary-button-hover-icon);
  background-color: var(--color-primary-button-hover-icon-background);
}

.button--secondary .button-has-icon {
  color: var(--color-secondary-button-icon);
  background-color: var(--color-secondary-button-icon-background);
}

.button--secondary:focus .button-has-icon,
.button--secondary:hover .button-has-icon {
  color: var(--color-secondary-button-hover-icon);
  background-color: var(--color-secondary-button-hover-icon-background);
}

.btn-view-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

@media (max-width: 767px) {
  .button {
    min-height: var(--style-button-height-mobile);
    font-size: var(--font-button-size-mobile);
  }

  .button--slim {
    min-height: var(--style-button-slim-height-mobile);
  }
}

.content-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-overlay);
}

.list-unstyled {
  padding: 0;
  list-style: none;
  margin: 0;
}

.height-inherit {
  height: inherit;
}

.dynamic-840 {
  min-height: calc(840px - var(--header-height));
}

.mt-100 {
  -webkit-margin-before: 100px;
  margin-block-start: 100px;
}

.mb-100 {
  -webkit-margin-after: 100px;
  margin-block-end: 100px;
}

.section-headings+.section-content {
  display: block;
  -webkit-margin-before: 50px;
  margin-block-start: 50px;
}

.section-headings-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.headings-width,
.section-headings-left {
  max-width: 730px;
}

.headings-width {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.headings-width>.text {
  max-width: 590px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.section-headings .subheading+.heading {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.section-headings .heading+.text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.section-headings-sticky {
  --position: calc(var(--header-height) + 40px);
  position: -webkit-sticky;
  position: sticky;
  top: var(--position, 0px);
}

.section-padding {
  --padding-top: 100px;
  --padding-bottom: 100px;
  -webkit-padding-before: var(--padding-top);
  padding-block-start: var(--padding-top);
  -webkit-padding-after: var(--padding-bottom);
  padding-block-end: var(--padding-bottom);
}

@media (max-width: 991px) {
  .mt-100 {
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
  }

  .mb-100 {
    -webkit-margin-after: 80px;
    margin-block-end: 80px;
  }

  .section-padding {
    --padding-top: 80px;
    --padding-bottom: 80px;
  }

  .section-headings+.section-content {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .section-headings-horizontal .section-headings-left {
    max-width: 68%;
    width: 68%;
  }

  .section-headings-left {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .mt-100 {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
  }

  .mb-100 {
    -webkit-margin-after: 60px;
    margin-block-end: 60px;
  }

  .section-headings .subheading+.heading {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
  }

  .section-headings .heading+.text {
    -webkit-margin-before: 15px;
    margin-block-start: 15px;
  }

  .section-headings .buttons {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .section-headings-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
  }

  .section-headings-horizontal .buttons {
    width: 100%;
  }

  .section-padding {
    --padding-top: 60px;
    --padding-bottom: 60px;
  }

  .section-headings-horizontal .section-headings-left {
    max-width: 100%;
    width: 100%;
  }

  .section-content>.button {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}

/*---- drawer opener ----*/
drawer-opener {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

drawer-opener svg {
  width: 100%;
  height: 100%;
}

drawer-opener.menu-close svg {
  width: 30px;
  height: 30px;
}

drawer-opener * {
  pointer-events: none;
}

.menu-open {
  width: 36px;
  height: 36px;
  color: var(--color-foreground);
}

.social-link {
  text-decoration: none;
  width: var(--size-social, 40px);
  height: var(--size-social, 40px);
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rating-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.radius100 {
  border-radius: 100%;
  overflow: hidden;
}

.radius42 {
  border-radius: 42px;
  overflow: hidden;
}

.radius20 {
  border-radius: 20px;
  overflow: hidden;
}

.radius16 {
  border-radius: 16px;
  overflow: hidden;
}

.radius12 {
  border-radius: 12px;
  overflow: hidden;
}

.radius10 {
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .radius42 {
    border-radius: 32px;
  }

  .radius20 {
    border-radius: 14px;
  }

  .radius16 {
    border-radius: 10px;
  }

  .radius12 {
    border-radius: 8px;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.iframe-wrapper,
.media {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.iframe-wrapper iframe,
.media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scroll-to-top {
  --size: 50px;
  position: fixed;
  width: var(--size);
  height: var(--size);
  bottom: 20px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 10;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f17f00;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-lock .scroll-to-top {
  display: none;
}

.scroll-to-top svg {
  --size: 22px;
  color: #fff;
  width: var(--size);
  height: var(--size);
}

@media (max-width: 767px) {
  .scroll-to-top {
    --size: 40px;
  }

  .scroll-to-top svg {
    --size: 20px;
  }
}

/*---- Swiper Slider ----*/
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}

.swiper:not(.swiper-initialized) {
  opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--swiper-navigation-color);
  background-color: var(--swiper-navigation-background-color);
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover {
  color: var(--swiper-navigation-hover-color);
  background-color: var(--swiper-navigation-hover-background-color);
}

.swiper-nav-inner>* {
  --size: 44px;
  position: static;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}

.swiper-nav-inner>*:focus,
.swiper-nav-inner>*:hover {
  --color-border: rgba(28, 37, 57, 1);
}

.swiper-nav-inner svg {
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
}

.swiper-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.nav-horizontal {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .swiper-nav-inner {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }

  .swiper-nav-inner>* {
    --size: 36px;
  }
}

/*---- container ----*/
.grid-gap {
  row-gap: 10px;
}

.grid-gap-narrow {
  gap: 12px;
}

@media (max-width: 991px) {

  .container {
    max-width: 100%;
  }
}


/*---- Faq Accordion ----*/
.accordion-block {
  --color-background: rgba(255, 255, 255, 1);
  border-radius: 14px;
  background-color: var(--color-background);
  overflow: hidden;
  border: 2px solid var(--color-border);
}

.accordion-block.active {
  --color-border: rgba(0, 183, 241, 1);
}

.accordion-block+.accordion-block {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.accordion-opener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 40px;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}

.accordion-content-inner {
  padding: 0px 40px 24px;
}

.accordion-opener .acc-icon {
  --color-background: rgba(3, 15, 18, 0.6);
  background-color: var(--color-background);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 50px;
  width: 50px;
  height: 50px;
}

.accordion-block.active .accordion-opener .acc-icon {
  --color-background: rgba(0, 183, 241, 1);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-opener .acc-icon svg {
  --color-foreground: rgba(255, 255, 255, 1);
  color: var(--color-foreground);
}

@media (max-width: 767px) {
  .accordion-opener {
    gap: 24px;
    padding: 24px 16px;
  }

  .accordion-content-inner {
    padding: 0px 16px 24px;
  }

  .accordion-opener .acc-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .accordion-opener .acc-icon svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
}

/*---- Language Currency Dropdown ----*/
.dropdown-button {
  --color-border: rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.dropdown-wrap {
  width: 210px;
  position: relative;
}

.dropdown-wrap.active .dropdown-button {
  border-radius: 0 0 4px 4px;
}

.dropdown-item,
.dropdown-btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.dropdown-button svg,
.dropdown-btn-text .text {
  --color-foreground: rgba(255, 255, 255, 0.6);
  color: var(--color-foreground);
}

.header-white-bg .dropdown-button:hover svg,
.header-white-bg .dropdown-button:hover .dropdown-btn-text .text {
  --color-foreground: rgba(0, 183, 241, 1);
}

.dropdown-button:hover svg,
.dropdown-button:hover .dropdown-btn-text .text,
.dropdown-button:hover>.text {
  --color-foreground: rgba(255, 255, 255, 1);
}

.dropdown-list>li+li {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
}

.dropdown-item .text {
  --color-foreground: rgba(3, 15, 18, 0.6);
  white-space: break-spaces;
}

.dropdown-list>li .heading {
  --color-foreground-heading: rgba(3, 15, 18, 0.8);
}

.dropdown-list {
  background: var(--color-background);
  padding: 16px 20px;
}

.dropdown-list-wrap {
  --color-background: rgba(255, 255, 255, 1);
  background: var(--color-background);
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  max-height: 0;
  z-index: 2;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {

  .header-white-bg .dropdown-button:hover svg,
  .header-white-bg .dropdown-button:hover .dropdown-btn-text .text {
    --color-foreground: rgba(0, 0, 0, 1);
  }

  .dropdown-button svg,
  .dropdown-btn-text .text {
    --color-foreground: rgba(0, 0, 0, 1);
  }
}

/*---- Image Shape ----*/
.image-shape {
  --size-shape: 196px;
  border-radius: var(--image-border-radius, 0);
  overflow: hidden;
  border: var(--image-border-width, 0) solid var(--image-border-color, transparent);
  outline: var(--image-outline-width, 0) solid var(--image-outline-color, transparent);
  max-width: var(--size-shape);
  width: var(--size-shape);
}

.image-pill {
  --image-border-radius: 15px;
  --image-border-width: 8px;
  --image-border-color: rgba(255, 255, 255, 1);
  --image-outline-width: 2px;
  --image-outline-color: #F26721;
}

.image-square {
  --image-border-radius: 20px;
  --image-border-width: 6px;
  --image-border-color: rgba(255, 255, 255, 1);
  --image-outline-width: 2px;
  --image-outline-color: #F26721;
}

.image-pill img {
  max-width: inherit;
  min-width: inherit;
  height: inherit;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/*---- Video ----*/
.video {
  --color-foreground: rgba(255, 255, 255, 0.7);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-primary-button-text: rgb(241, 169, 0);
  --color-primary-button-border: rgba(255, 255, 255, 1);
  position: relative;
  min-height: 530px;
}

.video .content {
  max-width: 546px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.video .content>.heading+.text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.video .video-wrap {
  -webkit-margin-before: 70px;
  margin-block-start: 70px;
  display: block;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

.video-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  border: 4px solid var(--color-border);
}

.video-frame {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
}

iframe.video-frame {
  aspect-ratio: 16/9;
  display: block;
}

.close {
  --color-background: rgba(4, 93, 118, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  position: absolute;
  top: -16px;
  right: -16px;
  cursor: pointer;
  color: var(--color-foreground);
  background: var(--color-background);
  min-width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

/*---- Promotion card ----*/
.promotion-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.promotion-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.promotion-card .svg-wrapper {
  --color-foreground: rgba(255, 255, 255, 1);
  color: var(--color-foreground);
}

.promotion-card.card-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.promotion-content {
  max-width: 300px;
}

.promotion-bg .promotion-content>h2+* {
  margin-top: 16px;
}

.promotion-content>h2+* {
  margin-top: 10px;
}

.promotion-bg {
  --color-background: rgba(255, 255, 255, 1);
  background: var(--color-background);
  padding: 24px;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
}

.border-wrapper {
  --color-background: transparent;
  --color-border: rgba(177, 181, 182, 1);
  --border-padding: 16px;
  padding: var(--border-padding, 0);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
}

.border-wrapper .promotion-bg {
  --color-background: rgba(247, 247, 248, 1);
  background: var(--color-background);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 16px;
  border-radius: 12px;
  border: none;
}

.bg-blue {
  --color-background: rgba(115, 140, 246, 1);
  background-color: var(--color-background);
}

.bg-cyan {
  --color-background: #F26721;
  background-color: #F26721;
}

.bg-purple {
  --color-background: rgba(104, 97, 255, 1);
  background-color: var(--color-background);
}

.bg-yellow {
  --color-background: rgba(249, 183, 4, 1);
  background-color: var(--color-background);
}

.bg-pink {
  --color-background: rgba(253, 107, 135, 1);
  background-color: var(--color-background);
}

.bg-hotpink {
  --color-background: rgba(253, 128, 210, 1);
  background-color: var(--color-background);
}

@media (max-width: 767px) {
  .promotion-bg {
    padding: 16px;
  }
}

/*---- Payment Method ----*/

/*---- User Image ----*/
.user-wrap {
  --color-background: rgba(255, 255, 255, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 132px;
  background: var(--color-background);
  gap: 16px;
}

.user-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-img .more-user-icon,
.user-img img {
  min-width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  border: 1px solid var(--color-border);
  -o-object-fit: cover;
  object-fit: cover;
}

.user-img>*:not(:first-child) {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
}

.user-img .more-user-icon {
  --color-background: rgba(0, 64, 84, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  background: var(--color-background);
  color: var(--color-foreground);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.user-text strong {
  font-weight: 600;
}

/*---- Badge and Wishlist ----*/
.wishlist-icon,
.badge {
  --badge-radius: 30px;
  --badge-padding: 6px 16px;
  --color-background: rgba(255, 255, 255, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: var(--color-background);
  padding: var(--badge-padding);
  position: absolute;
  bottom: -17px;
  right: 16px;
  z-index: 2;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: var(--badge-radius);
}

.badge {
  --badge-radius: 80px;
  bottom: auto;
  top: 16px;
  right: auto;
  left: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wishlist-icon {
  --badge-radius: 100%;
  min-width: 40px;
  width: 40px;
  height: 40px;
  bottom: auto;
  top: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.wishlist-icon svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.wishlist-icon.active svg {
  fill: var(--color-foreground);
}

.text-sky {
  --color-foreground: rgba(0, 183, 241, 1);
  color: var(--color-foreground);
}

/*---- Newsletter Input ----*/
.input-wrap {
  min-height: 60px;
  border-radius: 42px;
  padding: 2px 24px;
  width: 100%;
  color: var(--color-input-text);
  background-color: var(--color-input-background);
  border: var(--style-border-width-inputs) solid var(--color-input-border);
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.input-wrap input {
  --color-input-text: rgba(33, 32, 32, 1);
  color: var(--color-input-text);
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
}

@media (max-width: 767px) {
  .input-wrap {
    min-height: 56px;
  }

  .input-wrap svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
}

/*---- Tour Tab ----*/
.tab-btn {
  --color-border: rgba(241, 153, 0, 0.3);
  border: 1px solid var(--color-border);
  outline: none;
  background: rgba(255, 166, 0, 0.297);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media(max-width:768px) {
  .tab-btn {
    padding: 3px 9px;
  }
}

.tab-btn.active {
  --color-background: #F26721;
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  background: var(--color-background);
}

.tab-btn:focus,
.tab-btn:hover {
  border: 1px solid var(--color-border);
  outline: none;
}

.tab-item {
  display: none;
}

.tab-item.active {
  display: block;
}

/*---- Filter Tab ----*/


.dropdown-list.destination-list {
  min-width: 290px;
  max-height: 300px;
  overflow: auto;
  scrollbar-width: thin;
}

.dropdown-button.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.google-map {
  --height: 500px;
  overflow: hidden;
  position: relative;
  height: var(--height);
}

.hover-on-card {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.hover-on-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(17, 34, 17, 0.2);
  box-shadow: 0 4px 8px rgba(17, 34, 17, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hover-on-image {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover-on-image .image img {
  margin-left: 24px;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover-on-image:hover .image img {
  margin-left: 0;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hover-on-image:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(17, 34, 17, 0.2);
  box-shadow: 0 4px 8px rgba(17, 34, 17, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover-on-bg::after {
  --color-background: rgba(0, 183, 241, 0.1);
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  background: #ff971738;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px 50px 0 0;
}

.hover-on-bg:hover::after {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.vertical-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100%;
}

.offer-badge {
  --color-background: rgba(250, 121, 1, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  color: var(--color-foreground);
  padding: 10px 10px;
  background: var(--color-background);
}

.offer-badge::before,
.offer-badge::after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 -1px;
  width: 100%;
  height: 100%;
  background: inherit;
  min-width: 55px;
}

.offer-badge::before {
  right: 100%;
}

.offer-badge::after {
  left: 100%;
}

.offer-badge.top-left {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
  -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
  transform: translateX(-30%) translateY(0%) rotate(-45deg);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
}

@media (max-width: 991px) {
  .offer-badge.top-left {
    -webkit-transform: translateX(-30%) translateY(-130%) rotate(-45deg);
    -ms-transform: translateX(-30%) translateY(-130%) rotate(-45deg);
    transform: translateX(-30%) translateY(-130%) rotate(-45deg);
  }
}

@media (max-width: 575px) {
  .offer-badge.top-left {
    -webkit-transform: translateX(-40%) translateY(-140%) rotate(-45deg);
    -ms-transform: translateX(-40%) translateY(-140%) rotate(-45deg);
    transform: translateX(-40%) translateY(-140%) rotate(-45deg);
  }
}

.hero-slider {
  --style-border-radius-buttons-secondary: 6px;
  --style-border-radius-buttons-primary: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-slider>.swiper {
  width: 100%;
}

.button-pulse:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #F26721;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.button-pulse:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(0, 183, 241, 0.7);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.count-item {
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(3, 15, 18, 0.5);
  --color-foreground-heading: rgba(3, 15, 18, 1);
  background: var(--color-background);
  padding: 12px 16px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 6px;
  -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 2px 6px, rgba(17, 17, 26, 0.4) 0px 2px 16px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 2px 6px, rgba(17, 17, 26, 0.4) 0px 2px 16px;
  min-width: 142px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-1 {
  --header-radius: 0;
  --color-background: rgba(0, 64, 84, 1);
  --color-foreground: rgba(255, 255, 255, 0.7);
  --color-foreground-heading: rgba(255, 255, 255, 0.75);
  --color-primary-hover: rgba(0, 183, 241, 1);
  background: var(--color-background);
  -webkit-box-shadow: 4px 0 20px rgba(3, 15, 18, 0.15);
  box-shadow: 4px 0 20px rgba(3, 15, 18, 0.15);
}

.header-white-bg {
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(3, 15, 18, 0.6);
  --color-foreground-heading: rgba(3, 15, 18, 0.75);
  --color-primary-hover: rgba(0, 183, 241, 1);
  --color-border: rgba(3, 15, 18, 1);
}

.header-white-bg .dropdown-button,
.header-white-bg .dropdown-button svg,
.header-white-bg .dropdown-btn-text .text {
  --color-foreground: rgba(3, 15, 18, 1);
}

.header-1 .menu-open {
  --color-foreground: rgba(3, 15, 18, 1);
}


.header-1.header-sticky.scrolled-past-header {
  --color-background: rgba(0, 64, 84, 1);
}


.header-white-bg.header-sticky.scrolled-past-header {
  --color-background: rgba(255, 255, 255, 1);
}

.header-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr 290px;
  grid-template-columns: 290px 1fr 290px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-background);
  border-radius: var(--header-radius);
}

.header-logo {
  max-width: 120px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-actions {
  justify-self: flex-end;
  gap: 30px;
}

.header-actions .button {
  --font-button-size: 16px;
}

sticky-header[data-sticky-type="always"] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  display: block;
}

@media (min-width: 992px) {
  .header-nav {
    position: relative;
  }
}

@media (max-width: 1365px) {
  .header-grid {
    -ms-grid-columns: 240px 1fr 240px;
    grid-template-columns: 240px 1fr 240px;
  }

  .header-actions {
    gap: 20px;
  }
}

@media (max-width: 1279px) {
  .header-grid {
    -ms-grid-columns: 200px 1fr 200px;
    grid-template-columns: 200px 1fr 200px;
  }

  .header-actions .button--slim {
    -webkit-padding-start: 18px;
    padding-inline-start: 18px;
    gap: 8px;
  }

  .header-actions .button--slim .svg-wrapper {
    min-width: 30px;
    height: 30px;
  }
}

@media (max-width: 991px) {
  .header-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-nav-headings .header-logo {
    max-width: 100px;
  }
}

@media (max-width: 767px) {
  .header-logo {
    max-width: 79px;
    height: 66px;
  }
}

.menu-link {
  color: var(--color-foreground-heading);
  font-family: var(--font-heading-family);
  padding: 0;
  font-size: var(--font-nav-main);
  font-weight: 500;
  border: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-item:focus>.menu-link,
.nav-item:hover>.menu-link {
  --color-foreground-heading: rgba(255, 255, 255, 1);
  color: var(--color-foreground-heading);
}


.header-white-bg .nav-item:focus>.menu-link,
.header-white-bg .nav-item:hover>.menu-link {
  --color-foreground-heading: rgba(249, 115, 22, 1);
  color: var(--color-foreground-heading);
}

.menu-link-main>.svg-wrapper svg {
  position: relative;
  top: 1px;
  min-width: 12px;
  height: 7px;
}

.menu-link-main {
  padding: 34px 16px;
}

.nav-item {
  position: relative;
}

.menu-link.heading {
  background: transparent !important;
  font-weight: 700;
}

@media (min-width: 992px) {

  .header-grandmenu {
    left: 100%;
    top: 0;
  }

  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1399px) {
  .menu-link-main {
    padding: 28px 12px;
  }
}

@media (max-width: 991px) {
  .header-nav {
    --color-background: rgba(229, 248, 254, 1);
    --color-foreground: rgba(0, 0, 0, 1);
    --color-foreground-heading: rgba(0, 0, 0, 1);
    position: fixed;
    right: 0;
    top: 0;
    background: var(--color-background);
    z-index: 10;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto;
  }

  .header-nav.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .mobile-menu-bottom {
    padding: 40px 15px 20px;
  }

  .mobile-menu-bottom .dropdown-wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
  }

  .mobile-menu-bottom .dropdown-button {
    padding: 8px 0;
    border: none;
    gap: 16px;
  }

  .mobile-menu-bottom .dropdown-list-wrap {
    width: calc(100vw - 30px);
    top: auto;
    left: 0;
    border-radius: 4px;
    right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    bottom: 100%;
  }

  .mobile-menu-bottom .dropdown-button,
  .mobile-menu-bottom .dropdown-button svg,
  .mobile-menu-bottom .dropdown-button .text,
  .mobile-menu-bottom .dropdown-button:hover svg,
  .mobile-menu-bottom .dropdown-button:hover .text {
    --color-foreground: rgba(0, 0, 0, 1);
  }

  .mobile-menu-bottom .dropdown-item.active>.text,
  .mobile-menu-bottom .dropdown-item:hover>.text {
    color: var(--color-primary-hover);
  }

  .mobile-menu-bottom .btn-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
  }

  .header-menu>* {
    width: 100%;
  }

  .menu-link-main {
    padding: 12px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-menu>.nav-item .menu-link-main {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }

  .menu-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }

  .menu-link.active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .menu-link>svg {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .menu-link.active>svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .header-nav-headings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 15px;
  }

  .header-nav-headings .svg-wrapper {
    color: #000;
    width: 28px;
    height: 28px;
    margin-right: -2px;
  }

  .menu-link * {
    pointer-events: none;
  }

  .nav-item:focus>.menu-link,
  .nav-item:hover>.menu-link {
    --color-foreground-heading: rgba(3, 15, 18, 1);
    color: var(--color-foreground-heading);
  }
}

.modal-search {
  --color-background: linear-gradient(184.15deg,
      rgba(28, 37, 57, 40%) -187.51%,
      #1a0800 96.62%);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-input-background: rgba(255, 255, 255, 0);
  --color-input-text: rgba(255, 255, 255, 1);
  --color-input-border: rgba(255, 255, 255, 1);
  --color-input-hover-background: rgba(255, 255, 255, 0);
  --color-input-hover-text: rgba(255, 255, 255, 1);
  --color-input-hover-border: rgba(255, 255, 255, 1);
  --color-primary-button-hover-background: rgba(255, 255, 255, 0);
  --color-primary-button-icon: rgba(255, 255, 255, 1);
  --color-primary-button-icon-background: rgba(255, 255, 255, 0);
  --color-primary-button-hover-icon: rgba(255, 255, 255, 1);
  --color-primary-button-hover-icon-background: rgba(255, 255, 255, 0);
}


.header-nav.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: var(--modal-header-height);
}

.modal-header .svg-wrapper {
  width: 36px;
  height: 36px;
}

.modal-header .svg-wrapper svg {
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .modal-header .svg-wrapper {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
  }
}

.hero-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.hero-banner.section-padding {
  --padding-top: 80px;
  --padding-bottom: 80px;
}

.hero-banner .content>.heading+.text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.hero-banner .content {
  max-width: 670px;
}

.hero-banner .hero-buttons {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-banner .hero-buttons>.button {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.hero-banner .user-wrap {
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
  max-width: 410px;
}

.hero-banner .image-shape {
  position: absolute;
  bottom: 2px;
  left: -98px;
}

.hero-image-wrap {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 45%;
}

.hero-image {
  --hero-height: 100%;
  border-radius: 457px 0 0 0;
  overflow: hidden;
  height: var(--hero-height);
  max-height: var(--hero-height);
  min-height: var(--hero-height);
}

.hero-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}


.hero-banner .hero-buttons {
  gap: 32px;
}

.hero-buttons {
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .hero-banner .image-shape {
    --size-shape: 170px;
    position: absolute;
    bottom: 2px;
    left: -15%;
  }

  .hero-banner .content {
    max-width: 480px;
  }
}

@media (max-width: 991px) {
  .hero-banner .user-wrap {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
    padding: 12px 20px;
  }

  .hero-banner .image-shape {
    --size-shape: 140px;
    left: auto;
    right: 10px;
    height: auto;
    bottom: 10px;
  }

  .hero-banner .image-pill {
    --image-border-width: 6px;
  }

  .hero-image {
    --hero-height: 500px;
    border-radius: 16px;
  }

  .hero-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .hero-image-wrap {
    position: relative;
    max-width: 100%;
    width: 100%;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .hero-banner.section-padding {
    --padding-top: 60px;
    --padding-bottom: 60px;
  }

  .hero-banner .content {
    max-width: 675px;
  }
}

@media (max-width: 767px) {
  .hero-banner .user-wrap {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .hero-banner .hero-buttons .button {
    padding: 16px 18px;
  }

  .hero-banner .image-shape {
    --size-shape: 120px;
  }

  .hero-banner.section-padding {
    --padding-top: 50px;
    --padding-bottom: 50px;
  }

  .hero-image {
    --hero-height: 440px;
  }
}

.popular-destination .section-headings-left {
  max-width: 730px;
}

.popular-destination .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.popular-destination .content .button {
  border-radius: 100%;
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  padding: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popular-destination .border-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  height: 100%;
}

.destination-slider {
  display: block;
}

.section-content .destination-slider {
  -webkit-margin-before: -12px;
  margin-block-start: -12px;
}

.destination-slider .image-pill {
  --image-outline-width: 0;
  --image-outline-color: transparent;
}

.destination-slide .title {
  text-align: center;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.destination-slide:hover .title {
  color: var(--color-primary-hover);
}

.destination-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.destination-slide .number {
  text-align: center;
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
}

.destination-slider .swiper {
  padding: 12px;
}

.destination-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
  text-align: center;
}

.destination-slide .image-shape {
  outline: 4px solid rgba(0, 183, 241, 0);
  outline-offset: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.destination-slide:hover .image-shape {
  outline: 2px solid rgba(241, 120, 0, 0.7);
  outline-offset: 0px;
}

.destination-slide .image-shape:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 183, 241, 0.2);
}

.destination-slide:hover .image-shape:after {
  width: 0;
  height: 0;
}

.destination-slider .section-headings-horizontal {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 16px;
}

@media (max-width: 991px) {
  .destination-slider .image-shape {
    --size-shape: 180px;
  }
}

.filter-list {
  --color-background: rgba(230, 248, 254, 1);
  --color-foreground: rgba(3, 15, 18, 1);
  --color-foreground-heading: rgba(3, 15, 18, 0.6);
}

.featured-tour {
  position: relative;
}

.featured-tour .section-headings-left {
  max-width: 75%;
  width: 75%;
}

.featured-tour .section-headings .heading+.text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.tab-buttons {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.featured-tour .headings-width {
  max-width: 900px;
}


.tab-contents {
  -webkit-margin-before: 50px;
  margin-block-start: 50px;
}

.featured-slider .swiper-slide {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  height: auto;
}

@media (max-width: 991px) {
  .featured-tour .section-headings-left {
    max-width: 68%;
    width: 68%;
  }
}

@media (max-width: 767px) {
  .featured-tour .section-headings-left {
    max-width: 100%;
    width: 100%;
  }

  .tab-buttons {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}

.product-card {
  --color-background: rgba(255, 255, 255, 1);
  --color-border: rgba(177, 181, 182, 1);
  --card-radius: 16px;
  --style-button-slim-height: 40px;
  --font-button-size: 16px;
  --badge-radius: 30px;
  --badge-padding: 6px 16px;
  border: 1px solid var(--color-border);
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: var(--card-radius);
  height: 100%;
  background: var(--color-background);
}

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

.product-card .review {
  --color-background: rgba(255, 255, 255, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: var(--color-background);
  padding: var(--badge-padding);
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: var(--badge-radius);
}

.product-card .review svg {
  --color-foreground: rgba(255, 186, 37, 1);
  color: var(--color-foreground);
}

.product-card .review strong {
  --color-foreground: rgba(3, 15, 18, 1);
  color: var(--color-foreground);
}

.product-card .content {
  padding: 30px 16px;
}

.product-card .content>.heading+.text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.product-card .card-person-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.product-card .person-time-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.product-card .price-booking-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card .card-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}

.product-card .product-title:hover .heading {
  color: var(--color-primary-hover);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.package-slider .swiper-nav-inner {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.package-slider .swiper {
  padding-top: 8px;
}

.package-slider .swiper .swiper-slide {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  height: auto;
}

/* Featured tour slider */
tour-slider .swiper-slide {
  height: auto;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

/* ===== Featured Tour — New Design ===== */

new-tab,
tour-slider {
  display: block;
}

.ft-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.ft-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.ft-nav-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.ft-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #1a2e2e;
  color: #fff;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.ft-nav-btn:hover {
  background: #F26721;
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.ft-view-all-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a2e2e;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}

.ft-view-all-link:hover {
  color: #F26721;
}

/* Underline tab nav */
.ft-tab-nav {
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ft-tab-nav::-webkit-scrollbar {
  display: none;
}

.ft-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.ft-tab-nav .tab-btn.ft-tab-btn {
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  border-radius: 0;
  outline: none;
}

.ft-tab-nav .tab-btn.ft-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #F26721;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}

.ft-tab-nav .tab-btn.ft-tab-btn.active {
  color: #F26721;
  background: transparent;
}

.ft-tab-nav .tab-btn.ft-tab-btn.active::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.ft-tab-nav .tab-btn.ft-tab-btn:hover {
  color: #F26721;
  border: none;
}

/* Slider area */
.ft-slider-wrap {
  margin-top: 0;
}

/* Clickable card link reset */
a.ft-card { text-decoration: none; color: inherit; }
a.ft-card:hover { text-decoration: none; color: inherit; }

/* Detail page info strip */
.pd-info-strip { background: #fff; border-bottom: 2px solid #f3f4f6; padding: 14px 0; }
.pd-info-strip-inner { display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; }
.pd-info-item { display: flex; align-items: center; gap: 10px; }
.pd-info-icon { width: 36px; height: 36px; background: #fff7ed; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #f97316; flex-shrink: 0; }
.pd-info-label { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: .6px; font-weight: 600; line-height: 1; margin-bottom: 3px; }
.pd-info-value { font-size: 14px; font-weight: 700; color: #1a2e2e; line-height: 1; }
.pd-info-sep { width: 1px; height: 32px; background: #e5e7eb; flex-shrink: 0; }
.pd-info-price .pd-info-value { color: #f97316; font-size: 17px; }
.pd-info-price .pd-info-unit { font-size: 11px; color: #9ca3af; font-weight: 400; margin-left: 2px; }

/* Full-bleed card */
.ft-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 420px;
  display: block;
}

.ft-card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.ft-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.ft-card:hover .ft-card-image img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.ft-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F26721;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.ft-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, rgba(8, 18, 18, 0.97)), color-stop(60%, rgba(8, 18, 18, 0.75)), to(transparent));
  background: -o-linear-gradient(bottom, rgba(8, 18, 18, 0.97) 0%, rgba(8, 18, 18, 0.75) 60%, transparent 100%);
  background: linear-gradient(to top, rgba(8, 18, 18, 0.97) 0%, rgba(8, 18, 18, 0.75) 60%, transparent 100%);
  padding: 60px 14px 14px;
  z-index: 1;
}

.ft-card-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ft-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 12px;
  min-width: 0;
}

.ft-duration-badge {
  background: rgba(20, 40, 40, 0.88);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Star rating */
.ft-star-rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ft-stars {
  color: #FBBF24;
  font-size: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ft-rating-text {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.ft-review-count {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* Price row — single line, no wrap */
.ft-card-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.ft-price-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.ft-price-main {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.ft-price-req {
  font-size: 13px;
}

/* Action buttons row */
.ft-card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ft-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.15s, opacity 0.15s;
  transition: transform 0.15s, opacity 0.15s;
}

.ft-action-btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.9;
}

.ft-action-call {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ft-action-call:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.ft-action-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid transparent;
}

.ft-action-wa:hover {
  background: #1ebe5d;
  color: #fff;
}

.ft-view-btn {
  background: #fff;
  color: #1a2e2e;
  border: none;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -o-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ft-view-btn:hover {
  background: #F26721;
  color: #fff;
}

.ft-card-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.ft-card-btns .ft-view-btn {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ft-card-btns .ft-view-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.ft-book-btn {
  flex: 1;
  padding: 9px 0;
  background: #F26721;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-button--family, "Space Grotesk", sans-serif);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  touch-action: manipulation;
}

.ft-book-btn:hover {
  background: #d9561a;
}

.ft-pay-btn {
  background: #0f766e;
}

.ft-pay-btn:hover {
  background: #0b5c56;
}

@media (max-width: 991px) {
  .ft-card {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .ft-section-header {
    gap: 12px;
  }

  .ft-tab-nav .tab-btn.ft-tab-btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .ft-card {
    height: 360px;
  }

  .ft-price-main {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .ft-card {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .package-slider .section-headings-horizontal {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.image-text {
  overflow: hidden;
}

.image-text .image-wrap {
  --image-space: 45px;
  -webkit-padding-end: var(--image-space);
  padding-inline-end: var(--image-space);
  height: 100%;
  position: relative;
}

.image-text.text-first {
  position: relative;
}

.image-text.text-first .image-wrap {
  -webkit-padding-start: var(--image-space);
  padding-inline-start: var(--image-space);
  -webkit-padding-end: 0;
  padding-inline-end: 0;
}

.image-text .image>img {
  max-height: 530px;
  height: 530px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.image-text.text-first .image>img {
  max-height: 600px;
  height: 600px;
}

.image-text .content {
  padding: 0 32px 40px;
}

.image-text.text-first .content {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  -webkit-padding-end: 32px;
  padding-inline-end: 32px;
}

.image-text .content>.button {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.image-text .content>.heading+.text {
  -webkit-margin-before: 15px;
  margin-block-start: 15px;
}

.image-text .text-list {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.image-text .text-list>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.image-text .text-list>li+li {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.image-text .promotion-content {
  max-width: 480px;
}

.image-text.text-first .image-absolute,
.image-text .image-absolute {
  position: relative;
  -webkit-margin-before: -40%;
  margin-block-start: -40%;
  -webkit-margin-end: calc(-1 * var(--image-space));
  margin-inline-end: calc(-1 * var(--image-space));
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-padding-after: 2px;
  padding-block-end: 2px;
}

.image-text.text-first .image-absolute {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  -webkit-margin-start: calc(-1 * var(--image-space));
  margin-inline-start: calc(-1 * var(--image-space));
}

.image-text.text-first .promotion-icon {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
}

.image-text-about .image {
  height: 100%;
}

.image-text.image-text-about .image img {
  -o-object-fit: cover;
  object-fit: cover;
}

.image-text-about .promotion-card.card-horizontal {
  gap: 10px;
}

.image-text-about .text-list>li {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* ── About Experts Section ── */
.about-experts-section {
  overflow: visible;
}

/* Rectangular image container — give enough room for the badges */
.abt-img-wrap {
  position: relative;
  padding: 16px 16px 32px 0;
}

.abt-img-rect {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  z-index: 1;
}

.abt-img-rect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.abt-img-rect:hover img {
  transform: scale(1.04);
}

/* Orange decorative corner line — top-right of the wrap (behind image) */
.abt-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-top: 4px solid #f97316;
  border-right: 4px solid #f97316;
  border-radius: 0 24px 0 0;
  z-index: 0;
}

/* Orange accent dot — bottom-left corner accent */
.abt-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: -6px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #f97316 1.5px, transparent 1.5px) 0 0 / 12px 12px;
  opacity: 0.45;
  z-index: 0;
}

/* Floating stat badges */
.abt-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 3;
}

/* Bottom-left badge — sits below the image */
.abt-badge--bl {
  bottom: 0;
  left: 24px;
}

/* Top-right badge — sits inside the image top-right */
.abt-badge--tr {
  top: 28px;
  right: 28px;
}

.abt-badge-num {
  font-size: 22px;
  font-weight: 800;
  color: #f97316;
  line-height: 1;
}

.abt-badge-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Mobile */
@media (max-width: 991px) {
  .abt-img-wrap {
    padding: 12px 12px 40px 0;
    margin-bottom: 20px;
  }

  .abt-badge--bl {
    bottom: 4px;
    left: 12px;
  }

  .abt-badge--tr {
    top: 20px;
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .abt-img-wrap {
    margin-bottom: 40px;
    padding: 16px 16px 0 0;
  }

  .abt-badge--bl {
    bottom: -14px;
    left: -10px;
  }

  .about-experts-section .content {
    padding-left: 0;
  }
}

@media (max-width: 1279px) {

  .image-text .image-wrap {
    -webkit-padding-end: 24px;
    padding-inline-end: 24px;
  }

  .image-text.text-first .image-wrap {
    -webkit-padding-start: 24px;
    padding-inline-start: 24px;
  }

  .image-text .image-shape.image-square,
  .image-text .image-shape.image-pill {
    --size-shape: 160px;
  }
}

@media (max-width: 991px) {

  .image-text.text-first .image-absolute,
  .image-text .image-absolute {
    position: absolute;
    display: inline-block;
    margin: 0;
    padding: 0;
    bottom: 10px;
    left: 10px;
  }

  .image-text .image-wrap {
    -webkit-padding-end: 0;
    padding-inline-end: 0;
  }

  .image-text.text-first .image-wrap {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
  }

  .image-text .content {
    padding: 0;
    -webkit-margin-before: 48px;
    margin-block-start: 48px;
  }

  .image-text.text-first .content {
    padding: 0;
    -webkit-margin-before: 48px;
    margin-block-start: 48px;
  }

  .image-text .text-list {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .image-text .image-shape.image-square,
  .image-text .image-shape.image-pill {
    --image-border-width: 6px;
    --size-shape: 160px;
  }

  .image-text.image-text-about .image>img {
    max-height: 500px;
    height: 500px;
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .image-text .promotion-card {
    gap: 16px;
  }

  .image-text .image-shape.image-square,
  .image-text .image-shape.image-pill {
    --size-shape: 120px;
  }

  .image-text.text-first .image>img,
  .image-text .image>img {
    max-height: 440px;
    height: 440px;
  }

  .image-text .text-list>li+li {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
  }
}

.counter-up {
  --color-background: rgba(0, 64, 84, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  background: var(--color-background);
  position: relative;
}

.counter-up-wrap {
  display: block;
}

.counter-item {
  text-align: center;
}

.counter-item>.heading+.text {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.counter-up:not(.no-boreder)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  left: -8px;
  top: 0;
}

.counter-up .grid-gap {
  row-gap: 40px;
}

.counter-has-bg .counter-up {
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(0, 3, 18, 0.7);
  --color-foreground-heading: rgba(0, 15, 18, 1);
  background: var(--color-background);
  position: relative;
  padding: 32px 24px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.counter-has-bg .counter-item>.svg-wrapper+.heading {
  margin-top: 10px;
}

.counter-up:not(.no-boreder)::before {
  content: none;
}

.promotion.counter-has-bg .media {
  height: 300px;
}

@media (max-width: 767px) {
  .counter-up:not(.no-boreder)::before {
    content: none;
  }
}

.image-grid .content-box {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(255, 255, 255, 1);
  --style-button-slim-height: 40px;
  --font-subheading--family: "Satisfy", sans-serif;
}

.image-grid {
  --spacing-image-grid: 1.5rem;
  overflow: hidden;
  -webkit-padding-before: 5px;
  padding-block-start: 5px;
}

.image-grid .overlay:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(66%, rgba(5, 3, 0, 0.7)), color-stop(81%, rgba(5, 3, 0, 0.9)), to(#050300));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(5, 3, 0, 0.7) 66%, rgba(5, 3, 0, 0.9) 81%, #050300 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(5, 3, 0, 0.7) 66%, rgba(5, 3, 0, 0.9) 81%, #050300 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(5, 3, 0, 0.7) 66%, rgba(5, 3, 0, 0.9) 81%, #050300 100%);
}

.image-grid .section-headings-left .text {
  max-width: 630px;
  width: 630px;
}

.image-grid .image-grid-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  height: 100%;
  min-height: inherit;
}

.image-grid .item-height-auto .image-grid-item {
  height: calc(50% - var(--spacing-image-grid) / 2);
  min-height: calc(50% - var(--spacing-image-grid) / 2);
}

.image-grid .grid-gap>div {
  min-height: 534px;
}

.image-grid-item .flex-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.image-grid modal-video+modal-video .image-grid-item {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.image-grid .image-grid-item+.image-grid-item {
  -webkit-margin-before: var(--spacing-image-grid);
  margin-block-start: var(--spacing-image-grid);
}

.image-grid .content-box {
  padding: 40px 30px;
}

.image-grid .content>*+* {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.image-grid .content-box.box-horizontal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tp-pay-btn {
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  white-space: nowrap;
}

.image-grid:not(.video-grid) .image:focus .button--primary,
.image-grid:not(.video-grid) .image:hover .button--primary {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--color-primary-button-hover-text);
  background-color: var(--color-primary-button-hover-background);
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-hover-border);
}

.image-grid.video-grid .button--primary:focus,
.image-grid.video-grid .button--primary:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--color-primary-button-hover-text);
  background-color: var(--color-primary-button-hover-background);
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-hover-border);
}

.video-grid .button {
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(0, 64, 84, 1);
  --color-border: rgba(255, 255, 255, 1);
  --style-border-radius-buttons-primary: 100%;
  background-color: var(--color-background);
  color: var(--color-foreground);
  border-color: var(--color-border);
  border-radius: var(--style-border-radius-buttons-primary);
  padding: 0;
}

.video-grid .button svg {
  width: 30px;
  min-height: 30px;
  height: 30px;
}


.video-grid .button.theme-w-60 svg {
  width: 20px;
  min-height: 20px;
  height: 20px;
}

.video-grid .video-wrap {
  display: block;
}

.video-grid .video-wrap+.video-wrap {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.image-grid .content-box>.content+.button {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.image-grid .content-box .button:not(.open-video) {
  min-width: 174px;
  color: #fff;
}

.offer-grid .offer-card .content-box {
  text-align: center;
  max-width: 450px;
  padding: 100px 30px;
}

.offer-card .content-box .heading+.button {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.height-narrow.image-grid .grid-gap>div {
  min-height: auto;
}

.marquee.image-grid {
  --color-background: transparent;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  -webkit-margin-after: 60px;
  margin-block-end: 60px;
  padding: 0;
}

.marquee.image-grid .offer-badge.top-left {
  -webkit-transform: translateX(-35%) translateY(-23%) rotate(-45deg);
  -ms-transform: translateX(-35%) translateY(-23%) rotate(-45deg);
  transform: translateX(-35%) translateY(-23%) rotate(-45deg);
}

@media (max-width: 991px) {
  .image-grid .image-grid-item img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .image-grid .section-headings-left .text {
    max-width: 100%;
    width: 100%;
  }

  .offer-grid .offer-card .content-box {
    padding: 80px 24px;
  }
}

@media (max-width: 767px) {
  .image-grid .content-box {
    padding: 40px 20px;
  }

  .image-grid .content-box.box-horizontal>.content {
    width: 100%;
  }

  .image-grid .content-box.box-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .offer-grid .offer-card .content-box {
    padding: 60px 16px;
  }
}

@media (max-width: 575px) {
  .offer-grid.height-narrow {
    --spacing-image-grid: 16px;
  }

  .offer-grid.height-narrow .grid-gap {
    row-gap: 16px;
  }

  .offer-grid.height-narrow .image-grid-item.offer-card {
    min-height: 0;
    aspect-ratio: 1.48 / 1;
  }

  .offer-grid.height-narrow .image-grid-item.offer-card .image,
  .offer-grid.height-narrow .image-grid-item.offer-card .image img {
    height: 100%;
  }

  .offer-grid.height-narrow .offer-card-content {
    width: 100%;
    min-height: 100%;
    max-width: none;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .offer-grid.height-narrow .offer-card-content .heading {
    font-size: 17px;
    line-height: 1.24;
    letter-spacing: -0.01em;
    max-width: 86%;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: balance;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  }

  .offer-grid.height-narrow .offer-badge {
    padding: 8px 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .offer-grid.height-narrow .offer-badge.top-left {
    -webkit-transform: translateX(-27%) translateY(-58%) rotate(-45deg);
    -ms-transform: translateX(-27%) translateY(-58%) rotate(-45deg);
    transform: translateX(-27%) translateY(-58%) rotate(-45deg);
  }

  .offer-grid.height-narrow .offer-badge::before,
  .offer-grid.height-narrow .offer-badge::after {
    min-width: 58px;
  }
}

.testimonial-inner {
  position: relative;
}

.testimonial .user-wrap {
  --color-background: rgba(0, 183, 241, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  width: 279px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.testimonial-card .content-text {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.testimonial .section-content {
  max-width: 683px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.testimonial .media img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.testimonial .user-wrap {
  -webkit-margin-after: 24px;
  margin-block-end: 24px;
}

.testimonial .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

/*--- Testimonial 2 ---*/
.testimonial-2 .testimonial-card {
  padding: 24px;
  border: 1px solid var(--color-border);
}

.testimonial-2 .swiper {
  -webkit-padding-before: 5px;
  padding-block-start: 5px;
}

.testimonial-2 .testimonial-card .heading+.text {
  -webkit-margin-before: 12px;
  margin-block-start: 12px;
}

.testimonial-2 .user-review-wrap {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.testimonial-2 .user-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.testimonial-2 .user-details img {
  border-radius: 32px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 50px;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-2 .section-content {
  max-width: 100%;
  width: 100%;
}

.testimonial-2 .rating-item svg {
  --color-foreground: rgba(255, 199, 0, 1);
  color: var(--color-foreground);
}

.testimonial-2 .swiper-slide {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  height: auto;
}

.testimonial-with-video {
  position: relative;
}

.testimonial-2.testimonial-with-video .testimonial-card {
  padding: 0;
  border: none;
  -webkit-padding-end: 48px;
  padding-inline-end: 48px;
}

.testimonial-with-video .rating-list {
  -webkit-margin-after: 16px;
  margin-block-end: 16px;
}

.testimonial-with-video .video-wrap {
  position: relative;
}

.testimonial-gallery-image {
  height: 380px;
  object-fit: cover;
}

.testimonial-with-video .button {
  --style-border-radius-buttons-primary: 40px;
  --style-border-radius-buttons-secondary: 40px;
}

.testimonial-with-video.testimonial-2 .user-details img {
  min-width: 70px;
  width: 70px;
  height: 70px;
}

.testimonial .testi-slider .testimonial-card {
  background: var(--color-background);
}

@media (max-width: 991px) {
  .testimonial-2.testimonial-with-video .testimonial-card {
    -webkit-padding-end: 0;
    padding-inline-end: 0;
  }

  .testimonial-gallery-image {
    height: 320px;
  }

  .testimonial-with-video.mb-100 {
    -webkit-margin-after: 100px;
    margin-block-end: 100px;
  }
}

@media (max-width: 767px) {
  .testimonial-2 .testimonial-card {
    padding: 16px;
  }

  .testimonial-gallery-image {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .testimonial-gallery-image {
    height: 250px;
  }
}

/* Testimonial image slider nav */
.tis-wrap {
  position: relative;
}

.tis-prev,
.tis-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.tis-prev {
  left: 8px;
}

.tis-next {
  right: 8px;
}

.tis-prev:hover,
.tis-next:hover {
  background: rgba(0, 0, 0, 0.72);
}

/* Bootstrap carousel missing styles */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Blog insight cards */
.bic-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.bic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

.bic-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.bic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.bic-card:hover .bic-img img {
  transform: scale(1.06);
}

.bic-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-primary, #f97316);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 13px;
}

.bic-date .bic-day {
  font-size: 18px;
}

.bic-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bic-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bic-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bic-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.bic-title:hover {
  color: var(--color-primary, #f97316);
}

.bic-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.bic-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary, #f97316);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}

.bic-btn:hover {
  gap: 10px;
  color: var(--color-primary, #f97316);
}

.accordion-title {
  cursor: pointer;
}

.accordion-title * {
  pointer-events: none;
}

.accordion-li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .accordion-horizontal .accordion-li {
    min-width: var(--width);
    width: var(--width);
    overflow: hidden;
    -webkit-transition: width 0.4s ease, min-width 0.4s ease;
    -o-transition: width 0.4s ease, min-width 0.4s ease;
    transition: width 0.4s ease, min-width 0.4s ease;
  }

  .accordion-horizontal .accordion-li.active {
    width: 100%;
    min-width: 420px;
  }
}

@media (max-width: 991px) {
  .accordion-title {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.blog {
  overflow: hidden;
}

.blog-card {
  --color-border: rgba(177, 181, 182, 1);
  --font-button-size: 16px;
  --font-button-size-mobile: 14px;
  position: relative;
  border: 1px solid var(--color-border);
  height: 100%;
}

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

.blog-card .content {
  padding: 24px;
}

.blog-card .content .blog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.blog-card .card-time-comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-card .card-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.blog-card .card-list-item svg {
  min-width: 16px;
  height: 16px;
}

.blog-card .user-info-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.blog-card .button .button-has-icon {
  min-width: 24px;
  height: 24px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-card .button-has-icon .svg-wrapper {
  -webkit-margin-before: 0px;
  margin-block-start: 0px;
}

.blog-card .button:hover .button-has-icon {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.blog-card .button--slim {
  padding: 10px 20px;
}

.blog-card .content .blog-title:hover {
  color: var(--color-primary-hover);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-2 .section-headings>.heading+.text {
  max-width: 590px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.blog-2 .blog-card .content .blog-title {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.blog-2 .blog-card .content .card-time-comments {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.blog-3 .card-list-item {
  position: relative;
}

.has-dot:after {
  --color-background: rgba(99, 171, 69, 1);
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--color-background);
  border-radius: 100%;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-3 .button-with-duration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.blog-3 .badge {
  --badge-radius: 100%;
  --color-background: rgba(3, 15, 18, 0.5);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.blog-horizontal-wrap>.blog-card+.blog-card {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.blog-card-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 200px;
}

.blog-card-horizontal .image {
  position: relative;
  max-width: 269px;
  height: auto;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.blog-card-horizontal .image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-card-horizontal .content {
  padding: 24px 16px;
}

.blog-3 .blog-card:not(.blog-card-horizontal) .image {
  --height: 493px;
  height: var(--height);
}

.blog-3 .blog-card:not(.blog-card-horizontal) .image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .blog-3 .blog-card:not(.blog-card-horizontal) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .blog-3 .blog-card:not(.blog-card-horizontal) .image {
    --height: 573px;
  }
}

@media (max-width: 1199px) {
  .blog-card .content {
    padding: 16px;
  }

  .blog-card .user-info-button {
    gap: 12px;
  }

  .blog-card .button--slim {
    padding: 10px 16px;
  }

  .blog-3 .blog-card:not(.blog-card-horizontal) .image {
    --height: 453px;
  }
}

@media (max-width: 767px) {
  .blog-card-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .blog-card-horizontal .content {
    width: 100%;
  }

  .blog-card-horizontal .image {
    max-width: 100%;
  }

  .blog-3 .blog-card:not(.blog-card-horizontal) .image {
    --height: auto;
  }
}

.subscribe {
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-input-background: rgba(255, 255, 255, 1);
}

.subscribe-inner {
  position: relative;
  min-height: 313px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.subscribe-inner .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 16px;
  max-width: 664px;
}

.subscribe-form {
  --color-input-hover-text: rgba(3, 15, 18, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-margin-before: 45px;
  margin-block-start: 45px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.subscribe-form .field {
  max-width: calc(70% - 12px);
  width: calc(70% - 12px);
}

.subscribe-form .form-button {
  max-width: calc(30% - 12px);
  width: calc(30% - 12px);
}

.subscribe-form .form-button .button {
  width: 100%;
  min-height: 60px;
  --font-button-size: 18px;
}

.subscribe-full-width .subscribe-inner {
  min-height: 350px;
}

.subscribe-full-width .subscribe-inner .content {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.subscribe-full-width .input-wrap {
  border-radius: 6px;
}

.subscribe-full-width .input-wrap.radius42 {
  border-radius: 42px;
}

@media (max-width: 767px) {

  .subscribe-form .form-button,
  .subscribe-form .field {
    max-width: 100%;
    width: 100%;
  }

  .subscribe-form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .subscribe-form .form-button .button {
    min-height: 56px;
  }

  .subscribe-form {
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
  }
}

/*--- Subscribe 2 ---*/

.promotion {
  position: relative;
}

.promotion-slider {
  -webkit-padding-after: 32px;
  padding-block-end: 32px;
}

.promotion .media {
  height: 450px;
}

.promotion .section-headings {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
}

.promotion.promotion-white-bg .section-headings {
  --color-foreground: rgba(3, 15, 18, 0.7);
  --color-foreground-heading: rgba(3, 15, 18, 1);
}

.promotion.promotion-white-bg .border-wrapper {
  --color-border: rgba(148, 148, 148, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.promotion.promotion-white-bg .border-wrapper:hover {
  --color-border: rgba(241, 153, 0, 0.3);
  --color-background: rgba(241, 157, 0, 0.15);
  background: var(--color-background);
}

.promotion-slider {
  display: block;
}

.promotion .content-wrapper {
  position: relative;
  z-index: 2;
  top: 65px;
}

.promotion-slider .swiper {
  padding: 16px;
}

.promotion-slider .swiper-nav-inner {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.promotion-about .promotion-card {
  --color-foreground: rgba(3, 15, 18, 0.7);
  --color-foreground-heading: rgba(3, 15, 18, 1);
  --color-background: rgba(255, 255, 255, 1);
  background: var(--color-background);
  height: 100%;
}

.promotion-about .promotion-card {
  --color-foreground: rgba(3, 15, 18, 0.7);
  --color-foreground-heading: rgba(3, 15, 18, 1);
  --color-background: rgba(255, 255, 255, 1);
  background: var(--color-background);
  height: 100%;
}

.promotion-about .promotion-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.promotion-about .promotion-icon {
  --color-background: rgb(241, 120, 0);
  background: var(--color-background);
}

.promotion-about .svg-wrapper svg {
  color: white;
}

.promotion.promotion-about .media {
  height: 100%;
}

.promotion.promotion-about .promotion-content {
  max-width: 100%;
}

.promotion-sticky .promotion-card {
  --color-background: #f26721cc;
  --top: 40px;
  --position: calc(var(--header-height) + var(--top));
  background: var(--color-background);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: -webkit-sticky;
  position: sticky;
  top: var(--position);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  -ms-flex-direction: column;
  flex-direction: column;
}

.promotion-sticky .promotion-card-inner>div:nth-child(1) {
  --top: 40px;
}

.promotion-sticky .promotion-card-inner>div:nth-child(2) {
  --top: 68px;
}

.promotion-sticky .promotion-card-inner>div:nth-child(3) {
  --top: 96px;
}

.promotion-sticky .promotion-card-inner>div:nth-child(4) {
  --top: 124px;
}

.promotion-sticky .promotion-card-inner>div:nth-child(5) {
  --top: 152px;
}

.promotion-sticky .promotion-card {
  height: auto !important;
}

.promotion-sticky .promotion-card .promotion-content {
  max-width: 100%;
}

.promotion-sticky .promotion-card-inner {
  -webkit-margin-start: 60px;
  margin-inline-start: 60px;
}

.promotion-sticky .promotion-card-inner>div+div {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.promotion-sticky .section-headings .button {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

@media (max-width: 1199px) {
  .promotion-sticky .promotion-card-inner {
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
  }
}

@media (max-width: 767px) {
  .promotion-sticky .promotion-card {
    padding: 24px 16px;
  }
}

.offer .badge {
  --color-background: rgba(0, 183, 241, 1);
  width: 210px;
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-background);
  border-radius: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px 32px;
  position: static;
  gap: 0;
}

.offer .badge span:last-child {
  width: 100%;
  text-align: end;
}

.instagram {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-overlay: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  text-align: center;
}

.insta-item {
  min-width: 200px;
}

.insta-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.insta-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-overlay);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.insta-link:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.insta-link .svg-wrapper {
  position: absolute;
  z-index: 2;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--color-foreground);
}

.insta-link:hover .svg-wrapper {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.insta-link img {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.insta-link:hover>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.insta-nav {
  padding: 0 10px;
  pointer-events: none;
}

new-instagram .insta-item {
  min-width: auto;
}

new-instagram {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

new-instagram .swiper {
  overflow: visible;
  width: 100%;
  perspective: 1200px;
}

new-instagram .swiper-wrapper {
  transform-style: preserve-3d;
}

@media (max-width: 992px) {
  new-instagram {
    max-width: 700px;
    padding: 30px 60px;
  }
}

@media (max-width: 576px) {
  new-instagram {
    /* Remove side padding so arrows can't overflow the screen */
    max-width: 100%;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
  }

  /* Move arrows below the card instead of beside it on small screens */
  new-instagram .insta-nav.nav-horizontal {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: auto;
    margin-top: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    width: 100%;
  }
}

new-instagram .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  transform: rotateY(55deg) scale(0.72);
}

new-instagram .swiper-slide-prev {
  opacity: 0.78;
  pointer-events: auto;
  transform: rotateY(38deg) scale(0.87);
}

new-instagram .swiper-slide-next {
  opacity: 0.78;
  pointer-events: auto;
  transform: rotateY(-38deg) scale(0.87);
}

new-instagram .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg) scale(1);
}

@media (max-width: 991px) {
  new-instagram .swiper-slide {
    transform: none;
    opacity: 0;
  }

  new-instagram .swiper-slide-prev,
  new-instagram .swiper-slide-next {
    transform: none;
    opacity: 0;
  }

  new-instagram .swiper-slide-active {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

new-instagram .insta-nav {
  z-index: 10;
}

new-instagram .insta-nav .swiper-button-prev,
new-instagram .insta-nav .swiper-button-next {
  pointer-events: auto;
}

@media (max-width: 767px) {
  .insta-card {
    width: 80vw;
    max-width: 320px;
  }
}

/* Instagram Card */
.insta-card {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  max-width: 90vw;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  cursor: pointer;
}

.insta-card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.insta-card-header,
.insta-card-image,
.insta-card-footer {
  position: relative;
  z-index: 2;
}

.insta-view-profile-btn,
.insta-view-more,
.insta-card-actions {
  position: relative;
  z-index: 3;
}

.insta-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #efefef;
}

.insta-card-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #dbdbdb;
}

.insta-username {
  font-size: 14px;
  font-weight: 600;
  color: #262626;
}

.insta-view-profile-btn {
  background: #0095f6;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
}

.insta-view-profile-btn:hover {
  background: #0085e0;
}

.insta-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.insta-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.insta-card-image img:hover {
  transform: scale(1.03);
}

.insta-card-footer {
  padding: 10px 12px;
  border-top: 1px solid #efefef;
}

.insta-view-more {
  display: block;
  font-size: 13px;
  color: #0095f6 !important;
  text-decoration: none !important;
  margin-bottom: 8px;
  font-weight: 500;
}

.insta-view-more:hover {
  text-decoration: underline !important;
}

.insta-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.insta-actions-left {
  display: flex;
  gap: 14px;
}

.insta-card-actions i {
  font-size: 22px;
  color: #262626;
  cursor: pointer;
}

.insta-card-actions i:hover {
  color: #888;
}

.insta-add-comment {
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #efefef;
  padding-top: 8px;
}


.contact {
  position: relative;
}

.content-with-image {
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --font-button-size: 18px;
  --color-primary-button-text: rgba(3, 15, 18, 1);
  --color-primary-button-border: rgba(255, 255, 255, 1);
  position: relative;
  height: 100%;
}

.content-with-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-with-image .content {
  max-width: 310px;
  padding: 24px 16px;
}

.content-with-image .content>.heading+.text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.content-with-image .button {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.content-with-image.overlay:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(66%, rgba(242, 103, 33, 0.45)), color-stop(81%, rgba(242, 103, 33, 0.78)), to(#f26721));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(242, 103, 33, 0.45) 66%, rgba(242, 103, 33, 0.78) 81%, #f26721 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(242, 103, 33, 0.45) 66%, rgba(242, 103, 33, 0.78) 81%, #f26721 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(242, 103, 33, 0.45) 66%, rgba(242, 103, 33, 0.78) 81%, #f26721 100%);
}

.contact-form {
  display: block;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.conatact-form-wrap {
  -webkit-margin-start: 24px;
  margin-inline-start: 24px;
}

.contact-form textarea,
.contact-form input {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

form textarea,
form input {
  display: block;
  padding: 0 15px;
  width: 100%;
  min-height: 50px;
}

form textarea {
  padding: 20px 15px;
}

.contact-form .button {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.contact-content .contact-list>li+li,
.contact-content .contact-list,
.contact-content>.heading+.text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.contact-item .icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  --color-foreground: rgba(255, 255, 255, 1);
  color: var(--color-foreground);
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
}

.contact-item .content>.heading+.text {
  -webkit-margin-before: 6px;
  margin-block-start: 6px;
}

.contact-page form .row.grid-gap {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.contact-page form .field>label+textarea,
.contact-page form .field>label+input {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.contact-page .google-map {
  --height: 650px;
}

@media (max-width: 991px) {
  .content-with-image {
    max-height: 510px;
  }

  .conatact-form-wrap {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }

  .contact-page .google-map {
    --height: 500px;
  }
}

.page-banner {
  --height: 480px;
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
  height: var(--height);
}

.page-banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 24px;
  background: rgba(3, 15, 18, 0.16);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.breadcrumb svg {
  color: var(--color-foreground);
}

.breadcrumb>li:last-child>a {
  color: var(--color-primary-hover);
}

.breadcrumb a:not(.active),
.breadcrumb li svg {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .page-banner {
    --height: 340px;
  }
}

.destination-list>div+div {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
}

.destination-list {
  -webkit-margin-start: 45px;
  margin-inline-start: 45px;
}

.destination-list .product-card.card-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.destination-list .product-card.card-horizontal .image {
  width: 300px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  height: auto;
}

.destination-list .product-card.card-horizontal .image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.destination-list .product-card .content {
  padding: 24px;
  width: calc(100% - 300px);
}

.destination-list .product-card .badge {
  --badge-padding: 6px 12px;
  --badge-radius: 5px;
  top: 16px;
  right: 16px;
  left: auto;
}

.destination-list .product-card .card-person-time {
  gap: 12px;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.destination-list .product-card .review {
  position: static;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0;
}

.destination-list .product-card .card-price {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}


.destination-list .wishlist-icon {
  --color-border: rgba(0, 183, 241, 1);
  --badge-radius: 8px;
  --badge-padding: 6px 16px;
  position: static;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--color-border);
  min-height: 56px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.destination-list .wishlist-icon svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.destination-list .product-card .person-time-item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .destination-list {
    -webkit-margin-start: 24px;
    margin-inline-start: 24px;
  }
}

@media (max-width: 991px) {
  .destination-list {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}

@media (max-width: 767px) {
  .destination-list .product-card.card-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .destination-list .product-card.card-horizontal .image {
    width: 100%;
  }

  .destination-list .product-card .content {
    padding: 24px 16px;
    width: 100%;
  }

  .destination-list .wishlist-icon {
    --badge-padding: 6px 12px;
    min-height: 48px;
  }
}

.booking-details .filter-list {
  gap: 64px;
}

.booking-details .section-content {
  -webkit-margin-before: 50px;
  margin-block-start: 50px;
}

.booking-details .tab-btn {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.booking-details .filter-item:not(:first-child) .tab-btn::after {
  --color-border: rgba(0, 183, 241, 1);
  content: "";
  position: absolute;
  left: -65px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: var(--color-border);
  z-index: -1;
}

.booking-details .tab-item>div+div {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.booking-details .button {
  --style-border-radius-buttons-secondary: 8px;
  --style-border-radius-buttons-primary: 8px;
}


@media (max-width: 1199px) {
  .booking-details .filter-list {
    gap: 32px;
  }

  .booking-details .filter-item:not(:first-child) .tab-btn::after {
    left: -34px;
  }

}

@media (max-width: 767px) {
  .booking-details .section-content {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }

  .booking-details .filter-item:not(:first-child) .tab-btn::after {
    content: none;
  }

  .booking-details .filter-list {
    gap: 24px;
  }
}

.blog-details .image {
  max-height: 570px;
  height: 570px;
}

.blog-details .blog-title {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}

.blog-details .card-time-comments {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.blog-details .card-time-comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.blog-details .card-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.blog-details .blog-desc>* {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.blog-details .author-name {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
}

@media (max-width: 767px) {

  .blog-details .image {
    max-height: auto;
    height: auto;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.marquee {
  --color-background: rgba(0, 64, 84, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-background);
  color: var(--color-foreground-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@-webkit-keyframes marquee-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
}

@keyframes marquee-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
}

/* Contact Info Bar */
.footer-contact-bar {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}

.footer-contact-bar .fcb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-bar .fcb-item-last {
  border-right: none;
}

.fcb-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.fcb-icon-orange {
  background-color: #f17f00;
}

.fcb-icon-whatsapp {
  background-color: #25d366;
}

.fcb-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fcb-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}


@media (max-width: 991px) {
  .footer-contact-bar .fcb-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
  }

  .footer-contact-bar .fcb-item-last {
    border-bottom: none;
  }
}

.footer-main {
  --color-background: rgba(3, 15, 18, 1);
  --color-foreground: rgba(255, 255, 255, 0.7);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-primary-hover: rgba(255, 255, 255, 1);
  --color-border: rgba(177, 181, 182, 1);
  background-color: var(--color-background);
  position: relative;
}

footer a {
  text-decoration: none;
}

.footer-logo {
  max-width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}


.footer-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}

.footer-contact-item .svg-wrapper {
  --size-svg: 24px;
  min-width: var(--size-svg);
  height: var(--size-svg);
}

.footer-contact-item .svg-wrapper svg {
  --color-foreground: rgba(255, 255, 255, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-foreground);
  -webkit-margin-before: 3px;
  margin-block-start: 3px;
}

.footer-contact-item .svg-wrapper .icon-map {
  min-width: 16px;
  height: 23px;
}

.footer-contact-item .text {
  line-height: 1.4;
}

footer .social-link {
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(0, 183, 241, 1);
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

footer .social-link:focus,
footer .social-link:hover {
  --color-background: rgba(0, 183, 241, 1);
  --color-foreground: rgba(255, 255, 255, 1);
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.footer-menu .link {
  text-decoration: none;
  display: inline-block;
  color: var(--color-foreground);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-menu>li:focus>.link,
.footer-menu>li:hover>.link {
  color: var(--color-primary-hover);
}

.widget-heading {
  font-weight: 600;
}

.widget-heading+* {
  -webkit-margin-before: 28px;
  margin-block-start: 28px;
}

.footer-top {
  padding: 100px 0;
}

.footer-bottom {
  --color-background: rgb(233, 227, 227);
  --color-foreground: rgba(3, 15, 18, 1);
  background: var(--color-background);
  padding: 20px 0;
}

.footer-widget-menu>.footer-menu .link {
  position: relative;
}

.footer-widget-menu>.footer-menu>li:hover>.link {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.footer-widget-menu>.footer-menu .link::before {
  --color-border: rgba(255, 255, 255, 1);
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  left: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--color-border);
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-widget-menu>.footer-menu>li:hover>.link::before {
  width: 8px;
}

footer .dropdown-item.active>.text,
footer .dropdown-item:hover>.text {
  --color-foreground: rgba(3, 15, 18, 1);
}

@media (max-width: 1279px) {
  .footer-logo {
    max-width: 160px;
  }
}

@media (max-width: 991px) {

  .footer-top {
    padding: 80px 0;
  }

  .footer-top .grid-gap {
    row-gap: 60px;
  }

  footer .dropdown-list-wrap {
    bottom: auto;
    top: 100%;
  }

  footer .dropdown-wrap.active .dropdown-button {
    border-radius: 4px 4px 0 0;
  }

  footer .dropdown-button svg,
  footer .dropdown-btn-text .text {
    --color-foreground: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 60px 0;
  }

  .footer-top .grid-gap {
    row-gap: 48px;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-logo {
    max-width: 130px;
  }
}

/* Tripjyada custom fixes */

.counter-has-bg .counter-up {
  padding: 42px 28px;
  border-radius: 20px;
  -webkit-box-shadow: 0 18px 40px rgba(3, 15, 18, 0.14);
  box-shadow: 0 18px 40px rgba(3, 15, 18, 0.14);
}

.counter-has-bg .counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.counter-has-bg .counter-item .svg-wrapper {
  min-width: 72px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(241, 127, 0, 0.1);
  color: #f17f00;
}

.counter-has-bg .counter-item .svg-wrapper i {
  font-size: 30px;
  line-height: 1;
}

.counter-has-bg .counter-item .heading {
  margin-top: 0;
}

.counter-has-bg .counter-text {
  color: rgba(3, 15, 18, 0.72);
}

.footer-contact-bar {
  position: relative;
  z-index: 2;
  margin-bottom: -78px;
}

.footer-contact-bar .row {
  row-gap: 24px;
}

.fcb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 156px;
  padding: 28px 24px;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 44px rgba(3, 15, 18, 0.14);
  box-shadow: 0 20px 44px rgba(3, 15, 18, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fcb-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.fcb-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.fcb-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.fcb-text>span {
  color: #fff;
}

.fcb-title {
  color: rgba(3, 15, 18, 1);
  font-family: var(--font-heading--family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.fcb-sub,
a.fcb-sub {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

a.fcb-sub:hover,
a.fcb-sub:focus {
  color: #fff;
}

/* .footer-main {
  padding-top: 128px;
} */

@media (max-width: 991px) {
  .footer-contact-bar {
    margin-bottom: 40px;
  }

  .footer-main {
    padding-top: 0;
  }

  .fcb-item {
    min-height: auto;
  }
}

@media (max-width: 767px) {

  .counter-has-bg .counter-up {
    padding: 8px 9px;
  }

  .counter-has-bg .counter-item {
    gap: 14px;
  }

  .counter-has-bg .counter-item .svg-wrapper {
    min-width: 58px;
    width: 58px;
    height: 58px;
  }

  .counter-has-bg .counter-item .svg-wrapper i {
    font-size: 24px;
  }

  .fcb-item {
    padding: 22px 18px;
  }

  .fcb-icon-wrap {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .fcb-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .fcb-title {
    font-size: 18px;
  }
}




/* logo */

.header-logo {
  height: 66px;
  width: inherit;
}

@media(max-width:768px) {
  .heading {
    font-size: 18px;
  }

  .hero-buttons>a {
    font-size: 13px;
  }

  .hero-banner .hero-buttons .button {
    padding: 10px 10px;
  }

  .hero-banner .hero-buttons {
    gap: 10px !important;
  }

}

.slider-text {
  font-weight: 700;
}

.text-justify {
  text-align: justify;
}

/* ── Mobile Sidebar Redesign ── */
.mob-nav-icon {
  display: none;
}

@media (max-width: 991px) {

  /* Full blending gradient — deep orange → peach → warm cream */
  .header-nav {
    background: linear-gradient(307deg, #ffffff 0%, #ffffff 14%, #fb923c 28%, #ff8900 52%, #e9e9e9 72%, #fff 100%) !important;
  }

  /* Header area transparent — gradient handles color */
  .header-nav-headings {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 20px;
  }

  /* X button white — still on dark-orange portion */
  .header-nav-headings .svg-wrapper {
    color: #fff;
  }

  /* Show icon on mobile */
  .mob-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #ea580c;
  }

  /* Card-style menu items */
  .header-menu {
    padding: 16px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .header-menu>.nav-item {
    padding: 0;
  }

  .header-menu>.nav-item .menu-link-main {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 12px;
    color: #1a1a1a !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 16px;
    justify-content: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(194, 65, 12, 0.1);
    transition: background .2s, box-shadow .2s;
    text-decoration: none;
  }

  .header-menu>.nav-item .menu-link-main:hover {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.18);
  }

  /* Bottom enquiry section */
  .mobile-menu-bottom {
    padding: 20px 16px 28px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
  }

  .mob-enquiry-btn {
    width: 100%;
    background: linear-gradient(135deg, #c2410c 0%, #f97316 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    transition: opacity .2s;
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.35);
  }

  .mob-enquiry-btn:hover {
    opacity: 0.9;
  }

  .mob-footer-copy {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
  }
}

/* ── Mobile header icon buttons ── */
.mob-header-icons {
  gap: 8px;
}

.mob-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F26721;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s;
  padding: 0;
}

.mob-icon-btn:hover,
.mob-icon-btn:focus {
  background: #e85d04;
  color: #fff;
  text-decoration: none;
}

/* ── Quote Modal ── */
#qteModal .modal-dialog {
  max-width: 840px;
  margin: 2rem auto;
}

#qteModal .modal-content {
  border: none;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: row;
  min-height: 500px;
}

/* Left image panel */
#qteModal .qm-image {
  width: 42%;
  flex-shrink: 0;
  background: url('../images/form/form-img.png') center/cover no-repeat;
  position: relative;
  border-radius: 18px 0 0 18px;
  overflow: hidden;
}

#qteModal .qm-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

#qteModal .qm-image-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

#qteModal .qm-image h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}

#qteModal .qm-image p {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  margin: 0 0 18px;
  line-height: 1.5;
}

/* Right form panel */
#qteModal .qm-body {
  flex: 1;
  background: #fff;
  padding: 28px 28px 24px;
  overflow-y: auto;
  position: relative;
  border-radius: 0 18px 18px 0;
}

#qteModal .qm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  color: #111;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}

#qteModal .qm-close:hover {
  background: #e5e7eb;
}

#qteModal .qm-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin: 0 0 18px;
  padding-right: 36px;
}

/* Inputs */
#qteModal .qm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

#qteModal .qm-field-wrap {
  margin-bottom: 12px;
}

#qteModal .qm-input {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

#qteModal .qm-input:focus {
  border-color: #F06620;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
  background: #fff;
}

#qteModal .qm-input::placeholder {
  color: #9ca3af;
}

#qteModal select.qm-input {
  cursor: pointer;
}

/* Phone prefix row */
#qteModal .qm-phone-wrap {
  display: flex;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}

#qteModal .qm-phone-wrap:focus-within {
  border-color: #F06620;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

/* Custom country-code picker */
#qteModal .qm-country-picker {
  position: relative;
  flex-shrink: 0;
}

#qteModal .qm-country-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  min-height: 44px;
  border: none;
  border-right: 1.5px solid #d1d5db;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px 0 0 6px;
  outline: none;
}

#qteModal .qm-country-btn:focus-visible {
  background: #e5e7eb;
}

#qteModal .qm-country-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .2s;
}

#qteModal .qm-country-btn[aria-expanded="true"] .qm-country-chevron {
  transform: rotate(180deg);
}

#qteModal .qm-country-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 170px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

#qteModal .qm-country-list.open {
  display: block;
}

#qteModal .qm-country-list li {
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

#qteModal .qm-country-list li:hover,
#qteModal .qm-country-list li.selected {
  background: #f3f4f6;
  color: #111;
}

#qteModal .qm-phone-wrap .qm-input {
  border: none;
  border-radius: 0 6px 6px 0;
  background: transparent;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}

/* Floating label fields */
#qteModal .qm-float {
  position: relative;
  margin-bottom: 12px;
}

#qteModal .qm-float-label {
  position: absolute;
  top: -8px;
  left: 10px;
  background: #fff;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: #F06620;
  letter-spacing: .3px;
  pointer-events: none;
  z-index: 1;
}

#qteModal .qm-float .qm-input {
  border-color: #F06620;
}

#qteModal .qm-float .qm-input:focus {
  border-color: #F06620;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

/* Marketing checkbox */
#qteModal .qm-check-wrap {
  margin-bottom: 14px;
}

#qteModal .qm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}

#qteModal .qm-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F06620;
  cursor: pointer;
}

/* Submit button */
#qteModal .qm-btn-submit {
  width: 100%;
  background: #F06620;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

#qteModal .qm-btn-submit:hover {
  background: #F06620;
}

#qteModal #resultquotemodal {
  margin-top: 10px;
  font-size: 13px;
}

#qteModal #resultquotemodal .alert {
  margin: 0;
  border-radius: 8px;
  padding: 10px 14px;
}

/* Mobile: stacked bottom-sheet */
@media (max-width: 767px) {
  #qteModal .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }

  #qteModal .modal-content {
    flex-direction: column;
    border-radius: 20px 20px 0 0;
    min-height: unset;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: visible;
  }

  #qteModal .qm-image {
    border-radius: 20px 20px 0 0;
  }

  #qteModal .qm-body {
    border-radius: 0;
  }

  #qteModal .qm-image {
    width: 100%;
    height: 190px;
    flex-shrink: 0;
  }

  #qteModal .qm-image-overlay {
    padding: 20px;
  }

  #qteModal .qm-image h3 {
    font-size: 18px;
  }

  #qteModal .qm-body {
    padding: 20px 18px 24px;
    overflow-y: unset;
  }

  #qteModal .qm-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #qteModal .qm-title {
    font-size: 20px;
  }
}

/* ================================================================
   BLOG PAGES  (listing + single post)
   ================================================================ */

/* ── Breadcrumb hero ── */
.site-breadcrumb {
  position: relative;
  padding: 80px 0;
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
}

.site-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .72) 100%);
}

.site-breadcrumb .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.breadcrumb-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.breadcrumb-menu li {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.breadcrumb-menu li a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-menu li a:hover {
  color: #f97316;
}

.breadcrumb-menu li+li::before {
  content: '/';
  margin: 0 8px;
  color: rgba(255, 255, 255, .4);
}

.breadcrumb-menu li.active {
  color: #f97316;
}

/* ── Spacing utility ── */
.py-120 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── Section heading ── */
.site-heading {
  margin-bottom: 42px;
}

.site-title-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 10px;
}

.site-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.25;
}

.site-title span {
  color: #f97316;
}

.heading-divider {
  width: 48px;
  height: 3px;
  background: #f97316;
  border-radius: 2px;
  margin: 0 auto;
}

/* ── Blog listing card ── */
.blog-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 3px 20px 20px 11px rgb(141 141 141 / 31%);
  transition: box-shadow .3s ease, transform .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-item:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .12);
  transform: translateY(-5px);
}

.blog-item-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.07);
}

.blog-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #f97316;
  color: #fff;
  border-radius: 10px;
  padding: 7px 13px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 3px 12px rgba(249, 115, 22, .45);
}

.blog-date strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.blog-date span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-item-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-item-meta ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-item-meta ul li {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.blog-item-meta ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s;
}

.blog-item-meta ul li a:hover {
  color: #f97316;
}

.blog-item-meta ul li i {
  margin-right: 4px;
  color: #f97316;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-title a:hover {
  color: #f97316;
}

.blog-item-info>p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f97316;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background .2s, transform .2s;
  width: fit-content;
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.theme-btn:hover {
  background: #e85d04;
  transform: translateX(3px);
}

.theme-btn i {
  font-size: 11px;
}

/* ── Blog area row spacing ── */
.blog-area .row.g-4>[class*="col-"] {
  display: flex;
}

/* ── Single post ── */
.blog-single {
  padding: 60px 0 80px;
}

.blog-single-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.blog-thumb-img {
  aspect-ratio: 16/8;
  overflow: hidden;
  max-height: 420px;
}

.blog-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding: 30px 34px 38px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f2f5;
  margin-bottom: 22px;
}

.blog-meta-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-meta-left ul li {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-left ul li i {
  color: #f97316;
  font-size: 12px;
}

.share-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #f97316;
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid #f97316;
  border-radius: 20px;
  transition: background .2s, color .2s;
}

.share-link:hover {
  background: #f97316;
  color: #fff;
}

.blog-details-title {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin: 0 0 18px;
}

.blog-details p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── Sidebar ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.widget-title {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f97316;
}

/* Recent posts */
.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-img {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h6 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 0 0 5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-info h6 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.recent-post-info h6 a:hover {
  color: #f97316;
}

.recent-post-info span {
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Social widget */
.widget.social .social-link {
  display: flex !important;
  gap: 10px;
  width: 100%;
  flex-direction: row;
}

.widget.social .social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #344054;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.widget.social .social-link a:hover {
  background: #f97316;
  color: #fff;
  transform: translateY(-3px);
}

/* Share modal */
#shareModal .modal-content {
  border-radius: 14px;
  overflow: hidden;
}

#shareModal .modal-header {
  border-bottom: 1px solid #f0f2f5;
  padding: 16px 20px;
}

#shareModal .modal-title {
  font-weight: 800;
  font-size: 16px;
  color: #111;
}

#shareModal .modal-body {
  padding: 20px;
}

#shareModal .social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .blog-single {
    padding: 40px 0 60px;
  }

  .blog-info {
    padding: 22px 22px 30px;
  }

  .blog-details-title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .py-120 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .site-breadcrumb {
    padding: 54px 0;
  }

  .breadcrumb-title {
    font-size: 26px;
  }

  .site-title {
    font-size: 24px;
  }

  .blog-info {
    padding: 18px 18px 24px;
  }

  .blog-thumb-img {
    aspect-ratio: 16/9;
    max-height: none;
  }

  .blog-details-title {
    font-size: 19px;
  }

  .blog-area .row.g-4>[class*="col-"] {
    display: block;
  }
}

/* ── Home blog section ── */

/* Left column: 4 compact horizontal cards */

/* Right column: 1 featured card */

.no-anchor-style {
  text-decoration: none;
}


/* ── Layout ── */
.pkg-page {
  padding: 36px 0 60px;
  background: #f4f6f8;
  min-height: 60vh;
}

/* ── Hero ── */
/* uses global .page-banner styles from layout2 */

/* ── Sidebar ── */
.pkg-sidebar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.sb-head {
  background: #F87317;
  color: #fff;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-head .sb-chevron {
  margin-left: auto;
  transition: transform .25s;
  flex-shrink: 0;
}

.sb-head.sb-open .sb-chevron {
  transform: rotate(180deg);
}

/* collapsible body */
.sb-body {
  overflow: hidden;
  transition: max-height .3s ease;
}

@media(max-width:991px) {
  .sb-head {
    cursor: pointer;
    user-select: none;
  }

  .sb-body {
    max-height: 0;
  }

  .sb-body.sb-open {
    max-height: 1200px;
  }
}

.sb-section {
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
}

.sb-section:last-of-type {
  border-bottom: none;
}

.sb-label {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0 0 10px;
}

/* category buttons */
.sb-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: transparent;
  text-align: left;
  color: #444;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 2px;
}

.sb-cat-btn:hover {
  background: #fff5ee;
  color: #f97316;
}

.sb-cat-btn.active {
  background: #f97316;
  color: #fff;
}

.sb-count {
  font-size: 11px;
  background: rgba(0, 0, 0, .09);
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

.sb-cat-btn.active .sb-count {
  background: rgba(255, 255, 255, .25);
}

/* duration chips */
.dur-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dur-chip {
  padding: 5px 12px;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  user-select: none;
  background: transparent;
}

.dur-chip:hover,
.dur-chip.active {
  border-color: #f97316;
  background: #f97316;
  color: #fff;
}

/* price slider */
.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-wrap input[type=range] {
  width: 100%;
  accent-color: #f97316;
  cursor: pointer;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

.price-labels strong {
  color: #f97316;
  font-weight: 700;
}

/* sidebar CTA */
.sb-cta {
  background: linear-gradient(135deg, #f97316, #e05500);
  padding: 20px 18px;
  text-align: center;
}

.sb-cta h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px;
}

.sb-cta p {
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  margin: 0 0 12px;
}

.sb-cta a {
  display: inline-block;
  background: #fff;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.sb-cta a:hover {
  background: #fff5ee;
  text-decoration: none;
}

/* ── Toolbar ── */
.pkg-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.pkg-count {
  font-size: 14px;
  color: #666;
}

.pkg-count strong {
  color: #111;
  font-weight: 700;
}

.pkg-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.pkg-sort select {
  border: 1px solid #dde1e8;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: #444;
  outline: none;
  cursor: pointer;
  background: #fff;
}

/* ── Card grid ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:991px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:575px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* Clickable card link reset */
a.pkg-card { text-decoration: none; color: inherit; }
a.pkg-card:hover { text-decoration: none; color: inherit; }

/* ── Cards ── */
.pkg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, .06);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
  border-color: rgba(249, 115, 22, .25);
}

.pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.pkg-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .52) 0%, transparent 56%);
  pointer-events: none;
}

.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.09);
}

.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(249, 115, 22, .42);
}

.pkg-catbdg {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  z-index: 1;
}

.pkg-img-meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  display: flex;
  gap: 6px;
}

.pkg-dur-chip {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pkg-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-hl {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: flex-start;
}

.pkg-hl li {
  font-size: 11px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3d04;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.pkg-hl li::before {
  content: '✓';
  color: #f97316;
  font-weight: 700;
  font-size: 9px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-marquee-section {
  position: relative;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0;
  margin-top: 100px;
  background: #101b15 !important;
  background-color: #101b15 !important;
  color: rgba(255, 255, 255, 0.92);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.about-marquee-section::-webkit-scrollbar {
  display: none;
}

.about-marquee-section::before,
.about-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(9vw, 7rem);
  pointer-events: none;
}

.about-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(16, 27, 21, .85), rgba(16, 27, 21, 0));
}

.about-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(16, 27, 21, .85), rgba(16, 27, 21, 0));
}

.about-marquee-track {
  --marquee-gap: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--marquee-gap);
  width: max-content;
  min-width: max-content;
  padding-inline: var(--marquee-gap);
  background: transparent;
  will-change: transform;
  animation: about-destination-scroll 16s linear infinite;
}

.about-marquee-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .16);
}

.about-marquee-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f7653d;
  color: #f7653d;
  font-size: 0;
}

@keyframes about-destination-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
  }
}

@media (max-width: 640px) {
  .about-marquee-section {
    padding: 3rem 0;
  }

  .about-marquee-track {
    animation-duration: 13s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee-track {
    animation-duration: 22s;
  }
}

.about-ref-section {
  background: #FAFBF7;
  color: #17211c;
  font-family: "Inter", "Roboto", sans-serif;
  overflow: hidden;
  padding: clamp(62px, 7vw, 86px) clamp(20px, 5vw, 64px);
}

.about-ref-section+.about-ref-section {
  padding-top: clamp(70px, 8vw, 96px);
}

.about-ref-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-ref-tag {
  display: inline-block;
  margin-bottom: 15px;
  color: #f7653d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.about-ref-header h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #17211c;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.07;
}

.about-ref-header h2 em {
  color: #f7653d;
  font-style: normal;
}

.about-ref-header p {
  max-width: 620px;
  margin: 0 auto;
  color: #607066;
  font-size: 15px;
  line-height: 1.62;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.about-team-card {
  display: flex;
  min-width: 0;
  min-height: 344px;
  flex-direction: column;
  align-items: center;
  padding: 26px 20px 22px;
  border: 1px solid rgba(247, 101, 61, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(23, 33, 28, .07);
  text-align: center;
}

.about-team-avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff3eb;
  box-shadow: 0 14px 30px rgba(23, 33, 28, .12);
}

.about-team-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-name {
  margin-bottom: 6px;
  color: #17211c;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.about-team-role {
  margin-bottom: 14px;
  color: #f7653d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.about-team-bio {
  max-width: 24ch;
  margin: 0 auto 20px;
  color: #637168;
  font-size: 13px;
  line-height: 1.55;
}

.about-team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}

.about-team-social {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 101, 61, .14);
  border-radius: 50%;
  background: #fff;
  color: #647269;
  font-size: 12px;
  text-decoration: none;
}

.about-journey .about-ref-header {
  margin-bottom: 48px;
}

.about-timeline {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 28px 0 12px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #f7653d, transparent);
  transform: translateX(-50%);
}

.about-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 38px;
}

.about-tl-item:nth-child(even) {
  direction: rtl;
}

.about-tl-item:nth-child(even)>* {
  direction: ltr;
}

.about-tl-item::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 4px solid #FAFBF7;
  border-radius: 50%;
  background: #f7653d;
  box-shadow: 0 0 0 3px rgba(247, 101, 61, .1);
  transform: translateX(-50%);
}

.about-tl-year {
  color: #f7653d;
  font-size: 18px;
  font-weight: 800;
}

.about-tl-title {
  margin: 5px 0 9px;
  color: #17211c;
  font-size: 14px;
  font-weight: 800;
}

.about-tl-text {
  max-width: 310px;
  color: #637168;
  font-size: 11px;
  line-height: 1.55;
}

.about-tl-visual img {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 7 / 5;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 9px;
  outline: 1px solid rgba(247, 101, 61, .22);
  box-shadow: 0 9px 22px rgba(30, 40, 34, .1);
}

.about-tl-item:nth-child(odd) .about-tl-visual img {
  margin-left: 0;
  margin-right: auto;
}

.about-tl-item:nth-child(even) .about-tl-visual img {
  margin-left: auto;
  margin-right: 0;
}

.about-subscribe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1040px) {
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 620px);
  }
}

@media (max-width: 720px) {
  .about-timeline {
    width: min(100%, 350px);
    padding-left: 18px;
  }

  .about-timeline::before {
    left: 4px;
    transform: none;
  }

  .about-tl-item,
  .about-tl-item:nth-child(even) {
    display: block;
    direction: ltr;
    margin-bottom: 18px;
  }

  .about-tl-item::after {
    top: 16px;
    left: -4px;
    transform: none;
  }

  .about-tl-copy {
    padding: 16px;
    border: 1px solid rgba(247, 101, 61, .14);
    border-radius: 13px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 13px 28px rgba(23, 33, 28, .065);
  }

  .about-tl-text {
    max-width: 100%;
  }

  .about-tl-visual {
    display: none;
  }
}

@media (max-width: 620px) {
  .about-ref-section {
    padding: 54px 16px;
  }

  .about-ref-header h2 {
    font-size: clamp(28px, 7.5vw, 36px);
  }

  .about-ref-header p {
    font-size: 13px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .about-team-avatar {
    width: 96px;
    height: 96px;
  }
}

/* ============================================================
   PACKAGE DETAIL PAGES  (packages & home modules share .pd-*)
   ============================================================ */
.pd-breadcrumb-bar {
  background: #fff7f0;
  border-bottom: 1px solid rgba(249, 115, 22, .18);
  padding: 11px 0;
  display: none;
}

.pd-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap
}

.pd-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777
}

.pd-breadcrumb-list a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.pd-breadcrumb-list a:hover {
  color: #f97316
}

.pd-breadcrumb-list .pd-sep {
  color: #bbb;
  font-size: 11px
}

.pd-breadcrumb-list li:last-child {
  color: #f97316;
  font-weight: 600
}

.pd-hero {
  position: relative;
  height: 380px;
  overflow: hidden
}

.pd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, .2));
  display: flex;
  align-items: flex-end
}

.pd-hero-content {
  padding: 32px 0;
  width: 100%
}

.pd-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap
}

.pd-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.pd-badge-seller {
  background: #f97316;
  color: #fff
}

.pd-badge-type {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px)
}

.pd-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 10px
}

.pd-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  flex-wrap: wrap
}

.pd-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px
}

.pd-urgency-bar {
  background: linear-gradient(90deg, #7c2d00, #c2410c, #ea580c);
  padding: 10px 0;
  text-align: center
}

.pd-urgency-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px
}

.pd-page {
  padding: 50px 0 60px
}

.pd-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f97316;
  display: inline-block
}

.pd-overview {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px
}

.pd-overview:last-child {
  margin-bottom: 40px
}

.pd-richtext {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px
}

.pd-richtext>*:first-child {
  margin-top: 0
}

.pd-richtext>*:last-child {
  margin-bottom: 0
}

.pd-richtext h2,
.pd-richtext h3,
.pd-richtext h4 {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
  margin: 24px 0 12px
}

.pd-richtext p,
.pd-richtext ul,
.pd-richtext ol,
.pd-richtext blockquote {
  margin-bottom: 14px
}

.pd-richtext ul,
.pd-richtext ol {
  padding-left: 22px
}

.pd-richtext a {
  color: #ea580c;
  text-decoration: underline
}

.pd-richtext img {
  border-radius: 16px;
  display: block;
  height: auto;
  margin: 18px 0;
  max-width: 100%
}

.pd-overview-media {
  margin: 24px 0 40px
}

.pd-overview-media img {
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%
}

.pd-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0
}

.pd-highlights li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.pd-highlights li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  margin-top: 5px
}

.pd-itinerary {
  margin-bottom: 40px
}

.pd-day {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s
}

.pd-day:hover {
  box-shadow: 0 2px 12px rgba(249, 115, 22, .12)
}

.pd-day-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  background: #fff;
  user-select: none
}

.pd-day-header:hover,
.pd-day.open .pd-day-header {
  background: #fff7f0
}

.pd-day-num {
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0
}

.pd-day-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1
}

.pd-day-arrow {
  color: #aaa;
  font-size: 12px;
  transition: transform .25s;
  flex-shrink: 0
}

.pd-day.open .pd-day-arrow {
  transform: rotate(180deg)
}

.pd-day-body {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #fde8d4
}

.pd-day-body p {
  margin: 12px 0 0
}

.pd-day-meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap
}

.pd-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px
}

.pd-day-tag-stay {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa
}

.pd-day-tag-meals {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0
}

.pd-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px
}

.pd-inc-box {
  background: #f0fdf4;
  border-radius: 10px;
  padding: 20px
}

.pd-exc-box {
  background: #fff5f5;
  border-radius: 10px;
  padding: 20px
}

.pd-inc-box h4 {
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px
}

.pd-exc-box h4 {
  color: #dc2626;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px
}

.pd-inc-box ul,
.pd-exc-box ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.pd-inc-box li,
.pd-exc-box li {
  font-size: 13px;
  color: #444;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.pd-inc-box li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0
}

.pd-exc-box li::before {
  content: '✗';
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0
}

.pd-faqs {
  margin-bottom: 40px
}

.pd-faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden
}

.pd-faq-q {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 14px 18px;
  cursor: pointer;
  background: #fff;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.pd-faq-q:hover,
.pd-faq-item.open .pd-faq-q {
  background: #fff7f0
}

.pd-faq-q::after {
  content: '▼';
  font-size: 11px;
  color: #aaa;
  transition: transform .25s;
  flex-shrink: 0
}

.pd-faq-item.open .pd-faq-q::after {
  transform: rotate(180deg)
}

.pd-faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #fde8d4
}

.pd-faq-a p {
  margin: 12px 0 0
}

.pd-sidebar-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  border-top: 4px solid #f97316;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  padding: 22px;
  position: sticky;
  top: 80px
}

.pd-sidebar-card+.pd-sidebar-card {
  margin-top: 20px
}

.pd-facts {
  list-style: none;
  padding: 0;
  margin: 0
}

.pd-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  gap: 8px
}

.pd-facts li:last-child {
  border-bottom: none
}

.pd-facts .fact-label {
  color: #888;
  font-weight: 500
}

.pd-facts .fact-value {
  color: #1a1a1a;
  font-weight: 700;
  text-align: right
}

.pd-price-box {
  text-align: center;
  margin: 16px 0
}

.pd-price-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px
}

.pd-price-val {
  font-size: 22px;
  font-weight: 800;
  color: #f97316
}

.pd-btn-book {
  display: block;
  width: 100%;
  background: #f97316;
  color: #fff;
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 10px
}

.pd-btn-book:hover {
  background: #c95c00;
  color: #fff;
  text-decoration: none
}

.pd-btn-pay {
  display: block;
  width: 100%;
  background: #0f766e;
  color: #fff;
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 10px
}

.pd-btn-pay:hover {
  background: #0b5c56;
  color: #fff;
  text-decoration: none
}

.pd-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s
}

.pd-btn-wa:hover {
  background: #1ebe5a;
  color: #fff;
  text-decoration: none
}

.pd-btn-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0
}

@media(max-width:767px) {
  .pd-hero {
    height: 260px
  }

  .pd-hero-title {
    font-size: 20px
  }

  .pd-highlights {
    grid-template-columns: 1fr
  }

  .pd-inc-exc {
    grid-template-columns: 1fr
  }

  .pd-page {
    padding: 28px 0 40px
  }
}

/* ============================================================
   BHUTAN TOUR PACKAGE LAYOUT  (.bt-*)
   ============================================================ */
.bt-breadcrumb-bar {
  background: #fff7f0;
  border-bottom: 1px solid rgba(249, 115, 22, .18);
  padding: 11px 0
}

.bt-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap
}

.bt-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777
}

.bt-breadcrumb-list a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.bt-breadcrumb-list a:hover {
  color: #f97316
}

.bt-breadcrumb-list .bt-sep {
  color: #bbb;
  font-size: 11px
}

.bt-breadcrumb-list li:last-child {
  color: #f97316;
  font-weight: 600
}

.bt-hero {
  position: relative;
  height: 380px;
  overflow: hidden
}

.bt-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.bt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, .2));
  display: flex;
  align-items: flex-end
}

.bt-hero-content {
  padding: 32px 0;
  width: 100%
}

.bt-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap
}

.bt-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.bt-badge-seller {
  background: #f97316;
  color: #fff
}

.bt-badge-type {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px)
}

.bt-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 10px
}

.bt-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  flex-wrap: wrap
}

.bt-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px
}

.bt-urgency-bar {
  background: linear-gradient(90deg, #7c2d00, #c2410c, #ea580c);
  padding: 10px 0;
  text-align: center
}

.bt-urgency-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px
}

.bt-page {
  padding: 50px 0 60px
}

.bt-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f97316;
  display: inline-block
}

.bt-overview {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px
}

.bt-overview:last-child {
  margin-bottom: 40px
}

.bt-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0
}

.bt-highlights li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.bt-highlights li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  margin-top: 5px
}

.bt-itinerary {
  margin-bottom: 40px
}

.bt-day {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s
}

.bt-day:hover {
  box-shadow: 0 2px 12px rgba(249, 115, 22, .12)
}

.bt-day-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  background: #fff;
  user-select: none
}

.bt-day-header:hover,
.bt-day.open .bt-day-header {
  background: #fff7f0
}

.bt-day-num {
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0
}

.bt-day-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1
}

.bt-day-arrow {
  color: #aaa;
  font-size: 12px;
  transition: transform .25s;
  flex-shrink: 0
}

.bt-day.open .bt-day-arrow {
  transform: rotate(180deg)
}

.bt-day-body {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #fde8d4
}

.bt-day-body p {
  margin: 12px 0 0
}

.bt-day-meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap
}

.bt-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px
}

.bt-day-tag-stay {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa
}

.bt-day-tag-meals {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0
}

.bt-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px
}

.bt-inc-box {
  background: #f0fdf4;
  border-radius: 10px;
  padding: 20px
}

.bt-exc-box {
  background: #fff5f5;
  border-radius: 10px;
  padding: 20px
}

.bt-inc-box h4 {
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px
}

.bt-exc-box h4 {
  color: #dc2626;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px
}

.bt-inc-box ul,
.bt-exc-box ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.bt-inc-box li,
.bt-exc-box li {
  font-size: 13px;
  color: #444;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.bt-inc-box li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0
}

.bt-exc-box li::before {
  content: '✗';
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0
}

.bt-faqs {
  margin-bottom: 40px
}

.bt-faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden
}

.bt-faq-q {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 14px 18px;
  cursor: pointer;
  background: #fff;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.bt-faq-q:hover,
.bt-faq-item.open .bt-faq-q {
  background: #fff7f0
}

.bt-faq-q::after {
  content: '▼';
  font-size: 11px;
  color: #aaa;
  transition: transform .25s;
  flex-shrink: 0
}

.bt-faq-item.open .bt-faq-q::after {
  transform: rotate(180deg)
}

.bt-faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #fde8d4
}

.bt-faq-a p {
  margin: 12px 0 0
}

.bt-sidebar-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  border-top: 4px solid #f97316;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  padding: 22px;
  position: sticky;
  top: 80px
}

.bt-facts {
  list-style: none;
  padding: 0;
  margin: 0
}

.bt-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  gap: 8px
}

.bt-facts li:last-child {
  border-bottom: none
}

.bt-facts .fact-label {
  color: #888;
  font-weight: 500
}

.bt-facts .fact-value {
  color: #1a1a1a;
  font-weight: 700;
  text-align: right
}

.bt-price-box {
  text-align: center;
  margin: 16px 0
}

.bt-price-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px
}

.bt-price-val {
  font-size: 22px;
  font-weight: 800;
  color: #f97316
}

.bt-btn-book {
  display: block;
  width: 100%;
  background: #f97316;
  color: #fff;
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 10px
}

.bt-btn-book:hover {
  background: #c95c00;
  color: #fff;
  text-decoration: none
}

.bt-btn-pay {
  display: block;
  width: 100%;
  background: #0f766e;
  color: #fff;
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 10px
}

.bt-btn-pay:hover {
  background: #0b5c56;
  color: #fff;
  text-decoration: none
}

.bt-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s
}

.bt-btn-wa:hover {
  background: #1ebe5a;
  color: #fff;
  text-decoration: none
}

.bt-btn-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0
}

@media(max-width:767px) {
  .bt-hero {
    height: 260px
  }

  .bt-hero-title {
    font-size: 20px
  }

  .bt-highlights {
    grid-template-columns: 1fr
  }

  .bt-inc-exc {
    grid-template-columns: 1fr
  }

  .bt-page {
    padding: 28px 0 40px
  }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.our-service-page {
  padding: 30px 0;
  color: #000;
}

.fade-in {
  visibility: visible;
  animation: fadeInUp 0.6s ease-in-out;
}

.btn:hover {
  background-color: #000;
  color: white;
}

.write-review-btn {
  background-color: #e21b22;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px;
}

.single-review {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  padding: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  position: relative;
}

.single-review:hover {
  transform: scale(1.02);
}

.review-icon {
  align-self: center;
  max-width: 70px;
  margin-bottom: 10px;
}

.review-img {
  width: 100%;
  border-radius: 50%;
}

.review-content {
  flex-grow: 1;
}

.review-author {
  color: #f4854a;
  font-size: 0.9rem;
}

.author-name {
  background-color: #000;
  padding: 3px;
  border-radius: 5px;
  color: #fff;
}

.review-date {
  color: #555;
  font-size: 0.8rem;
}

.review-rating {
  margin-top: 10px;
}

.rating-value {
  color: #000;
  font-weight: bold;
}

.review-title {
  font-weight: bold;
  color: #000;
  margin-top: 5px;
  font-size: 1.1rem;
}

.review-body {
  color: #000;
  margin: 5px 0;
}

.review-email {
  font-weight: bold;
  color: #555;
}

.no-reviews-text {
  color: #888;
  text-align: center;
  font-size: 1.2rem;
  margin: 20px auto;
}

.read-more-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 0.9rem;
  margin-top: 10px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

/* ============================================================
   SINGLE REVIEW PAGE
   ============================================================ */
.feature-content-section {
  box-shadow: 15px 15px 25px rgba(0, 0, 0, .1);
  color: black;
}

.feature-content-section .single-content {
  padding: 25px 15px;
  transition: .5s;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 12px;
}

.content-text {
  padding: 0 10px 0 0;
}

.feature-content-section .content-text h4 {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  padding: 0 0 4px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-content-section .content-text h4 {
    font-size: 18px;
  }
}

/* ============================================================
   REVIEW MODAL — star rating
   ============================================================ */
.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

.rating>input {
  display: none;
}

.rating>label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.imgrows img {
  height: 300px;
}

.breadcumb-area {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
    url(../images/img/truck_ban.jpg) no-repeat center/cover;
}

/* ============================================================
   QUOTE MODAL — success screen
   ============================================================ */
#qm-success {
  display: none;
  text-align: center;
  padding: 30px 10px 20px;
}

.qm-success-icon {
  width: 64px;
  height: 64px;
  background: #fff4e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.qm-success-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
}

.qm-success-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 6px;
}

.qm-success-text-gap {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 24px;
}

.qm-success-highlight {
  color: #f97316;
}

.qm-close-btn-wrap {
  max-width: 200px;
  margin: 0 auto;
}

#qteModal textarea.qm-input {
  resize: none;
}

/* ============================================================
   FOOTER inline styles
   ============================================================ */
.footer-contact-bar {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-logo {
  background-color: #fff;
  border-radius: 10px;
}

.footer-gstin {
  color: rgba(255, 255, 255, 0.6);
}

.footer-icon-orange {
  color: #f17f00;
  flex-shrink: 0;
}

/* ============================================================
   GOOGLE MAP iframe
   ============================================================ */
.google-map iframe {
  border: 0;
}

/* ============================================================
   HOME GALLERY CAROUSEL
   ============================================================ */
.home-gallery-carousel .carousel-item img {
  width: 100%;
  border-radius: 16px;
}

@media(max-width:768px) {
  .home-gallery-carousel .carousel-item img {
    height: auto;
  }
}

.home-gallery-carousel .carousel-control-prev,
.home-gallery-carousel .carousel-control-next {
  background: none;
  box-shadow: none;
  opacity: 1;
  width: auto;
}

.home-gallery-carousel .carousel-control-prev-icon,
.home-gallery-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .6));
}

.pkg-footer {
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.pkg-price-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.pkg-price {
  font-size: 22px;
  font-weight: 800;
  color: #f97316;
  line-height: 1;
  margin-bottom: 12px;
}

.pkg-price small {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
  display: inline;
  margin-left: 4px;
}

.pkg-actions {
  display: flex;
  gap: 6px;
}

.pkg-btn-view {
  flex: 1;
  padding: 9px 10px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-btn-view:hover {
  opacity: .88;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.pkg-btn-pay {
  flex: 1;
  padding: 9px 10px;
  background: #0f766e;
  color: #fff;
  border: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-btn-pay:hover {
  background: #0b5c56;
  color: #fff;
  transform: translateY(-1px);
}

.pkg-btn-wa {
  width: 38px;
  height: 38px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.pkg-btn-wa:hover {
  background: #1aad53;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.pkg-item.pkg-hidden {
  display: none !important;
}

.pkg-empty {
  text-align: center;
  padding: 50px 20px;
  color: #999;
  font-size: 15px;
  display: none;
}

@media(max-width:991px) {
  .pkg-sidebar {
    position: static;
    margin-bottom: 24px;
  }
}

@media(max-width:767px) {
  .pkg-img-wrap {
    height: 220px;
  }
}

@media(max-width:575px) {

  .pkg-img-wrap {
    height: 200px;
  }
}

#dot {
  width: 10px;
  height: 10px;
  background: #F26721;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
  z-index: 2147483647;
  box-shadow:
    0 0 6px #F26721,
    0 0 14px #F26721,
    0 0 30px rgba(242, 103, 33, 0.7),
    0 0 60px rgba(242, 103, 33, 0.4);
}

@media(max-width:768px) {
  #dot {
    display: none;
  }
}

/* ============================================================
   SITE-WIDE ANIMATIONS — TripJyada
   ============================================================ */

/* --- Keyframes --- */
@keyframes tj-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes tj-float-r {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}

@keyframes tj-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

@keyframes tj-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 103, 33, 0.45), 0 6px 20px rgba(242, 103, 33, 0.3);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(242, 103, 33, 0), 0 6px 20px rgba(242, 103, 33, 0.3);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 103, 33, 0), 0 6px 20px rgba(242, 103, 33, 0.3);
  }
}

@keyframes tj-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Ambient orbs on banner/promo sections --- */
.counter-has-bg,
.video {
  position: relative;
  overflow: hidden;
}

.counter-has-bg::before,
.video::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: -180px;
  left: -180px;
  animation: tj-float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.counter-has-bg::after,
.video::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 103, 33, 0.09) 0%, transparent 70%);
  bottom: -140px;
  right: -140px;
  animation: tj-float 7s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

/* --- Featured tour cards --- */
.ft-card {
  transition: transform 0.36s cubic-bezier(.25, .8, .25, 1), box-shadow 0.36s cubic-bezier(.25, .8, .25, 1);
}

.ft-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.ft-card-image {
  overflow: hidden;
}

.ft-card-image img {
  transition: transform 0.6s ease;
}

.ft-card:hover .ft-card-image img {
  transform: scale(1.08);
}

/* --- Destination cards --- */
.destination-slide .image-shape {
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.destination-slide:hover .image-shape {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.destination-slide .image-shape img {
  transition: transform 0.6s ease;
}

.destination-slide:hover .image-shape img {
  transform: scale(1.07);
}

.destination-slide .title {
  transition: color 0.25s ease;
}

.destination-slide:hover .title {
  color: #F26721;
}

/* --- Image grid --- */
.image-grid-item .image img {
  transition: transform 0.6s ease;
}

.image-grid-item:hover .image img {
  transform: scale(1.06);
}

/* --- Buttons --- */
.button--primary {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(242, 103, 33, 0.42);
}

.button-pulse {
  animation: tj-pulse-ring 2.4s ease-out infinite;
}

/* --- Featured card action buttons --- */
.ft-action-btn {
  transition: transform 0.2s ease;
}

.ft-action-btn:hover {
  transform: scale(1.18) rotate(-4deg);
}

.ft-view-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ft-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 103, 33, 0.38);
}

/* --- Nav links underline slide --- */
.header-menu .menu-link {
  position: relative;
}

.header-menu .menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F26721;
  transition: width 0.3s ease;
}

.header-menu .menu-link:hover::after {
  width: 100%;
}

/* --- Footer links nudge --- */

/* --- Testimonial cards --- */

/* --- Scroll to top --- */
.scroll-to-top {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.scroll-to-top:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 24px rgba(242, 103, 33, 0.45) !important;
}

/* --- Parallax images (set by JS) --- */
.parallax-img {
  will-change: transform;
  transform: scale(1.12);
}

/* ============================================================
   HERO SLIDER  (hs-)
   ============================================================ */
@keyframes hs-kb {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.0);
  }
}

.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* Backgrounds */
.hs-bg {
  position: absolute;
  inset: 0;
  background: #0f141b;
  opacity: 0;
  pointer-events: none;
}

.hs-hero.hs-hero--ready .hs-bg {
  transition: opacity 0.65s ease;
}

.hs-bg--active {
  opacity: 1;
}

.hs-hero.hs-hero--ready .hs-bg--active {
  animation: hs-kb 10s ease forwards;
  will-change: opacity, transform;
}

.hs-bg-picture,
.hs-bg-media {
  display: block;
  width: 100%;
  height: 100%;
}

.hs-bg-picture {
  position: absolute;
  inset: 0;
}

.hs-bg-media {
  object-fit: cover;
  object-position: center;
}

/* Overlay — subtle, like reference */
.hs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .3) 45%, rgba(0, 0, 0, .05) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* Counter — above title in normal flow */
.hs-counter {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

/* LEFT content — bottom left */
.hs-left {
  position: absolute;
  bottom: 72px;
  left: 60px;
  z-index: 2;
  color: #fff;
  max-width: 520px;
}

.hs-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.hs-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hs-rating {
  font-size: 14px;
  font-weight: 700;
  color: #F5C842;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hs-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
}

.hs-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 400px;
  margin: 0 0 26px;
}

.hs-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Urgency strip */
.hs-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  max-width: 420px;
}

.hs-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: hs-blink 1.2s ease-in-out infinite;
}

@keyframes hs-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hs-urgency-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.hs-urgency-text strong {
  color: #fff;
}

/* Book Now button */
.hs-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #F26721;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: hs-pulse-btn 2.5s ease-in-out infinite;
}

@keyframes hs-pulse-btn {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 103, 33, 0.5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(242, 103, 33, 0);
  }
}

.hs-btn-book:hover {
  background: #d9561a;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 24px rgba(242, 103, 33, 0.5);
}

.hs-btn-discover {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: #F26721;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hs-btn-discover:hover {
  background: #d9561a;
  transform: translateY(-2px);
  color: #fff;
}

.hs-btn-heart {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.hs-btn-heart:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* RIGHT panel — absolute, vertically centered */
.hs-panel {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cards — LANDSCAPE */
.hs-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-card {
  position: relative;
  width: 100%;
  height: 136px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
  text-align: left;
  background: none;
  padding: 0;
}

.hs-card-picture,
.hs-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hs-card img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hs-card:hover img {
  transform: scale(1.07);
}

.hs-card-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
}

.hs-card--active {
  border-color: rgba(255, 255, 255, 0.75);
  transform: scale(1.03);
}

.hs-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  color: #fff;
}

.hs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.hs-card-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.hs-card-rating {
  font-size: 11px;
  font-weight: 700;
  color: #F5C842;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hs-card-desc {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* Arrows — below cards */
.hs-arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.hs-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Vertical progress track — far right */
.hs-track-wrap {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  height: 150px;
  width: 3px;
  z-index: 3;
}

.hs-track-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.hs-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #F26721;
  border-radius: 3px;
  transition: height 0.5s ease;
  height: 33.33%;
}


/* Video play button */
.hs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  animation: hs-float-btn 3s ease-in-out infinite;
}

@keyframes hs-float-btn {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.hs-play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  padding-left: 5px;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: hs-play-pulse 2s ease-out infinite;
}

@keyframes hs-play-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hs-play-btn:hover .hs-play-circle {
  background: #F26721;
  border-color: #F26721;
  transform: scale(1.1);
  animation: none;
}

.hs-play-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile */
@media (max-width: 991px) {

  .hs-panel,
  .hs-track-wrap {
    display: none;
  }

  .hs-counter {
    left: 24px;
  }

  .hs-left {
    left: 24px;
    bottom: 36px;
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 575px) {
  .hs-hero {
    height: 100dvh;
    min-height: 580px;
    margin-top: calc(-1 * var(--header-height, 66px));
  }

  .hs-left {
    bottom: 28px;
  }

  .hs-counter {
    margin-bottom: 6px;
  }

  .hs-title {
    font-size: clamp(34px, 10.5vw, 50px);
    margin: 0 0 10px;
  }

  .hs-meta {
    margin-bottom: 8px;
    gap: 10px;
  }

  .hs-desc {
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 12px;
  }

  .hs-urgency {
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  .hs-urgency-text {
    font-size: 11px;
  }

  .hs-btn-book,
  .hs-btn-discover {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {

  /* Reduce top gap: pull slider up by the fixed header height on all mobile sizes */
  .hs-hero {
    margin-top: calc(-1 * var(--header-height, 72px));
  }
}

/* ============================================================
   CINEMATIC HERO SLIDER — Premium Animations
   ============================================================ */

/* --- Keyframes --- */
@keyframes hc-kb-left {
  from {
    transform: scale(1.10) translateX(-2%);
  }

  to {
    transform: scale(1.01) translateX(0);
  }
}

@keyframes hc-kb-right {
  from {
    transform: scale(1.10) translateX(2%);
  }

  to {
    transform: scale(1.01) translateX(0);
  }
}

@keyframes hc-kb-up {
  from {
    transform: scale(1.10) translateY(-2%);
  }

  to {
    transform: scale(1.01) translateY(0);
  }
}

@keyframes hc-label-in {
  from {
    transform: translateX(-32px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes hc-title-in {
  from {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(24px);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
  }
}

@keyframes hc-sub-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hc-spark-in {
  from {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes hc-twinkle {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes hc-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Hero wrapper */
.hc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

/* Background slides */
.hc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hc-bg--active {
  opacity: 1;
}

.hc-bg--active:nth-child(1) {
  animation: hc-kb-left 10s ease forwards;
}

.hc-bg--active:nth-child(2) {
  animation: hc-kb-right 10s ease forwards;
}

.hc-bg--active:nth-child(3) {
  animation: hc-kb-up 10s ease forwards;
}

/* Overlay — deeper on left for text legibility */
.hc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 55%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Thumbnail nav */
.hc-thumbs {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.hc-thumb {
  position: relative;
  width: 64px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  transform: scale(0.95);
  transition: opacity 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hc-thumb:hover img {
  transform: scale(1.08);
}

.hc-thumb--active,
.hc-thumb:hover {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.07);
}

/* Progress bar on active thumb */
.hc-thumb--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #F26721;
  border-radius: 0 0 12px 12px;
  animation: hc-progress 5s linear forwards;
}

/* Text block */
.hc-content {
  position: relative;
  z-index: 2;
  padding-left: 140px;
  padding-right: 40px;
  color: #fff;
}

/* Label */
.hc-label {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  opacity: 0;
}

.hc-label.hc-text--in {
  animation: hc-label-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Title — clip-path reveal */
.hc-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(62px, 10.5vw, 134px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  will-change: clip-path, transform;
}

.hc-title.hc-text--in {
  animation: hc-title-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

/* Subtitle */
.hc-sub {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  opacity: 0;
}

.hc-sub.hc-text--in {
  animation: hc-sub-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

/* Sparkles */
.hc-sparkles {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 4px;
  opacity: 0;
}

.hc-sparkles.hc-text--in {
  animation: hc-spark-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.hc-sparkles span {
  display: inline-block;
  animation: hc-twinkle 2.4s ease-in-out infinite;
}

.hc-sparkles span:nth-child(2) {
  animation-delay: 0.8s;
}

.hc-sparkles span:nth-child(3) {
  animation-delay: 1.6s;
}

/* Mobile */
@media (max-width: 767px) {
  .hc-hero {
    height: 92vh;
    padding-bottom: 44px;
  }

  .hc-thumbs {
    left: 12px;
    gap: 8px;
  }

  .hc-thumb {
    width: 46px;
    height: 62px;
    border-radius: 8px;
  }

  .hc-content {
    padding-left: 72px;
    padding-right: 16px;
  }
}

/* ============================================================
   GLOBAL: BIGGER SECTION HEADINGS + MOBILE RESPONSIVENESS
   ============================================================ */

/* --- Bump section heading sizes ~15% --- */
.text-60 {
  font-size: 68px;
}

.text-50 {
  font-size: 56px;
}

.text-40 {
  font-size: 46px;
}

@media (max-width: 1399px) {
  .text-60 {
    font-size: 62px;
  }

  .text-50 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .text-60 {
    font-size: 54px;
  }

  .text-50 {
    font-size: 44px;
  }

  .text-40 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .text-60 {
    font-size: 44px;
  }

  .text-50 {
    font-size: 36px;
  }

  .text-40 {
    font-size: 30px;
  }

  .text-36 {
    font-size: 28px;
  }

  .text-32 {
    font-size: 26px;
  }
}

/* --- Mobile card & grid spacing --- */
@media (max-width: 767px) {

  /* Fix joined cards — increase row gap */
  .grid-gap {
    row-gap: 20px;
  }

  .grid-gap-narrow {
    gap: 20px;
  }

  /* Image grid cards */
  .image-grid .image-grid-item {
    min-height: 260px;
    border-radius: 16px;
  }

  .image-grid .item-height-auto .image-grid-item {
    min-height: 220px;
  }

  /* Section vertical spacing */
  .mt-100 {
    margin-top: 56px !important;
  }

  .mb-100 {
    margin-bottom: 56px !important;
  }

  .pt-100 {
    padding-top: 56px !important;
  }

  .section-padding {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Featured tour cards */
  .ft-card {
    height: 440px;
  }

  /* Container padding */
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Destination slider cards */
  .destination-slide .image-shape {
    border-radius: 16px;
  }

  .modal-dialog {
    margin: 12px;
  }

  /* Testimonial */
  .testi-card {
    margin-bottom: 0;
  }

  /* Hero slider left panel */
  .hs-left {
    left: 20px;
    bottom: 40px;
  }

  .hs-title {
    font-size: 75px;
  }
}

@media (max-width: 480px) {
  .text-60 {
    font-size: 38px;
  }

  .text-50 {
    font-size: 28px;
  }

  .grid-gap {
    row-gap: 16px;
  }

  .grid-gap-narrow {
    gap: 16px;
  }

  .ft-card {
    height: 550px;
  }

}

#packagePaymentModal .modal-dialog {
  max-width: min(1100px, 95vw);
  margin: 16px auto;
}

#packagePaymentModal .ppm-modal-content {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.22);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

#packagePaymentModal .ppm-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  margin-bottom: 0;
}

#packagePaymentModal .ppm-body-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

#packagePaymentModal .ppm-col-left {
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

#packagePaymentModal .ppm-col-right {
  overflow-y: auto;
  padding: 24px;
  background: #f8fafc;
  border-left: 1px solid #e8e8e8;
  border-radius: 0 0 20px 0;
  display: flex;
  flex-direction: column;
}

#packagePaymentModal .ppm-price-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

#packagePaymentModal .ppm-sidebar-empty {
  text-align: center;
  padding: 40px 16px;
  flex: 1;
}

#packagePaymentModal .ppm-sidebar-empty-icon {
  font-size: 40px;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1;
  margin-bottom: 10px;
}

#packagePaymentModal .ppm-sidebar-empty p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

#packagePaymentModal .ppm-section {
  padding: 0 0 18px;
}

#packagePaymentModal .ppm-breakdown {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
}

#packagePaymentModal .ppm-package-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
  border: 1px solid rgba(249, 115, 22, 0.12);
  flex-shrink: 0;
}

#packagePaymentModal .ppm-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f97316;
}

#packagePaymentModal .ppm-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
}

#packagePaymentModal .ppm-close {
  border: 0;
  background: #f3f4f6;
  color: #4b5563;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

#packagePaymentModal .ppm-package-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
}

#packagePaymentModal .ppm-package-name {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

#packagePaymentModal .ppm-package-price {
  white-space: nowrap;
  font-size: 24px;
  font-weight: 800;
  color: #0f766e;
}

#packagePaymentModal .ppm-help-text {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 14px;
}

#packagePaymentModal .ppm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#packagePaymentModal .ppm-field-wrap {
  margin-bottom: 14px;
}

#packagePaymentModal .ppm-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

#packagePaymentModal .ppm-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#packagePaymentModal .ppm-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

#packagePaymentModal .ppm-result {
  min-height: 24px;
  margin-bottom: 12px;
}

#packagePaymentModal .ppm-result-error,
#packagePaymentModal .ppm-result-success,
#packagePaymentModal .ppm-result-warn {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

#packagePaymentModal .ppm-result-error {
  background: #fef2f2;
  color: #b91c1c;
}

#packagePaymentModal .ppm-result-success {
  background: #ecfdf5;
  color: #047857;
}

#packagePaymentModal .ppm-result-warn {
  background: #fffbeb;
  color: #b45309;
}

#packagePaymentModal .ppm-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

#packagePaymentModal .ppm-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22);
}

#packagePaymentModal .ppm-submit-btn:disabled {
  opacity: .75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#packagePaymentModal .ppm-success-state {
  text-align: center;
  padding: 16px 0 4px;
}

#packagePaymentModal .ppm-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

#packagePaymentModal .ppm-success-state h5 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111827;
}

#packagePaymentModal .ppm-success-state p {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 767px) {
  #packagePaymentModal .modal-dialog {
    max-width: 100%;
    margin: 0;
    max-height: 100%;
    height: 100%;
    align-items: stretch;
  }

  #packagePaymentModal .ppm-modal-content {
    border-radius: 0;
    max-height: 100dvh;
    height: 100%;
  }

  #packagePaymentModal .ppm-body-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
    overflow-x: hidden;
  }

  #packagePaymentModal .ppm-col-left {
    overflow-y: visible;
    padding: 20px;
  }

  #packagePaymentModal .ppm-col-right {
    border-left: none;
    border-top: 1px solid #e8e8e8;
    border-radius: 0;
    overflow-y: visible;
    padding: 20px;
  }

  #packagePaymentModal .ppm-modal-header {
    padding: 18px 20px 14px;
  }

  #packagePaymentModal .ppm-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #packagePaymentModal .ppm-package-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  #packagePaymentModal .ppm-package-price {
    font-size: 22px;
  }

  #packagePaymentModal .ppm-sidebar-empty {
    padding: 24px 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #packagePaymentModal .modal-dialog {
    max-width: min(900px, 95vw);
  }

  #packagePaymentModal .ppm-body-grid {
    grid-template-columns: 1fr 300px;
  }
}