/*---------------------------
	Colors
----------------------------*/
:root {
  --accent: #0045a6;
  --main-color: #003b8b;
  --main-color-two: #f90602;
  --main-color-three: #747474;
  --text-color: #2b2b2b;
  --border: #b6b6b681;
  --white: #ffffff;
  --gray: #f5f5f5;
  --dark: #0b0e14;
  --font-sarabun: Sarabun-Regular;
  --font-sarabun-bold: Sarabun-bolder;
  --font-roboto-reg: Roboto-Regular;
  --font-roboto-condensed: Roboto-Condensed;
}

/*---------------------------
	Fonts
----------------------------*/

@font-face {
  font-family: Roboto-Condensed;
  src: url('/assets/fonts/roboto-fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: Roboto-Regular;
  src: url('/assets/fonts/roboto-fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-family: Sarabun-Regular;
  src: url('/assets/fonts/sarabun-fonts/Sarabun-Bold.ttf') format('truetype');
}

@font-face {
  font-family: Sarabun-bolder;
  src: url('/assets/fonts/sarabun-fonts/Sarabun-ExtraBold.ttf') format('truetype');
}

/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/
html {
  font-size: 15px;
}

body {
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
a,
span,
div,
section,
header,
nav,
menu,
button,
footer,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: var(--font-roboto-reg);
  letter-spacing: normal;
  text-rendering: auto;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  color: var(--text-color);
  line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--dark);
  font-weight: bold;
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

/* ============================================
           Utility Classes
============================================ */
.container-xxl {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {

  section:has(~ section),
  section:has(~ footer) {
    margin-bottom: 80px !important;
  }

  .container-xxl {
    padding: 0 1.5rem;
  }
}

@media (max-width: 640px) {

  section:has(~ section),
  section:has(~ footer) {
    margin-bottom: 60px !important;
  }
}

@media (min-width: 1024px) {
  .container-xxl {
    padding: 0 2rem !important;
  }
}

.bg-pattern-checkboxes {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(#000 1px, transparent 1px),
    linear-gradient(90deg, #000 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─────────────────────────────────────────────
   RIPPLE on click
───────────────────────────────────────────── */
.ripple-on-click {
  user-select: none !important;
  -moz-user-select: none !important;
  position: relative;
  overflow: hidden;

  .ripple {
    position: absolute;
    border-radius: 50%;
    scale: 0;
    background: rgba(255, 255, 255, 0.35);
    animation: ripple-anim 0.6s linear !important;
    pointer-events: none;
    z-index: 2;
  }
}

@keyframes ripple-anim {
  to {
    scale: 4;
    opacity: 0;
  }
}

/* ==========================================
       Section Header
========================================== */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-bottom: 28px;

  @media (min-width: 640px) {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-eyebrow {
    font: 500 14px var(--font-roboto-reg);
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  p:not(.section-eyebrow) {
    color: var(--main-color-three);
    font-size: 19px;
    margin-top: 15px;
  }

  .section-title {
    /* font-size: 30px; */
    font-size: clamp(30px, 5.8vw, 36px);
    font-weight: 600;
    color: #171717;
    letter-spacing: -0.4px;

    @media (min-width: 1024px) {
      font-size: 36px;
    }
  }

  .section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);

    i {
      animation: arrowAnim 2s infinite;
    }
  }
}

@keyframes arrowAnim {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}

/* ==========================================
       THEME BTN DESIGN ONE
       ========================================== */
.hn-theme-btn {
  display: flex;
  width: fit-content;
  border-radius: 4px;
  font-weight: 500;
  border: 0px;
  outline: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: #ffff;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all ease 0.3s;
  padding: 7px 15px;
  cursor: pointer;

  &:has(i) {
    padding: 7px 15px 7px 28px;
  }

  &.cc-reverse {
    color: #ffff;
    outline-color: var(--main-color);
    background: linear-gradient(to left, var(--accent), var(--main-color));

    &::before {
      background: #ffff !important;
    }

    &:hover {
      outline-color: var(--main-color) !important;
      color: var(--main-color) !important;
    }
  }

  i {
    transition: all ease 0.3s;
    font-size: 12px !important;
    margin: auto 0;
    margin-left: 14px;
  }

  &::before {
    transition: all ease 0.3s;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 0%;
    height: 100%;
    transform: skew(30deg);
    background: linear-gradient(to left, var(--accent), var(--main-color));
    z-index: -1;
  }

  &:hover {
    color: #fff;
    scale: 1.04;

    &::before {
      width: 130%;
    }
  }
}

/* ==========================================
       THEME BTN DESIGN ONE
        ========================================== */
.hn-theme-btn-two {
  align-self: center;
  display: flex;
  margin: auto 0;
  max-width: 200px;
  width: fit-content;
  padding: 13px 20px;
  transition: all ease 0.3s;
  border: 1px solid var(--main-color-two);
  border-radius: 0px 7px 7px 7px;
  overflow: hidden;
  background: #ffff;
  text-align: center;
  color: transparent !important;
  text-shadow:
    0 0rem var(--main-color-two),
    0 2.4rem #ffff;
  text-transform: uppercase;
  transition: all ease 0.3s;

  &:hover {
    background-color: var(--main-color-two);
    scale: 0.98;
    /* border: 0px !important; */
    border-color: #ffff;
    text-shadow:
      0 -2.4rem #fff,
      0 0rem #fff;
  }
}

/* ==========================================
   PRELOADER
   Fullscreen loading overlay with animated dots
========================================== */

.preloader {
  position: fixed;
  inset: 0;
  /* shorthand for top:0; left:0; right:0; bottom:0; */
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;

  /* Loader Container */
  .lds-ellipsis {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    div {
      position: absolute;
      top: 27px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--main-color);
      animation-timing-function: cubic-bezier(0, 1, 1, 0);

      /* Dot 1 */
      &:nth-child(1) {
        left: 6px;
        animation: ellipsis-scale-in 0.6s infinite;
      }

      /* Dot 2 */
      &:nth-child(2) {
        left: 6px;
        animation: ellipsis-slide 0.6s infinite;
      }

      /* Dot 3 */
      &:nth-child(3) {
        left: 26px;
        animation: ellipsis-slide 0.6s infinite;
      }

      /* Dot 4 */
      &:nth-child(4) {
        left: 45px;
        animation: ellipsis-scale-out 0.6s infinite;
      }
    }
  }
}

/* ==========================================
   ANIMATIONS
========================================== */

/* Scale In */
@keyframes ellipsis-scale-in {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* Scale Out */
@keyframes ellipsis-scale-out {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

/* Slide Motion */
@keyframes ellipsis-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(19px);
  }
}

img {
  max-width: 100%;
}

/*--------------------------------------------------------------
#3	WEBSITE HEADER
--------------------------------------------------------------*/

.navigation.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(-100%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.navigation.sticky-header.sticky-on {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.sticky-header-spacer {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

header {

  /* ========================
     TOP BAR
  ======================== */
  .header_topbar {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    font-size: 13px;
    color: var(--main-color-three);

    a {
      color: inherit;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;

      i {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
        color: var(--accent);
      }
    }

    .topbar_inner,
    .topbar_contact,
    .topbar_actions,
    .topbar_socials,
    .topbar_menu {
      display: flex;
      align-items: center;
    }

    .topbar_inner {
      justify-content: space-between;
    }

    .topbar_contact {
      gap: 25px;

      .topbar_contact_item {
        transition: all ease 0.3s;

        &:hover {
          color: #171717 !important;
          /* color: var(--main-color-two) !important; */
        }
      }
    }

    .topbar_actions {
      .topbar_socials {
        gap: 15px;
        padding-right: 20px;

        a:hover {
          color: var(--main-color);
        }
      }

      .topbar_menu {
        padding-left: 10px;
        border-left: 1px solid #e5e7eb;

        li {
          text-transform: uppercase;

          &:nth-child(odd) {
            border-right: 1px solid #e5e7eb;
          }

          &.active,
          &:hover {
            color: var(--main-color-two) !important;
          }
        }

        a {
          letter-spacing: 0.5px !important;
          padding: 0 20px;
          font-weight: 600;

          i {
            color: #9ca3af;
          }
        }
      }
    }
  }

  nav {
    background-color: #ffff;

    li::before {
      background-color: var(--main-color);
    }
  }
}

/* ============================================================ */

header {
  max-width: 100%;
  margin: auto;

  li {
    list-style: none;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
  }

  /* =============================== */
  /* NAV MENU  */

  nav {
    width: 100%;
    padding: 0 0px;
    background-color: #ffff;

    .container-xxl {
      /* column-gap: 50px; */
      display: flex;
      justify-content: space-between;
    }

    .logo {
      height: fit-content;
      align-self: center;
      /* background-color: red; */
      width: 250px;

      img {
        max-width: 100%;
      }
    }

    .menu_links {
      height: fit-content;
      align-self: center;
    }

    ul {
      display: flex;
      column-gap: 20px;

      li {
        align-self: center;
        font-size: 16px;
        display: flex;
        column-gap: 10px;
        position: relative;
        padding: 30px 0px !important;

        i {
          font-weight: 300;
          font-size: 10px !important;
          margin: auto 0;
        }

        a,
        i {
          color: var(--main-color);
        }

        &::before {
          content: "";
          display: block;
          width: 0%;
          height: 4px;
          position: absolute;
          top: 0px;
          left: 50%;
          transform: translateX(-50%);
          transition: all ease 0.5s;
        }

        &:hover {
          a {
            color: #a4a4a4;
          }

          &::before {
            width: 90% !important;
          }
        }
      }
    }
  }
}

/* ========================================================================= */
/* SIDE NAV STYLING  */
/* ========================================================================= */

@media (min-width: 1041px) {
  body:has(header.scrolled) {
    padding-top: 130px;
  }

  header.scrolled {
    z-index: 999999;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0px;
    box-shadow: 0px 0px 5px #ccc;

    .logo {
      filter: none !important;
    }

    .topbar {
      display: none !important;
    }

    nav {
      background-color: #ffff;
      transition: all ease 0.5s;

      .menu_links {
        li {
          color: var(--main-color) !important;

          a {
            font-weight: 500 !important;
            color: var(--main-color) !important;
          }

          i {
            color: var(--main-color) !important;
          }
        }
      }
    }
  }

  #menuBtn {
    display: none;
  }

  .dropdown-wrap {
    position: relative;
    width: fit-content;

    &:hover .drop-area {
      opacity: 1;
      pointer-events: auto;
    }

    .drop-btn {
      transition: 0.3s ease;
      width: fit-content;
    }

    .drop-area {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 0 0 5px 5px;
      border-top: 5px solid var(--main-color);
      padding: 10px 0;
      width: 250px;
      box-shadow: 0 10px 45px rgba(0, 0, 0, 0.15);
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease-in-out 0.3s;
      z-index: 100000;

      &:hover {
        /* background: red !important; */
        opacity: 1 !important;
      }

      a {
        padding: 10px 15px;
        color: #333 !important;
        text-decoration: none;
        transition: 0.25s ease;
        display: flex;

        &:hover {
          /* background: #ebebeb; */
          color: var(--main-color);

          &::before {
            width: 15px !important;
          }
        }

        &::before {
          content: "";
          display: block;
          width: 0px;
          height: 2px;
          background-color: var(--main-color);
          margin: auto 5px auto 0 !important;
          transition: all ease 0.4s;
        }
      }

      &.open {
        opacity: 1;
        pointer-events: auto;
      }
    }
  }
}

@media (max-width: 1040px) {
  header {
    position: relative;

    .topbar {
      display: none !important;
    }

    ul {
      display: none !important;
    }
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #menuBtn {
    margin-left: -7px;
    width: 27px;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: auto 0;
    position: relative;
    z-index: 5002;

    span {
      transition: all ease 0.3s;
      display: block;
      width: 100%;
      height: 3px;
      border-radius: 5px;
      background: var(--main-color) !important;
      position: absolute;
    }

    span:first-child {
      top: 2px;
    }

    span:nth-child(2) {
      top: 11px;
    }

    span:nth-child(3) {
      top: 20px;
    }

    p {
      color: var(--main-color);
      font-size: 0px !important;
      font-weight: bold;
      margin: 0;
      text-transform: uppercase;
      padding-top: 25px;
      white-space: nowrap;
      overflow: hidden;
      opacity: 0px !important;
      visibility: hidden;
    }
  }

  #menuBtn.open {
    span:first-child {
      top: 10px;
      rotate: 45deg;
      z-index: 5001;
    }

    span:nth-child(2) {
      scale: 0;
    }

    span:nth-child(3) {
      top: 10px;
      rotate: -45deg;
      z-index: 5001;
    }
  }

  nav {
    position: relative;
    padding: 27px 0 !important;

    .container-xxl {
      justify-content: space-between;
    }
  }

  .header_topbar {
    display: none;
  }

  .mobile_sidenav {
    width: 300px;
    height: 110%;
    max-width: 90%;
    position: fixed;
    top: 0px;
    left: 0;
    transform: translateX(-380px);
    z-index: 5000;
    overflow: auto !important;
    background-color: #ffff;
    padding-top: 70px;
    padding-bottom: 50px;
    box-shadow: 1px 1px 0px 1000px transparent;
    transition: all ease 0.8s;
    will-change: left;

    /* width */
    &::-webkit-scrollbar {
      width: 5px;
    }

    /* Track */
    &::-webkit-scrollbar-track {
      background: #f1f1f1;
      padding: 2px !important;
    }

    /* Handle */
    &::-webkit-scrollbar-thumb {
      background: #333333;
    }

    /* Handle on hover */
    &::-webkit-scrollbar-thumb:hover {
      background: #555;
    }

    .mbl-menu_wrap {
      li {
        text-transform: uppercase;
      }
    }

    ul {
      padding: 10px 20px;

      li {
        list-style: none !important;
        padding: 7px 20px !important;
        margin-bottom: 7px !important;
        border-bottom: 1px solid #8080803a;

        &:has(i) {
          display: flex !important;
          justify-content: space-between;
          width: 100% !important;
          border-radius: 7px !important;
          border: 1px solid #8080803a;
          background-color: #ffffff11;

          i {
            font-size: 11px;
            margin: auto 0;
          }
        }

        &:has(.drop-area.open) {
          i {
            rotate: 180deg !important;
          }
        }

        a,
        i {
          color: var(--main-color);
        }
      }
    }
  }

  .mobile_sidenav.open {
    /* left: 0; */
    transform: translateX(0) !important;
    box-shadow: 1px 1px 0px 800px #09004f3e;
  }

  body:has(.mobile_sidenav.open) {
    overflow-y: hidden;
  }

  /* ======================================================== */
  /* ======================================================== */
  .dropdown-wrap {
    position: relative;
    width: fit-content;
    flex-wrap: wrap !important;

    &:hover .drop-area {
      opacity: 1 !important;
    }

    .drop-btn {
      transition: 0.3s ease;
      width: fit-content;
      /* width: 50%; */
      cursor: pointer !important;

      &:not(.fa) {
        flex: 1;
      }
    }

    .drop-area {
      margin-top: 10px;
      border-left: 1px solid #cccc;
      border-bottom-left-radius: 10px !important;
      overflow: hidden;
      display: none;
      min-width: 100% !important;
      width: 100% !important;
      max-width: 100% !important;
      flex: 1;

      a {
        padding: 5px !important;
        color: var(--gray-text) !important;
        text-decoration: none;
        transition: 0.25s ease;
        display: flex;
        font-size: 15px !important;

        &:hover {
          opacity: 0.8;

          &::before {
            width: 15px !important;
          }
        }

        &::before {
          content: "";
          display: block;
          width: 0px;
          height: 2px;
          background-color: #ffff;
          margin: auto 5px auto 0 !important;
          transition: all ease 0.4s;
        }
      }

      &.open {
        opacity: 1;
        pointer-events: auto;
      }
    }
  }
}

@media (max-width: 590px) {
  header {
    .logo {
      display: block;
      text-align: center;
      width: 40vw !important;
      min-width: 155px;

      img {
        /* width: 320px; */
        max-width: 100%;
        display: block;
      }
    }
  }
}

@media (max-width: 750px) {
  .header_topbar {
    display: none !important;
  }

  .quote_req {
    font-size: 13px !important;
  }
}

@media (max-width: 650px) {
  .quote_req {
    /* font-size: 13px !important; */
    display: none;
  }
}

/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;

  @media (max-width: 991px) {
    height: 600px;
  }

  @media (max-width: 767px) {
    height: 500px;
  }

  /* Swiper Container */
  .swiper-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    overflow: hidden;
    color: #fff;
  }

  /* Slide Inner */
  .slide-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;

    &::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      /* background-color: red; */
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 60%);
      position: absolute;
      top: 0;
      left: 0;
    }
  }

  /* Navigation Buttons */
  .swiper-button-prev,
  .swiper-button-next {
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;

    &:hover {
      background: #fff;

      &::before {
        color: var(--text-color);
      }
    }

    @media (max-width: 991px) {
      display: none;
    }
  }

  .swiper-button-prev {
    left: 25px;

    &::before {
      content: "\f053";
      font-size: 20px;
      color: #fff;
    }
  }

  .swiper-button-next {
    right: 25px;

    &::before {
      content: "\f054";
      font-size: 20px;
      color: #fff;
    }
  }

  /* Pagination */
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    display: none;
  }

  /* Subtitle */
  .slide-subtitle {
    @media (max-width: 991px) {
      text-align: center;
    }

    span {
      background: #e8e8e8;
      display: inline-block;
      font-size: 0.666rem;
      font-weight: 600;
      color: var(--text-color);
      padding: 8px 15px;
      letter-spacing: 5px;
      text-transform: uppercase;

      @media (max-width: 767px) {
        padding: 5px 12px;
        letter-spacing: 2px;
      }
    }
  }

  /* Title */
  .slide-title {
    max-width: 650px;

    @media (max-width: 991px) {
      max-width: 500px;
      margin: 0 auto;
      text-align: center;
    }

    h2 {
      font-size: 60px;
      color: #fff;
      margin: 0.57em 0;
      text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        5px 5px 5px #333;

      span {
        font-weight: 300;
      }

      @media (max-width: 991px) {
        font-size: clamp(25px, 5vw, 38px);
      }
    }
  }

  /* Text */
  .slide-text {
    max-width: 690px;

    @media (max-width: 991px) {
      margin: 0 auto;
      text-align: center;
    }

    p {
      font-size: 23px;
      color: #fff;
      margin-bottom: 2em;
      text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        5px 5px 5px #333;

      @media (max-width: 767px) {
        font-size: 1rem;
      }
    }
  }

  /* Buttons */
  .slide-btns {
    display: flex;
    column-gap: 00px;

    @media (max-width: 991px) {
      margin: 0 auto;
      text-align: center;
      justify-content: center;
    }

    >a:first-child {
      margin-right: 15px;
    }
  }
}

/* ==========================================
   HERO VARIANTS
========================================== */

.hero-style-1,
.hero-style-2,
.hero-style-3 {
  height: 890px;

  @media (max-width: 991px) {
    height: 600px;
  }

  @media (max-width: 767px) {
    height: 500px;
  }
}

/* Style 2 & 3 */
.hero-style-2,
.hero-style-3 {
  height: calc(100vh - 139px);
  min-height: 600px;

  @media (max-width: 991px) {
    height: 600px;
  }

  @media (max-width: 767px) {
    height: 500px;
    min-height: 500px;
  }

  .slide-title h2 {
    margin: -0.2em 0 0.3em;
  }
}

/* Style 3 */
.hero-style-3 {
  height: 700px;
  text-align: center;

  @media (max-width: 991px) {
    height: 600px;
  }

  @media (max-width: 767px) {
    height: 500px;
  }

  .slide-title,
  .slide-text,
  .slide-btns {
    margin: 0 auto;
    text-align: center;
  }
}

/* ==========================================
   BODY INFO SECTION
========================================== */
.travel_sect_wrapper {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;

  .travel_sect_container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;

    /* -----------------------------
       LEFT COLUMN: CONTENT
    ----------------------------- */
    .travel_sect_content {
      flex: 1;
      min-width: 300px;
      padding-right: 20px;

      .travel_sect_heading {
        font-size: clamp(22px, 5.8vw, 36px);
        line-height: 1.4;
        font-weight: 400;
        color: #111;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 0 0 40px 0;
      }

      .travel_sect_body {
        font-size: 15px;
        line-height: 1.8;
        color: #666;
        font-weight: 400;
        padding: 5px 0;

        p {
          margin-bottom: 30px;
        }

        .travel_sect_highlight {
          color: #e68a73;
        }

        .travel_sect_underline {
          border-bottom: 1px solid #999;
          padding-bottom: 1px;
          color: #555;
        }

        .travel_sect_underline_block {
          border-bottom: 1px solid #999;
          padding-bottom: 5px;
          display: inline;
        }
      }
    }
  }

  /* -----------------------------
     RESPONSIVE
  ----------------------------- */
  @media (max-width: 880px) {
    .travel_sect_content {
      padding-right: 0px !important;
    }

    .travel_sect_container {
      flex-direction: column;
    }

    .img-collage-wrap {
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(10, 1fr);
      min-height: auto;
      width: 100%;
      aspect-ratio: 1/1;
      margin: 0 auto;
      max-width: 500px;
    }

    .img-collage-wrap .img-collage-back {
      grid-column: 3 / -1;
      grid-row: 1 / 8;
    }

    .img-collage-wrap .img-collage-front {
      grid-column: 1 / 9;
      grid-row: 5 / -1;
      border: 4px solid #fff;
      aspect-ratio: 16 / 14;
    }

    .img-collage-wrap img {
      object-fit: cover;
    }
  }
}

/* ========================================== */
/* -----------------------------
       RIGHT COLUMN: GALLERY
    ----------------------------- */
.img-collage-wrap {
  flex: 1.2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  /* min-height: 450px; */

  .img-collage-back {
    grid-column: 4 / -1;
    grid-row: 1 / 9;
    z-index: 1;
    border-radius: 9px !important;
    overflow: hidden;
  }

  .img-collage-front {
    grid-column: 1 / 8;
    grid-row: 6 / -1;
    z-index: 2;
    border: 5px solid #fff;
    border-radius: 9px !important;
    overflow: hidden;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ==========================================
   DESTINATIONS SECTION
========================================== */

.destinations {
  padding: 0px 0;
  background: #fff;

  @media (min-width: 1024px) {
    padding: 0px 0;
  }

  /* Grid */
  .destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

    @media (min-width: 500px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Card */
  .destination-card {
    position: relative;
    aspect-ratio: 3 / 3.6;
    overflow: hidden;
    border-radius: 8px;
    background: #e5e5e5;
    cursor: pointer;

    img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    &:hover {
      img {
        transform: scale(1.05);
      }

      .destination-info {
        opacity: 0;
        visibility: hidden;
      }

      .on-hover-destination-info {
        opacity: 1;
        visibility: visible;
      }
    }

    .destination-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 60%);
    }

    /* Shared text styles */
    .destination-name {
      font-weight: 600;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.9);
    }

    .destination-desc {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
    }

    .destination-info,
    .on-hover-destination-info {
      position: absolute;
      width: 100%;
      padding: 20px;
      color: #fff;
      text-align: center;
      transition: 0.3s ease;
    }

    .destination-info {
      bottom: 0;

      .destination-country {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 4px;
      }

      .destination-name {
        font-size: 18px;
      }
    }

    .on-hover-destination-info {
      top: 0;
      height: 100%;
      background: rgba(0, 0, 0, 0.33);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;

      .destination-name {
        font-size: 24px;
      }

      .destination-desc {
        margin-bottom: 20px;
      }
    }
  }
}

/* ===================================================== */
/* FOOTER  */
/* ===================================================== */

.footer {
  background: #f8f8f8;
  padding: 60px 0 20px;
  border-top: 1px solid #e7e7e7;
  font-family: Arial, sans-serif;

  .container-xxl {
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 3fr;
    gap: 60px;
  }

  .footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 200px;

    i {
      font-size: 22px;
      color: #333;
    }

    h3 {
      margin: 0;
      font-size: 22px;
    }
  }

  .footer__contact {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;

    a {
      color: #666;
      text-decoration: none;
      font-size: 14px;

      i {
        margin-right: 6px;
      }

      &:hover {
        color: var(--main-color);
      }
    }
  }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer__column {
    ul {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;

      li {
        margin-bottom: 8px;

        a {
          text-decoration: none;
          color: #666;
          font-size: 14px;

          &:hover {
            color: var(--main-color);
          }
        }
      }
    }
  }

  .footer__title {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    i {
      display: none;
      font-size: 12px;
      transition: 0.3s;
    }
  }

  .footer__social {
    display: flex;
    gap: 12px;

    li a {
      font-size: 16px;
      color: #666;

      &:hover {
        color: var(--main-color);
      }
    }
  }

  .footer__bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
    text-align: center;
    font-size: 14px;
    color: #777;

    .container-xxl {
      display: flex !important;
      justify-content: space-between;
      flex-wrap: wrap;

      a {
        color: var(--main-color);
        transition: all ease 0.3s;

        &:hover {
          color: #1f2937;
        }
      }

      @media (max-width: 600px) {
        flex-direction: column !important;
        gap: 12px !important;
        justify-content: center !important;
        align-items: center;
      }
    }
  }
}

/* Mobile Accordion */
@media (max-width: 992px) {
  .footer {
    .container-xxl {
      grid-template-columns: 1fr !important;
    }

    .footer__title i {
      display: block !important;
    }

    .footer__links {
      grid-template-columns: 1fr !important;
      gap: 20px;
    }

    .footer__column ul {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .footer__column.active ul {
      max-height: 300px;
    }

    .footer__column.active .footer__title i {
      transform: rotate(180deg);
    }
  }
}

/* ========================================= */
/* TOUR CARD  */
/* ========================================= */
.tour-cards-wrapper {
  background: #f3f4f6;
  padding-bottom: 50px;

  .tour-card-wrap-inner {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    column-gap:50px;
     row-gap: 50px;

    .tour-card {
      flex: 1;
      align-self: center;
      min-width: 340px;
      max-width: 400px;
      height: fit-content;
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      transition: 0.3s ease;

      &:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px #00000026;
      }

      .img-base {
        width: 95%;
        margin: 15px auto;
        height: 190px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 12px 25px #00000026;
      }

      .bs-info {
        padding: 25px;

        .bs-name {
          margin-bottom: 10px;
          font-size: 20px;
          font-weight: 700;
          color: #111;
        }

        .bs-desp {
          font-size: 15px;
          color: #555;
          margin-bottom: 15px;
          line-height: 1.4;
        }

        .bs-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          margin-bottom: 15px;

          .tag {
            background: #e5e7eb;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 13px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all cubic-bezier(1, 0, 0, 1) 0.3s;

            &:not(&.city):hover {
              background: var(--main-color);
              color: #ffff;
            }

            &.city {
              background: var(--main-color);
              color: #fff;

              i {
                font-size: 10px;
                margin-top: -2px;
              }
            }
          }
        }

        .info-footer {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          border-top: 1px solid #eee;
          padding-top: 12px;

          p {
            width: fit-content;
            white-space: nowrap;
            font-size: 16px;
            font-weight: 600;
            color: var(--main-color);
          }

          .listing-id {
            color: gray;
            transition: all ease 0.3s;
            font-weight: 600;
          }
        }
      }
    }
  }

  @media (max-width: 900px) {
    .tour-card-wrap-inner {
      justify-content: center !important;

      .tour-card {
        max-width: 100% !important;
        min-width: 290px !important;
      }
    }
  }

  @media (max-width: 430px) {
    .tour-card-wrap-inner {
      padding: 0px 20px !important;

      .tour-card {
        .img-base {
          aspect-ratio: 16/8 !important;
          height: auto !important;
        }

        .bs-info {
          padding: 15px !important;
        }
      }
    }
  }
}

/* ========================================= */
/* TESTIMONIAL  */
/* ========================================= */
.testimonial-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* padding: 40px 20px; */

  .section-title {
    text-align: center;
    font-size: clamp(28px, 5.8vw, 36px);
    color: var(--text-color);
    /* margin-bottom: 50px; */
    font-weight: bold;
  }

  .swiper {
    width: 100%;
    padding: 50px;

    .swiper-slide {
      background: transparent;
      height: auto;
    }

    /* Pagination */
    .swiper-pagination-bullet {
      background: white;
      outline: 1px solid #ccc;
      opacity: 1;

      &.swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--main-color);
      }
    }

    /* Navigation */
    .swiper-button-next,
    .swiper-button-prev {
      color: white;
      background: var(--main-color);
      opacity: 0.7;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;

      &:after {
        font-size: 20px;
      }

      &:hover {
        /* background: rgba(255, 106, 0, 0.9); */
      }
    }

    @media (max-width: 440px) {
      padding-left: 20px !important;
      padding-right: 20px !important;

      .swiper-button-next,
      .swiper-button-prev {
        display: none !important;
      }
    }
  }

  .testimonial-card {
    /* background: linear-gradient(135deg, #ff9a56 0%, #ff6a00 100%); */
    /* background: #bbe0ef; */
    background: #e6f8ff;
    border-radius: 20px;
    padding: 35px 30px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.062); */
    height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    .quote-icon {
      position: absolute;
      top: 25px;
      left: 30px;
      font-size: 2rem;
      color: rgb(255, 255, 255);
    }

    .review-text {
      color: #000;
      font-size: 1rem;
      line-height: 1.6;
      margin-top: 40px;
      margin-bottom: 30px;
      flex-grow: 1;
      font-weight: 300;

      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      height: 120px;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 15px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.564);
      margin-top: auto;

      .reviewer-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.5);
        flex-shrink: 0;
      }

      .reviewer-details {
        flex-grow: 1;

        .reviewer-name {
          color: #000;
          font-size: 1.1rem;
          font-weight: 600;
          margin-bottom: 5px;
        }

        .reviewer-rating {
          display: flex;
          gap: 3px;
          margin-bottom: 5px;

          i {
            color: #ffd700;
            font-size: 0.9rem;
          }
        }

        .traveler-type {
          color: rgba(0, 0, 0, 0.9);
          font-style: italic;
          font-size: 0.85rem;
        }
      }
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-card {
      padding: 25px 20px;
      height: 300px;

      .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
        height: 100px;
      }
    }

    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }
  }
}

/* =================================================== */
/* WhatsApp Widget Container */
/* =================================================== */
.wa-widget {
  --primary-green: #2ef075;
  --dark-green: #21b256;
  --white: #ffffff;
  --gray-light: #f3f4f6;
  --gray-text: #4b5563;
  --shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 55px;
  left: 24px;
  z-index: 1000;

  /* Popup Menu */
  .wa-popup {
    display: none;
    /* jQuery will handle show/hide */
    margin-bottom: 10px;
    margin-left: 25px;
    background: var(--white);
    border-radius: 12px;
    border-bottom-left-radius: 0px;
    box-shadow: var(--shadow);
    width: 290px;
    max-width: 79vw;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    animation: slideUp 0.3s ease-out;

    .wa-header {
      background: linear-gradient(to right,
          var(--dark-green),
          var(--primary-green));
      padding: 16px;
      color: var(--white) !important;

      h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white) !important;
      }

      p {
        margin: 4px 0 0 0;
        font-size: 0.75rem;
        opacity: 0.9;
        color: var(--white) !important;
      }
    }

    .wa-body {
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;

      .wa-link {
        display: flex;
        align-items: center;
        padding: 12px;
        background-color: #f3f4f6;
        text-decoration: none;
        color: var(--gray-text);
        border-radius: 8px;
        transition: background 0.2s;
        /* border-bottom: 1px solid #f3f4f6; */

        &:last-child {
          border-bottom: none;
        }

        &:hover {
          background-color: #f0fdf4;
        }

        i {
          color: var(--primary-green);
          margin-right: 12px;
          font-size: 1.25rem;
          aspect-ratio: 1/1;
          min-width: 24px;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        span {
          font-size: 0.875rem;
          font-weight: 500;
        }
      }
    }
  }

  /* Floating Button */
  .wa-btn {
    background: linear-gradient(to left,
        var(--primary-green),
        var(--dark-green));
    color: var(--white);
    width: 54px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    /* box-shadow: 0 0 0 2px rgba(60, 255, 73, 0.5);
     animation: ripple 3s infinite; */
    cursor: pointer;
    transition:
      transform 0.2s,
      background-color 0.2s;
    outline: none;

    &:hover {
      background-color: var(--dark-green);
      transform: scale(1.05);
    }

    &:active {
      transform: scale(0.95);
    }

    i {
      font-size: 32px;
    }
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 #ffffff00;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =================================================== */
/* Back to Top */
/* =================================================== */
.back-to-top {
  position: fixed;
  bottom: 55px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--main-color) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 100;
  border: none;

  &.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  &:hover {
    transform: translateY(-5px);
  }
}

/* ===================================================== */
/* ===================================================== */
.inner-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  display: flex;
  row-gap: 90px;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  background-position: center;
  background-size: cover;

  &.parallax {
    background-attachment: fixed;
  }

  .container-xxl,
  .inner-banner__breadcrumb {
    width: 100%;
    position: relative;
    z-index: 22;
  }

  /* &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000065;
    z-index: 20;
  } */

  .inner-banner__title {
    color: #fff;
    font-size: clamp(40px, 7.5vw, 4.5rem);
    font-weight: 700;
    text-shadow:
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000;
    pointer-events: none;
    z-index: 22;
  }

  .inner-banner__breadcrumb {
    background: linear-gradient(to left, var(--main-color), #0d1236);
    padding: 10px 0;

    .container-xxl {
      display: flex;
      column-gap: 40px;
    }

    span {
      text-transform: uppercase;
      position: relative;

      &:nth-child(odd) {
        &::after {
          content: "\f054";
          --_fa-family: var(--fa-family,
              var(--fa-style-family, "Font Awesome 7 Free"));
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          display: var(--fa-display, inline-block);
          font-family: var(--_fa-family);
          font-feature-settings: normal;
          font-style: normal;
          font-synthesis: none;
          font-variant: normal;
          font-weight: var(--fa-style, 900);
          line-height: 1;
          text-align: center;
          text-rendering: auto;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: -22px;
          color: #fff !important;
        }
      }

      a {
        color: #fff;
      }
    }
  }

  /* ================================= */
  /* ================================= */
  @media (max-width: 660px) {
    row-gap: 35% !important;
    text-align: center !important;
  }
}

/* ================================= */
/* ================================= */
.contact-form {
  padding: clamp(20px, 4.5vw, 35px);
  box-shadow: 0px 0px 10px #ccc;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  .head-txt {
    flex: 1 1 100%;

    h1 {
      font-size: clamp(18px, 4vw, 23px);
      margin-bottom: 10px;
    }
  }

  .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 calc(50% - 12px);
    min-width: 0;

    &.per-1-fr {
      flex: 1 1 100%;
    }
  }

  .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
  }

  .input-group:has(.form-selectbox) {
    position: relative;
    width: 100%;

    .form-selectbox {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 100%;
      padding: 14px 45px 14px 16px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      font-size: 0.95rem;
      color: #808080;
      font-weight: 500;
      background: #fff;
      cursor: pointer;

      &:focus {
        border-color: var(--main-color);
        outline: none;
      }
    }

    &::after {
      content: "";
      position: absolute;
      right: 15px;
      top: 50%;
      width: 16px;
      height: 16px;
      transform: translateY(-50%);
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23808080'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    color: #808080;
    font-weight: 500;
    transition:
      border 0.3s ease,
      box-shadow 0.3s ease;

    &:focus {
      border-color: var(--main-color);
      outline: none;
    }
  }

  .form-textarea {
    resize: none;
  }

  .form-button {
    margin-top: 10px;
    padding: 14px 30px;
    border-radius: 7px;
    border: none;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    &:active {
      transform: translateY(0);
      box-shadow: none;
    }
  }

  @media (max-width: 992px) {
    .input-group {
      flex: 1 1 100%;
    }
  }

  @media (max-width: 576px) {
    padding: 20px;

    .form-button {
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 400px) {
    padding: 0px !important;
    box-shadow: 0 0 0 transparent !important;
  }
}

/* ==================================================== */
/* ==================================================== */
.contact-section {
  .contact-section__title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 clamp(25px, 4vw, 40px);
  }

  .contact-section__divider {
    border: 0;
    border-top: 1px solid #dde4d4;
    margin: 0 0 clamp(25px, 5vw, 50px);
  }

  .contact-section__content {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    align-items: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .contact-section__info {
    flex: 0 0 480px;
    max-width: 480px;

    @media (max-width: 770px) {
      flex: 1 !important;
    }
  }

  .contact-section__main-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: clamp(18px, 3vw, 30px);
  }

  .contact-section__item {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 18px);
    margin-bottom: clamp(18px, 3vw, 30px);

    .contact-section__item-title {
      font-weight: 700;
      margin-bottom: 6px;
      font-size: clamp(15px, 2vw, 18px);
    }

    .contact-section__item-text {
      font-size: clamp(14px, 2vw, 17px);
      line-height: 1.6;
      color: #42524a;

      a {
        color: inherit;
        text-decoration: none;

        &:hover {
          color: var(--main-color);
        }
      }

      @media (max-width: 325px) {
        font-size: 12px !important;
      }
    }
  }

  .contact-section__icon {
    width: clamp(22px, 4vw, 35px);
    flex-shrink: 0;
    font-size: clamp(20px, 3vw, 30px);

    svg {
      width: clamp(20px, 4vw, 28px) !important;
      height: auto;
      aspect-ratio: 1/1;
      color: var(--main-color) !important;
    }
  }

  .form-wrap {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 100%;
    width: 100%;
  }

  @media (max-width: 768px) {
    .contact-section__content {
      flex-direction: column;
    }

    .contact-section__info {
      max-width: none;
    }
  }
}

/* ================================================= */
/* ================================================= */
.service___wrapper {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  .container-xxl {
    display: flex;
    /* align-items: center; */
    gap: 60px;
  }

  .text-col {
    flex: 0 0 63%;

    .label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 20px;
    }

    h1 {
      font-size: 52px;
      font-weight: 700;
      color: #1a1a1a;
      /* line-height: 1.15; */
      margin-bottom: 20px;

      span {
        font-style: italic;
        font-weight: 300;
        color: #888;
      }
    }

    .desc {
      font-size: 16px;
      color: #777;
      line-height: 1.6;
      margin-bottom: 32px;
    }
  }

  .image-col {
    flex: 1;
    display: flex;
    justify-content: center;

    .image-wrapper {
      position: relative;
      width: 100%;
      max-width: 340px;

      .shadow-box {
        position: absolute;
        inset: 0;
        background: var(--main-color);
        border-radius: 16px;
        transform: translate(12px, 12px);
      }

      img {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 16px;
        display: block;
      }
    }
  }
}

@media (max-width: 768px) {
  .service___wrapper {
    .container-xxl {
      flex-direction: column !important;
      gap: 40px;
    }

    .text-col {
      flex: 1;
      text-align: center;

      h1 {
        font-size: 34px;
      }

      .desc {
        max-width: 100%;
      }
    }

    .image-col {
      .image-wrapper {
        max-width: 260px;
      }
    }
  }
}

/* ================================================ */
/* ================================================ */
/* .horizontal-cards__wrapper {
  .container-xxl {
    display: flex;
    flex-direction: column;
    gap: 40px;

    .horizontal-card-wrap {
      display: flex;
      border-radius: 22px;
      background-color: #fff;
      box-shadow: 0px 0px 45px #ccc;
      .img-wrapper,
      .content-wrapper {
        flex: 1;
      }
      .content-wrapper{
        padding: 30px;
         .label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 20px;
    }

    h1 {
      font-size: 52px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;

      span {
        font-style: italic;
        font-weight: 300;
        color: #888;
      }
    }

    .desc {
      font-size: 16px;
      color: #777;
      line-height: 1.6;
      margin-bottom: 32px;
    }
      }
      .img-wrapper {
        padding: 0 30px;
        max-width: 350px;
        img {
          width: 320px;
          height: 430px;
          border-radius: 22px;
          transform: translateY(-30px);
        }
      }
    }
  }
} */

/* ======================================== */
/* ======================================== */
.icon-cards-wrapper {
  .container-xxl {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;

    .card {
      max-width: 50%;
      min-width: 450px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-color: #ffff;
      box-shadow: 0px 0px 45px #dedede;
      border: 0px;
      padding: 30px;
      border-radius: 11px;
      position: relative;
      transition: all ease 0.3s;

      .text-col {
        height: fit-content;
      }

      .hn-theme-btn {
        /* border-radius: 99px; */
      }

      /* ── hover state ── */
      &:hover {
        transform: translateY(-4px);

        .icon {
          transform: rotate(-8deg) scale(1.12) !important;

          i,
          svg {
            transform: scale(1.15) rotate(-20deg) !important;
          }
        }
      }

      .card_title {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;

        h2 {
          transition: all ease 0.3s;
          font-weight: 300 !important;
          font-size: 23px;
        }

        .icon {
          padding: 10px;
          flex-shrink: 0;
          width: 55px;
          height: auto;
          aspect-ratio: 1/1;
          display: flex;
          justify-content: center;
          align-items: center;
          color: var(--main-color);
          font-size: 24px;
          transition:
            background 0.4s ease,
            color 0.4s ease,
            box-shadow 0.4s ease,
            transform 0.4s ease;

          i,
          svg {
            transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
          }

          img {
            /* width: 90%; */
            filter: brightness(0) saturate(100%) invert(13%) sepia(68%) saturate(3766%) hue-rotate(207deg) brightness(98%) contrast(102%);
          }
        }
      }

      .desc {
        font-size: 16px;
        color: var(--text-color);
        line-height: 1.6;
        margin-bottom: 32px;
        transition: all ease 0.3s;
      }
    }
  }

  @media (max-width: 990px) {
    .container-xxl {
      gap: 35px !important;

      .card {
        min-width: 300px !important;
      }
    }
  }

  @media (max-width: 680px) {
    .container-xxl {
      flex-direction: column !important;

      .card {
        min-width: 100% !important;
        text-align: center;
        padding-left: 15px !important;
        padding-right: 15px !important;

        .desc {
          margin-bottom: 0px;
          font-size: 15px !important;
        }

        .card_title {
          margin-bottom: 10px !important;
          flex-direction: column !important;

          h2 {
            font-size: 19px !important;
          }
        }

        .icon {
          width: 40px !important;
          padding: 0px !important;
        }
      }
    }
  }
}

/* ================================================= */
/* PACKAGE PAGE */
/* ================================================= */

.pkg-page {
  margin-top: -80px !important;
  margin-bottom: 0px !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  --sidebar-w: 380px;

  .pkg-layout {
    display: grid !important;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 40px;
    align-items: start;

    @media (max-width: 960px) {
      grid-template-columns: 1fr;

      .pkg-hero__img {
        padding: 20px;
        border: 1px solid var(--border);
        bottom: 0px;
        border-top-left-radius: 11px;
        border-top-right-radius: 11px;
        border-bottom: 0px;
        margin-bottom: -24px;
      }

      .pkg-hero__actions {
        order: 99;
        width: 100%;
        margin: 0 !important;
        justify-content: center;
        padding: 20px;
        border: 1px solid var(--border);
        border-bottom-left-radius: 11px;
        border-bottom-right-radius: 11px;
      }

      .pkg-sidebar {
        position: static;
        width: 100%;
      }
    }
  }

  /* ── MAIN COLUMN ── */
  .pkg-main {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  /* ── SIDEBAR ── */
  .pkg-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: var(--sidebar-w);

    .pkg-card__slider {
      background: transparent;
      margin: 0 auto;
      position: relative;
      width: fit-content;
      overflow: hidden;
      border-radius: 11px;

      .pkg-card__slide {
        width: 100%;
        text-align: center !important;

        img {
          max-width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }
    }
  }

  /* ── SIDEBAR CARD ── */
  .pkg-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ccc;

    .pkg-card__header {
      padding: 24px 28px 20px;
      border-bottom: 1px solid #ccc;
    }
    .pkg-card__body {
      padding: 24px 28px;
    }

    .pkg-card__option {
      border-radius: 8px;
      border: 1.5px solid var(--accent);
      padding: 16px 18px;
      margin-bottom: 10px;
      cursor: pointer;
      transition:
        border-color 0.2s,
        background 0.2s;
      position: relative;
      background: rgba(0, 69, 166, 0.04);

      .pkg-card__option-tier {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 4px;
      }

      .pkg-card__option-price {
        font-family: var(--font-sarabun-bold), sans-serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1;

        span {
          font-size: 1rem;
          font-family: var(--font-sarabun), sans-serif;
          font-weight: 400;
          color: var(--main-color-three);
        }
      }

      .pkg-card__option-desc {
        font-size: 14px;
      }
    }
  }

  /* ── SIDEBAR CONTACT ── */

  .pkg_sidebar-contact {
    border-top: 1px solid #cccc;
    padding: 24px;

    h4 {
      margin-bottom: 10px;
      color: var(--accent);
    }

    p {
      margin-bottom: 15px;
    }

    span:has(a) {
      display: block;
      padding: 5px 0;
      line-height: 1.5;
      /* font-size: 1px; */
      /* color: #1f2937; */
      /* background-color: ; */
      font-weight: 600;

      b {
        display: block;
        font-weight: normal !important;
      }

      a {
        font-weight: normal !important;
        color: inherit;
        filter: brightness(90%);
        text-decoration: underline;
      }
    }
  }

  /* ── HERO ── */
  .pkg-hero {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    .pkg-hero__info {
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;

      h1 {
        font-family: var(--font-sarabun-bold), sans-serif;
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 8px;
      }

      .pkg-hero__tagline {
        font-family: var(--font-sarabun), sans-serif;
        font-size: 19px;
        font-style: italic;
        color: #878787;
        margin-bottom: 24px;
      }

      .pkg-hero__meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--accent);
        font-size: 16px;
        font-weight: 500;
      }
    }

    .pkg-hero__meta {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .pkg-hero__actions {
      display: flex;
      flex-wrap: wrap;
      column-gap: 20px;
      height: fit-content;
      align-self: auto;
      margin-left: auto;
      margin-top: 15px;

      @media (max-width: 600px) {
        flex-direction: column;
        row-gap: 12px;

        a {
          width: 100% !important;
          min-width: unset;
        }
      }

      a {
        border-radius: 5px;
        padding: 10px 20px;
        padding-right: 30px;
        min-width: 175px;
        justify-content: center;
        width: fit-content;

        &.btn-whatsapp {
          background-color: #21b256;
          color: #fff;
          display: flex;
          column-gap: 10px;
          align-items: center;
          box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset;

          i {
            font-size: larger;
          }
        }

        &.btn-brochure {
          background: var(--accent);
          color: #fff;
          display: flex;
          column-gap: 10px;
          align-items: center;
          box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset;

          i {
            font-size: larger;
          }
        }
      }
    }

    .pkg-hero__dates {
      background-color: #fff;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      color: #878787;
      border: 1px solid var(--border);
      width: 100%;
      padding: 15px;
      border-radius: 10px;

      .pkg-date-item {
        text-align: center;
        font-size: 14px !important;
        padding: 8px 20px;

        &:not(:last-child) {
          border-right: 1px solid var(--border);
        }

        span:not(.pkg-date-item__val) {
          font-weight: 600;
        }
      }

      @media (max-width: 600px) {
        flex-direction: column;
        gap: 0;

        .pkg-date-item {
          padding: 10px 0;

          &:not(:last-child) {
            border-right: none;
            border-bottom: 1px solid var(--border);
          }
        }
      }
    }

    .pkg-hero__img {
      overflow: hidden;
      display: block;
      width: auto;
      height: auto;

      img {
        border-radius: 7px;
      }
    }
  }

  /* ── CONTENT BLOCKS ── */
  .pkg-block {
    background: var(--white);

    &:has(~ .pkg-block) {
      margin-bottom: 20px;
    }

    &.pkg-block--quote {
      padding-left: clamp(20px, 7vw, 36px);
      border-left: 4px solid var(--accent);
    }

    h2 {
      font-family: var(--font-sarabun-bold), sans-serif;
      font-size: 23px;
      line-height: 1.5;
      font-weight: bold;
      margin-bottom: 25px;
      /* color: var(--text-color); */
      background: linear-gradient(to right, var(--accent), #6969ff);
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;

      &:has(~ p) {
        margin-bottom: 10px !important;

        &~p {
          margin-bottom: 25px !important;
        }
      }
    }

    /* @media (max-width:600px) {
      h2{
        font-weight: 400 !important;
      }
    } */
    /* ── CHECKLIST ── */
    .check__lick-main {
      /* background-color: red; */
      margin-top: 20px;

      h5 {
        color: var(--text-color);
      }

      h5:has(~ p) {
        margin-bottom: 10px;
      }

      ul {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        width: fit-content;

        &.cols--2 {
          display: grid !important;
          width: 100%;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
          gap: 20px 20px;
        }

        &.cols--3 {
          display: grid !important;
          width: 100%;
          grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
          gap: 20px 20px;
        }

        li {
          list-style: none;
          border-bottom: 1px dashed #ccc;
          display: flex;
          align-items: baseline;
          column-gap: 10px;
          height: fit-content;
          padding: 3px 0;

          /* font-size: 13px; */
          i {
            display: block;
            /* aspect-ratio: 1/1;
            width: 30px;
            height: auto; */
            color: var(--main-color-two);
            /* background-color: var(--accent); */
            /* padding: 5px;
            border-radius: 2px;
            display: flex;
            justify-content: center;
            align-items: center; */
          }
        }
      }
    }

    /* ── FEATURES ── */
    .pkg-features {
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-wrap: wrap;
      gap: 17px;

      li {
        list-style: none;
        text-align: center;
        font-size: 14px !important;
        min-width: 60px;
        padding: 5px 25px;
        border-radius: 99px;
        border: 1px solid var(--border);
        transition: all ease 0.3s;

        &:hover {
          background-color: var(--main-color-two);
          color: #fff;
        }
      }
    }

    /* ── TRANSPORT ── */
    .pkg-transport {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      column-gap: 40px;

      .pkg-transport__item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 0;
      }

      .pkg-transport__icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--gray);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        svg {
          stroke: var(--accent);
        }
        
        img{
          height: 33px;
          filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3613%) hue-rotate(207deg) brightness(88%) contrast(105%);
        }
      }

      .pkg-transport__name {
        font-weight: 600;
        font-size: 14px;
        color: var(--text-color);
      }
    }

    /* ── PRICING TABLE ── */
    .pkg-price-table-wrap {
      width: 100%;
      overflow-x: auto;
      border-radius: 20px;
      outline: 1px solid var(--accent);
      outline-offset: -1px;

      tbody {
        tr:hover {
          background-color: #e7f2ff !important;

          td:not(.row-hotel) {
            background-color: transparent !important;
          }
        }
      }
    }

    .pkg-price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;

      th,
      td {
        border: 1px solid #ddd;
        padding: 14px 20px;
        text-align: center;
      }

      thead {
        background: linear-gradient(to left, var(--accent), #0d1236) !important;
        text-transform: uppercase;
        color: #fff !important;
        letter-spacing: 1px;

        th {
          background: transparent !important;
        }
      }

      tbody td {
        background: #fff;
        color: #555;
      }

      .row-hotel {
        font-weight: 600;
        color: #333;
        background: #f9f9f9;
      }
    }

    @media (max-width: 600px) {
      .pkg-price-table {
        display: block;

        thead {
          display: block;

          tr {
            display: grid;
            grid-template-columns: 1fr;
          }

          tr .col-sharing,
          tr .col-price {
            display: none;
          }

          tr .col-hotel {
            display: block;
            text-align: center;
            background: #f5f5f5;
            border-bottom: 1px solid #ddd;
          }
        }

        tbody {
          display: block;

          tr {
            display: grid;
            grid-template-columns: 1fr 1fr;
          }
        }

        .row-hotel {
          grid-column: 1 / -1;
          background: var(--accent);
          color: #fff;
          font-weight: 700;
          border-color: var(--accent);
        }

        tbody tr td:not(.row-hotel) {
          display: block;
        }
      }
    }
  }
}

/* ── TIMELINE ── */
.timeline-wrapper {
  position: relative;
  /* padding-left: 60px; */

  &::before {
    content: "";
    position: absolute;
    left: 24px;
    /* transform: translateX(-50%); */
    top: 0px;
    bottom: 0;
    width: 2px;
    background: var(--border);
    z-index: 0;
  }

  .timeline-box {
    position: relative;
    margin-bottom: 30px;
    padding-left: 75px;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    /* background-color: red; */

    &:last-child {
      margin-bottom: 0;
    }

    .timeline-step-wrap {
      z-index: 1;
      position: absolute;
      left: 0;
      top: 0;
      display: flex;
      column-gap: 15px;
      align-items: center;

      .step-number {
        width: 50px;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 10px;
        color: #fff;
        background: linear-gradient(var(--main-color-two), rgb(207, 0, 0));
        font-size: 17px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .info-main {
        display: flex;
        flex-wrap: wrap;

        span {
          width: fit-content;
          font-size: 14px;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          /* color: var(--accent); */
          padding: 0px 10px;
          height: fit-content !important;

          &:has(~ span) {
            border-right: 2px solid var(--border);
            /* &::after */
          }
        }
      }
    }

    .timeline-content {
      background: rgba(0, 69, 166, 0.08);
      border-radius: 12px;
      padding: 18px 20px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);


      .info--bar {
        display: flex;
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 8px;
        margin-bottom: 12px;

        .info-box {
          /* display: inline-flex; */
          align-items: center;
          gap: 4px;
          font-size: 13px;
          color: #555;
          background: #fff;
          border: 1px solid var(--main-color-two);
          padding: 4px 12px;
          border-radius: 6px;
          /* white-space: nowrap; */

          strong {
            color: var(--main-color-two);
            font-weight: 400;
          }
        }
      }

      .info--bar-btm {
        display: flex;
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 8px;
        margin-bottom: 12px;

        .info-box {
          /* display: inline-flex; */
          align-items: center;
          gap: 4px;
          font-size: 13px;
          color: #555;
          background: #fff;
          border: 1px solid var(--main-color-two);
          padding: 4px 12px;
          border-radius: 6px;
          /* white-space: nowrap; */

          strong {
            color: var(--main-color-two);
            font-weight: 400;
          }
        }
      }

      .timeline-note {
        background-color: #fff;
        /* border: 1.5px dashed var(--border); */
        border: 1.5px dashed var(--accent);
        border-radius: 8px;
        padding: 12px 28px;
        /* padding: 12px 14px; */
        margin-top: 4px;
        /* text-align: center; */

        h5 {
          font-size: 11px;
          font-weight: 700;
          text-transform: uppercase;
          color: #888;
          margin-bottom: 6px;
          display: none;
        }

        p {
          /* font-size: 13px; */
          color: #555;
          line-height: 1.6;
        }
      }
    }
  }
}

@media (max-width:700px) {
  .timeline-wrapper{
    &::before{left: 17px !important;}
.step-number{
  max-width:35px !important;
}
.timeline-box{
  padding-left: 40px !important;
  padding-top: 40px !important;
}
  }
  
}

@media (max-width:500px) {
.pkg-hero__meta{
  flex-direction: column !important;
}
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.44);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* ── GALLERY ── */
.pkg-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;

  @media (max-width: 600px) {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  li {
    list-style-type: none;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0px 0px 10px #ccc;
    max-height: 400px;
    opacity: 1;
    margin-bottom: 20px;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;

    &.video {
      position: relative;
      background-color: #000;

      &::before {
        content: '\f04b';
        --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: var(--fa-display, inline-block);
        font-family: var(--_fa-family);
        font-feature-settings: normal;
        font-style: normal;
        font-synthesis: none;
        font-variant: normal;
        font-weight: var(--fa-style, 900);
        line-height: 1;
        text-align: center;
        text-rendering: auto;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 60px;
        height: auto;
        aspect-ratio: 1/1;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 5;
        /* outline: 5px solid #ffffff72; */
        animation: pulse-animation 2s infinite;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
        cursor: pointer;

        /* color: var(--accent); */
        &:hover {
          rotate: 45deg;
        }
      }

      img {
        opacity: 0.7;
      }
    }

    a {
      display: block;
      width: 100%;
      height: 100%;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16/12;
      display: block;
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.04);
    }
  }

  li.gallery--hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    margin-bottom: 0px;
  }
}

.btn-gallery-toggle {
  display: block;
  margin: 16px auto 0;
  border: 0;
  color: var(--accent);
  background-color: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 0 10px;

  &::before,
  &::after {
    content: "";
    display: block;
    height: 2px;
    width: 51%;
    border-radius: 2px;
    background-color: var(--accent) !important;
    position: absolute;
    bottom: -5px;
    transition: all ease 0.3s;
  }

  &::before {
    left: 0;
    rotate: 10deg;
  }

  &::after {
    right: 0;
    rotate: -10deg;
  }

  &:hover::before,
  &:hover::after {
    rotate: 0deg;
  }

  &.active::before {
    rotate: -10deg;
  }

  &.active::after {
    rotate: 10deg;
  }
}

/* ── GALLERY ── */
.pkg-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;

  li {
    list-style-type: none;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0px 0px 10px #ccc;
    max-height: 400px;
    opacity: 1;
    margin-bottom: 20px;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;

    a {
      display: block;
      width: 100%;
      height: 100%;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16/12;
      display: block;
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.04);
    }
  }

  li.gallery--hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    margin-bottom: 0px;
  }
}

.btn-gallery-toggle {
  display: block;
  margin: 16px auto 0;
  border: 0;
  color: var(--accent);
  background-color: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 0 10px;

  &::before,
  &::after {
    content: "";
    display: block;
    height: 2px;
    width: 51%;
    border-radius: 2px;
    background-color: var(--accent) !important;
    position: absolute;
    bottom: -5px;
    transition: all ease 0.3s;
  }

  &::before {
    left: 0;
    rotate: 10deg;
  }

  &::after {
    right: 0;
    rotate: -10deg;
  }

  &:hover::before,
  &:hover::after {
    rotate: 0deg;
  }

  &.active::before {
    rotate: -10deg;
  }

  &.active::after {
    rotate: 10deg;
  }
}





/* ═══════════════════════════════════════
     VARIANT 1 — Horizontal List Strip
  ═══════════════════════════════════════ */
.footer__above-widget {
  margin: 0 auto;

  .container-xxl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .ft-above__col {
    color: inherit !important;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform 0.2s ease;
      border-radius: 0 2px 2px 0;
    }

    /* &::after {
      content: '';
      display: block;
      width: 100px;
      aspect-ratio: 1/1;
      position: absolute;
      left: -100px;
      top: 30%;
      transform-origin: center center;
      rotate: -45deg;
      transform: translateY(-50%);
      background-color: red;
      opacity: 0;
      transition: all ease 0.35s;
      box-shadow:
        10px 10px 1px rgb(255, 17, 17),
        20px 20px 1px rgb(255, 34, 34),
        30px 30px 1px rgb(255, 51, 51),
        40px 40px 1px rgb(255, 68, 68),
        50px 50px 1px rgb(255, 85, 85),
        60px 60px 1px rgb(255, 102, 102),
        70px 70px 1px rgb(255, 119, 119),
        80px 80px 1px rgb(255, 136, 136),
        90px 90px 1px rgb(255, 153, 153),
        100px 100px 1px rgb(255, 170, 170),
        110px 110px 1px rgb(255, 187, 187),
        120px 120px 1px rgb(255, 204, 204),
        130px 130px 1px rgb(255, 221, 221),
        140px 140px 1px rgb(255, 238, 238),
        150px 150px 1px rgb(255, 255, 255);
    } */

    .icon-wrap {
      position: relative;
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #fff0ef;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;

      svg {
        width: 20px;
        height: 20px;
        stroke: var(--main-color-two);
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
    }

    h5 {
      position: relative;
      z-index: 5;
      font-size: 16px;
      font-weight: 400;
      color: var(--text);
      font-family: var(--font-roboto-reg);
      transition: all 0.2s ease;
    }

    .arrow__icon {
      position: relative;
      z-index: 5;
      font-size: 18px;
      color: var(--main-color-two);
      opacity: 0;
      transition: opacity 0.2s, transform 0.2s;
      transform: translateX(-4px);
      margin-left: auto;
    }

    &:hover {
      border-color: #f0c0be;
      background: #fffbfb;
      transform: translateX(4px);
      box-shadow: -4px 0 0 var(--main-color-two);

      &::before {
        transform: scaleY(1);
      }

      /*&::after {
         opacity: 1;
            box-shadow:
  15px 15px 1px rgb(255, 17, 17),
  30px 30px 1px rgb(255, 34, 34),
  45px 45px 1px rgb(255, 51, 51),
  60px 60px 1px rgb(255, 68, 68),
  75px 75px 1px rgb(255, 85, 85),
  90px 90px 1px rgb(255, 102, 102),
  105px 105px 1px rgb(255, 119, 119),
  120px 120px 1px rgb(255, 136, 136),
  135px 135px 1px rgb(255, 153, 153),
  150px 150px 1px rgb(255, 170, 170),
  165px 165px 1px rgb(255, 187, 187),
  180px 180px 1px rgb(255, 204, 204),
  195px 195px 1px rgb(255, 221, 221),
  210px 210px 1px rgb(255, 238, 238),
  225px 225px 1px rgb(255, 255, 255);
      }
 h5{
  color: #ffff;
} */
 h5{
  color:var(--main-color-two);
}
      .arrow__icon {
        opacity: 1;
        transform: translateX(0);
      }
    }
  }
}


/* ADDED BY ABDUL SAMAD 19-JUN-2026 */
.country-package-filters {
    .section-title {
        text-align: center;
        font-size: clamp(23px, 5.8vw, 36px);
        color: var(--text-color);
        font-weight: bold;
        margin:0 1rem;
        margin-bottom: 50px;
        @media (min-width:500px) {
            br{display:none;}
        }
    }
    .filter-pill-row {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 32px;
        @media (max-width:400px) {
            gap:25px !important;
        }
        .filter-pill {
            position: relative;
            display: flex;
            flex-direction:column;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border: 1px solid #e2e2e2;
            border-radius: 22px;
            border-top-right-radius:0;
            cursor: pointer;
            transition: .2s;
              &:hover {
                border-color: #9ea3a9;
                background: #f7f7f7
            }

            img {
                width: 65px;
                height: auto;
                aspect-ratio:1/1;
                max-width: 50px;
                border-radius: 50%;
                object-fit: cover;
            }

            h5 {
                margin: 0;
                font-size: 14px;
                font-weight: 500;
                /* white-space: nowrap; */
                text-align:center;
            }

            i {
                position: absolute;
                top: -6px;
                right: -6px;
                background: #F90602;
                color: #fff;
                font-size: 11px;
                font-style: normal;
                font-weight: 600;
                min-width: 20px;
                height: auto;
                aspect-ratio:1/1;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2px;
                line-height:1;
            }
        }
    }
}


@media(max-width:991px) {
    .country-package-filters .filter-pill-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:575px) {
    .country-package-filters .filter-pill-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.custom_hover{
    border-color: #9ea3a9 !important;
    background: #f7f7f7
}
/* ADDED BY ABDUL SAMAD 19-JUN-2026 */