/* =====================
   HEADER / NAVIGATION
===================== */

.site-header {
  position: absolute;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 2px 0;
  margin: 0 auto;
  width: 100%;
}


.header-default {
  position: static;
}

.common-banner {
  position: relative;
  z-index: 1;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 24px;
  position: relative;
  z-index: 9;
}


.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;

}

.site-header.scrolled::after {
  opacity: 0;
}

.site-header.scrolled .nav-menu a,
.site-header.scrolled .site-title a {
  color: black !important;
}

.site-header.scrolled a {
  color: black !important;
}

.header-cta .btn-book-now {
  color: #fff;
}

.site-branding {
  flex-shrink: 0;
  padding: 5px 0;
}

.custom-logo {
  width: 220px;
  height: auto;
  display: block;
}

.site-header.scrolled .nav-menu a,
.site-header.scrolled a::after {
  color: black !important;
}



/* --- Nav layout (desktop) --- */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}


.header-default .fa-chevron-down::before {
  display: none;
}


.main-navigation .nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-menu>li {
  position: relative;
}

.main-navigation .nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 0;
  font-family: var(--secondary-font);

  font-style: normal;
  text-decoration: none;
  line-height: 20px;
}

.main-navigation .nav-menu>li>a:hover {
  color: var(--secondary) !important;
}

/* --- Dropdown caret --- */

.main-navigation>div>ul>li.menu-item-has-children>a::after,
.main-navigation>div>ul>li>ul>li.menu-item-has-children>a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  /* color: #fff; */
  display: block;
  /* margin: 4px 0 0 3px; */
  transition: transform 0.3s ease;
}

.main-navigation>div>ul>li.menu-item-has-children:hover>a::after,
.main-navigation>div>ul>li>ul>li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
}


.site-header.scrolled .header-cta a {
  color: #fff !important;
}


/* --- CTA button --- */
.header-cta {
  flex-shrink: 0;
}


.btn-outline {
  color: var(--secondary) !important;
  border: 1px solid #fff !important;
  background: #fff !important;
}

.btn-outline:hover {
  background: var(--secondary) !important;
  color: #fff !important;
}

.btn-book-now {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  width: fit-content;
}

.btn-book-now:hover {
  background: var(--color-yellow);
  color: #fff;
}

.trek-booking-card .card-buttons {
  margin: 18px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.card-buttons .btn-book-now,
.card-buttons .btn-outline {
  width: 100%;
  text-align: center;
  font-size: 13px;
}


/* new ham  */
/* .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10000;
} */

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2d7fa3;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navRight>a {
  margin-left: 10px;
  font-size: 14px;
}

.navRight>a span {
  display: none;
}

.single__title h1 {
  font-size: 50px;
  line-height: 60px;

}

@media (max-width: 1140px) {
  .footer__mountain {
    width: 300px;
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

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

  .navRight .burger__menu {
    margin-right: 10px;
    display: none;
  }



}


/* ============ SUBMENU DROPDOWN ARROW ============ */
#primary-menu .menu-item-has-children {
  position: relative;
}


/* --- Hamburger button (hidden on desktop) --- */
.main-navigation .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.main-navigation .menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navigation .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.main-navigation .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.main-navigation .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-default #primary-menu a {
  color: black;
}

.burger__menu {
  display: none;
}

/* =====================
   RESPONSIVE BREAKPOINTS
===================== */
@media (max-width: 1200px) {
  .main-navigation .menu-toggle {
    display: flex;
  }

  #primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }

  #primary-menu.toggled-on {
    display: flex;
    height: 100vh !important;
  }

  #primary-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  #primary-menu a {
    padding: 14px 20px;
    color: black;
  }

  .main-navigation {
    flex-basis: 100%;
    justify-content: flex-end;
  }

  .main-navigation .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 12px 0;
  }

  .main-navigation.toggled .nav-menu {
    display: flex;
  }

  .main-navigation .nav-menu>li {
    width: 100%;
  }

  .main-navigation .nav-menu>li>a {
    width: 100%;
    padding: 12px 0;
    justify-content: space-between;
  }

  #primary-menu .sub-menu li {
    border-bottom: none;
  }


  .main-navigation .menu-item-has-children>a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    display: block;
    margin: 4px 0 0 3px;
  }


  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    display: block;
    transition: max-height 0.25s ease;
  }

  .main-navigation .menu-item-has-children.submenu-open>.sub-menu {
    max-height: 500px;
    padding: 4px 0 8px 16px;
  }

  .main-navigation .menu-item-has-children>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }

}





@media (max-width: 480px) {
  .btn-book-now {
    font-size: 13px;
  }

  .popular-trips .btn-book-now {
    margin-bottom: 20px !important;
  }

  .custom-logo {
    width: 180px !important;
  }

  .travel-adventure .adventure-images {
    min-height: 0 !important;
  }

  .travel-style .subtitle {
    margin: 0 auto 15px !important;
  }

  .individual-tours-section .subtitle {
    margin: 0 auto 15px !important;
  }

  .travel-stories .subtitle {
    margin: 0 auto 15px !important;
  }

  .site-header {
    position: fixed;
  }

  .common-banner {
    height: 55vh;
  }

  .popular-trips .title-main p {
    margin: 0 auto 10px;
  }

  .banner-title {
    font-size: 28px !important;
  }
}


@media(max-width: 360px) {
  .banner-section {
    height: 350px !important;
  }

  .popular-trips .title-main p {
    margin: 0 auto 10px !important;
  }

  .cta-section {
    padding: 25px 5px;
  }

  .trip-info {
    grid-template-columns: 1fr 2fr;
    padding: 24px 5px;

  }

  .info-value {
    font-size: 14px;
  }

}


/* =====================
   BANNER SECTION
===================== */

.banner-section {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

/* --- Swiper slider background --- */
.banner-section .banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-section .banner-slider .swiper-wrapper,
.banner-section .banner-slider .swiper-slide {
  height: 100%;
}

.banner-section .banner-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay for legibility */
.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* --- Content overlay --- */
.banner-section .banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.banner-section .banner-content .container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  color: #ffffff;
  font-size: 67px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* --- Search form pushed toward bottom --- */
.banner-section .search-form {
  margin-top: auto;
  margin-bottom: 190px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.banner-section .search-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.banner-section .search-wrapper .column-4 {
  flex: 0 1 auto;
}

.banner-content>.container>div[class="column-4"] {
  display: flex;
  justify-content: center;
}

/* --- Glass pill dropdowns --- */
.banner-section .custom-select {
  position: relative;
}

.banner-section .custom-select select {
  min-width: 240px;
  height: 45px;
  padding: 0 44px 0 24px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: var(--secondary-font);
}

.banner-section .custom-select select option {
  color: #1a1a1a;
  font-family: var(--secondary-font);
}

.banner-section .custom-select select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
}

.banner-section .custom-select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* --- Search button (darker glass pill) --- */
.banner-section .search-wrapper button[type="submit"] {
  height: 45px;
  padding: 0 48px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: var(--secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

.banner-section .search-wrapper button[type="submit"]:hover {
  background: var(--color-yellow);
  color: #fff;
  border: none;
}


.elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 3;
}

.elementor-shape-bottom {
  bottom: -1px;
}

.elementor-shape[data-negative="false"].elementor-shape-bottom,
.elementor-shape[data-negative="true"].elementor-shape-top {
  transform: rotate(180deg);
}

.elementor-shape .elementor-shape-fill {
  fill: #ffffff;
  transform-origin: center;
  transform: rotateY(0deg);
}

.elementor-shape svg {
  display: block;
  width: 100%;
  /* height: 100px; */
  height: 60px;
}

/* =====================
   RESPONSIVE BREAKPOINTS
===================== */

@media (max-width: 1024px) {
  .banner-section .custom-select select {
    min-width: 200px;
  }

  .you-may-like-section {
    padding: 20px 0 40px;

  }

}

@media (max-width: 768px) {
  .banner-section {
    height: 75vh;
    min-height: 550px;
  }

  .banner-section h1 {
    font-size: 30px;
    margin-top: -4vh;
  }

  .banner-section .search-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .banner-section .search-wrapper .column-4 {
    width: 100%;
  }

  .banner-section .custom-select,
  .banner-section .custom-select select {
    width: 100%;
    min-width: 0;
  }

  .banner-section .search-wrapper button[type="submit"] {
    width: 100%;
  }

  .elementor-shape svg {
    height: 60px;
  }

  #primary-menu .header-cta {
    padding: 14px 20px;
  }

  #primary-menu .header-cta .btn-book-now {
    color: #fff !important;
  }

  .travel-adventure .adventure-image-secondary {
    display: none;
  }

  .travel-adventure .adventure-image-main {
    width: 100% !important;
  }

  .cta-section {
    padding: 70px 20px;
  }

  .trip-gallery .grid .column-4 {
    grid-column: span 6;

  }
}


/* new css  */
@media (max-width: 480px) {
  .banner-section {
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
  }

  /* IMAGE BLOCK */
  .banner-section .banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .banner-section .swiper-wrapper {
    height: 100%;
  }

  .banner-section .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .banner-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .banner-section .banner-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
    pointer-events: none;
  }

  .banner-section .banner-content {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
  }

  .banner-section .banner-content .container {
    max-width: 100%;
    padding: 20px 0;
    margin: 0;
    background: var(--secondary);
  }

  .banner-section>.banner-content h1 {
    position: absolute;
    top: 40%;
    bottom: auto;
    z-index: 2;
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
  }

  .banner-section .search-form {
    position: static;
    display: block;
    padding: 16px;
    margin: 0;
    z-index: 1;
  }

  .banner-section .search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .banner-section .search-wrapper .column-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .banner-section .search-wrapper .column-4 button {
    width: 100%;
    background: var(--color-yellow);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: background 0.2s ease;
  }

  .banner-section .search-wrapper .column-4 button:hover {
    background: var(--secondary);
  }

  .banner-section .elementor-shape-bottom {
    display: none;
  }

  .travel-style .swiper-button-prev,
  .travel-style .swiper-button-next {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (max-width: 435px) {
  .banner-section {
    min-height: 470px !important;
  }
}

@media (max-width: 480px) {
  .banner-section h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .banner-section .custom-select select,
  .banner-section .search-wrapper button[type="submit"] {
    height: 45px;
    font-size: 14px;
  }

  .elementor-shape svg {
    height: 40px;
  }

  .banner-section {
    height: 55vh;
  }

  .popular-trips .subtitle {
    margin: 0 auto 15px !important;
  }

  .popular-trips .tour-card>a:first-of-type {
    height: auto !important;
  }

  .gateway-journey .media-inner img {
    height: 315px !important;
  }

  .travel-style .style-card {
    height: 320px !important;
  }

  .banner-section .search-form {
    background: none !important;
  }

  .banner-section .search-form {
    width: 100%;
  }
}


/* destination section  */
.title-main h2 {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--secondary);
  margin-bottom: 20px;
  width: 100%;

}

.title-main {
  max-width: 100%;
  width: 100%;
}


p {
  margin-top: 10px;
  font-weight: 400;
  font-family: var(--secondary-font);
  font-size: 15px;
  line-height: 28px;
  color: #1a1a1a;
}

.card {
  position: relative;
  overflow: hidden;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 10px;
  height: 320px;
}

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

.card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.inner-border {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid #fff;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.4s ease;
}

.text-wrap {
  text-align: center;
  color: #fff;
  padding: 18px;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.text-wrap h3 {
  color: #ffffff;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

.text-wrap p {
  color: #ffffff;
  font-style: italic;
  font-family: var(--secondary-font);
  margin: 0 auto;
  font-size: 15px;
  font-weight: 300;
  max-width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;

  /* color: #ffffff;
  font-style: italic;
  font-family: var(--secondary-font);
  margin: 0 auto;
  margin-top: 0px;
  font-size: 16px;
  font-weight: 300;
  max-width: 100%; */
  /* opacity: 1; */
  /* max-height: none; */
  /* overflow: visible; */
  /* 
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease; */

}

.card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.card:hover .inner-border {
  opacity: 1;
  transform: scale(1);
}

.card:hover .text-wrap p {
  opacity: 1;
  max-height: 100px;
  margin-top: 12px;


  /* max-height: 500px; */
}

.card:hover img {
  transform: scale(1.1);
}


.destination-search-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  background-color: #f8f8f8;
  padding: clamp(20px, 2vw, 25px);
  border-radius: 8px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.19);
  margin-bottom: clamp(35px, 4vw, 65px);
}

.destination-search-wrapper .box {
  width: 100%;
  max-width: 400px;
}

.destination-search-wrapper .custom-select select,
.destination-search-button {
  width: 100%;
  padding: 14px 20px;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid #ccc;
  height: auto;
  min-height: 50px;
  font-family: var(--secondary-font);
  font-weight: 500;
  background: #fff;
}

.destination-search-button {
  background: var(--secondary);
  color: #fff;
  border: none;
}

.destination-search-button:hover {
  background: var(--color-yellow);
}

/* POPULAR TRIPS SECTION */
.popular-trips .title-main h2 {
  text-align: center;
}

.popular-trips .title-main p {
  margin: 0 auto 45px;
  text-align: center;
  max-width: 720px;

}

/* --- Card --- */
.popular-trips .tour-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* min-height: 520px; */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popular-trips .tour-card .wrap {
  flex-grow: 1;
}

.popular-trips .tour-card .bottom {
  margin-top: auto;
}

.popular-trips .tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* --- Image --- */
.popular-trips .tour-card>a:first-of-type {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;

  /* width: 100%; */
  /* height: 250px; */
  object-fit: cover;
  border-radius: 20px;
  padding: 10px;
}

.popular-trips .tour-card>a:first-of-type img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 10px;
}



.popular-trips .popular-trips-box {
  backdrop-filter: blur(4px);
  position: absolute;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  border-radius: 20px;
  top: 25px;
  right: 25px;
  background: var(--secondary);
}

/* --- Text content --- */
.popular-trips .wrap {
  padding: 20px 20px 0;
}

.popular-trips .small-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.popular-trips .small-title a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}



/* --- Divider --- */
.popular-trips .divider {
  border: none;
  border-top: 1px solid #ececec;
  margin: 20px 0 0;
}

/* --- Bottom row: days + explore --- */
.popular-trips .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 20px;
}

.popular-trips .days {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2a2d2c;
}

.popular-trips .days svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.popular-trips .explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
  text-transform: capitalize;
}

.popular-trips .explore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.popular-trips .explore:hover {
  background: var(--secondary);
  color: #ffffff;
}

.popular-trips .explore:hover svg {
  transform: translateX(3px);
}

.popular-trips-section .container>.btn-book-now,
.popular-trips .btn-book-now {
  display: table;
  margin: 40px auto 0;
  text-align: center;
}

/* =====================
   RESPONSIVE BREAKPOINTS
===================== */

@media (max-width: 1024px) {

  .popular-trips .title-main h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .popular-trips .section-inner {
    padding: 150px 0 20px !important;
  }

  .popular-trips .tour-card>a:first-of-type {
    height: auto;
  }

  .section {
    padding: 20px 0 20px;
  }

  .section-inner {
    padding: 20px 0;
  }

  .popular-trips .small-title {
    font-size: 18px;
  }

  .faq-section {
    padding-bottom: 0;
  }

  .faq-section .title-main h2 {
    margin-bottom: 0;
  }

  .you-may-like-heading-wrap .title-main h2 {
    margin-bottom: 0;
  }
}



@media (max-width: 600px) {

  .popular-trips .title-main {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .cta-buttons .btn-main,
  .cta-buttons .btn-book-now {
    width: 100% !important;
  }
}

@media (max-width: 380px) {
  .popular-trips .bottom {
    flex-wrap: wrap;
    gap: 12px;
  }

  .popular-trips .explore {
    width: 100%;
    justify-content: center;
  }
}

/* Customized Travel Adventure  section */
.travel-adventure {
  background-color: #f4f3ef;
  overflow: hidden;
}

.travel-adventure .btn-book-now {
  margin-top: 20px;
}

.travel-adventure .flex-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.travel-adventure .content {
  flex: 1;
  max-width: 480px;
}

.top-text {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 15px;
  font-family: var(--secondary-font);
}



.travel-adventure .partner-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.travel-adventure .partner-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.travel-adventure .adventure-images {
  position: relative;
  flex: 1;
  max-width: 60%;
  min-height: 380px;
}

.travel-adventure .adventure-image-main {
  width: 70%;
  border-radius: 10px;
  display: block;
}

.travel-adventure .adventure-image-secondary {
  position: absolute;
  top: -5%;
  right: 0;
  width: 42%;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.travel-adventure .adventure-decor {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 90px;
  opacity: 0.9;
}

.travel-adventure .feature-strip {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.travel-adventure .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.travel-adventure .feature-item img {
  width: 30px;
  height: 30px;
}

.travel-adventure .feature-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
  .travel-adventure .flex-content {
    display: flex;
    flex-direction: column;
  }


  .travel-adventure .content {
    display: contents;
    max-width: 100%;
  }


  .travel-adventure .top-text {
    order: 1;
    align-self: flex-start;
  }


  .travel-adventure .title-main {
    order: 2;
    align-self: flex-start;
  }

  .travel-adventure .short-divider {
    order: 3;
    margin: 20px 0;
    align-self: flex-start;
  }

  .travel-adventure .adventure-images {
    order: 4;
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
  }

  .travel-adventure .content p {
    order: 5;
  }

  .travel-adventure .btn-book-now {
    order: 6;
    align-self: flex-start;
  }

}

@media (max-width: 576px) {
  .travel-adventure .title-main {
    font-size: 28px;
  }

  .travel-adventure .sub-text {
    font-size: 18px;
  }

  .travel-adventure .adventure-image-secondary {
    width: 50%;
  }

  .travel-adventure .feature-strip {
    gap: 20px;
  }

  .travel-adventure .partner-logos img {
    height: 36px;
  }

  .banner-section {
    height: 65vh;
    min-height: 550px;
  }

  .banner-section h1 {
    margin-top: -10vh;
  }

  .main-navigation .menu-toggle {
    width: 22px;
    height: 22px;
  }


  .title-main h2 {
    font-size: 24px !important;

  }
}

/* Individual Tours & Trips section  */

.individual-tours-section {
  padding-top: 80px;
}

.individual-tours-section p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 35px;
  color: #fff;
  letter-spacing: 0.8px;
}

.individual-tours {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed !important;
}

.individual-tours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 18, 22, 0.55);
}


.individual-tours .in-border {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid rgba(64, 180, 220, 0.6);
  pointer-events: none;
}

.individual-tours .content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
}

.top-text-black {
  color: #111;
}

.individual-tours .title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0 0 22px;
}


/* Responsive */
@media (max-width: 768px) {
  .individual-tours {
    min-height: 320px;
  }

  .individual-tours .content-box {
    padding: 50px 16px;
  }

  .individual-tours .title {
    font-size: 24px;
  }

  .individual-tours .in-border {
    top: 16px;
    left: 12px;
    right: 12px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .individual-tours .title {
    font-size: 19px;
  }

  .individual-tours .top-text {
    font-size: 10px;
  }

  .individual-tours .btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .travel-stories .stories-cta {
    margin-top: 20px !important;
  }

  .popular-trips .section-inner {
    padding: 20px 0 20px !important;
  }

  .sticky-tabs {
    top: 63px;
  }

  .itinerary-top-title h1 {
    font-size: 26px !important;
  }
}


.section-top {
  padding-top: 140px;
}

/* about us section  */
.gateway-journey {
  background-color: #f4f3ef;
  overflow: hidden;
}

.gateway-journey .btn-book-now {
  margin-top: 20px;
}

.gateway-journey .flex-content {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.gateway-journey .content {
  flex: 0 0 38%;
  max-width: 38%;
}


.gateway-journey .stat-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #ddd9cd;
}

.gateway-journey .stat-item {
  display: flex;
  flex-direction: column;
}

.gateway-journey .stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
}

.gateway-journey .stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

/* Media / image side */
.gateway-journey .media-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.gateway-journey .media-image {
  width: 88%;
  max-width: 640px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  display: block;
}

.gateway-journey .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.gateway-journey .play-btn-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 3px;
}

.gateway-journey .play-btn-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: gj-pulse 2.2s ease-out infinite;
}

@keyframes gj-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.gateway-journey .media-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.gateway-journey .media-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gateway-journey .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
}

.video-modal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-modal-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .video-modal-close {
    top: -36px;
    font-size: 26px;
  }

  .travel-adventure .adventure-image-main {
    width: 100%;
  }

}


/* Responsive */
@media (max-width: 992px) {
  .gateway-journey .flex-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .gateway-journey .content {
    display: contents;
    flex: 1 1 100%;
    max-width: 100%;
    text-align: left;
  }

  /* Assign order to every now-promoted child */
  .gateway-journey .top-text {
    order: 1;
  }

  .gateway-journey .title-main {
    order: 2;
  }

  .gateway-journey .short-divider {
    order: 3;
    margin: 20px 0;
  }

  .gateway-journey .media-wrap {
    order: 4;
    margin-bottom: 20px;

    margin-left: 0;
    justify-content: center;
    width: 100%;

  }

  .gateway-journey .media-inner {
    width: 100%;
    max-width: 100%;
  }

  .gateway-journey .content p {
    order: 5;
  }

  .gateway-journey .btn-book-now {
    order: 6;
    width: fit-content;
  }

  .gateway-journey .video-modal {
    order: 7;
  }

  .gateway-journey .media-image {
    width: 100%;
    max-width: 100%;
    height: 360px;
  }

  .gateway-journey .play-btn {
    left: 50%;
  }
}



@media (max-width: 576px) {
  .gateway-journey {
    padding: 45px 0;
  }

  .gateway-journey .title-main {
    font-size: 22px;
  }

  .gateway-journey .media-image {
    height: 240px;
  }

  .gateway-journey .play-btn {
    width: 50px;
    height: 50px;
  }

  .gateway-journey .play-btn-icon {
    border-width: 7px 0 7px 11px;
  }

  .gateway-journey .stat-row {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

/* Choose your Travel Style  section */


.travel-style .title-main h2 {
  text-align: center;
}

.travel-style p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
  font-family: var(--secondary-font);
}

.travel-style-slider {
  padding: 6px 6px 55px;
}

.travel-style .style-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  border: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.travel-style .style-card:hover {
  transform: translateY(-6px);
}


.travel-style .card-image {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.travel-style .card-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}



.travel-style-trips-box {
  backdrop-filter: blur(4px);
  position: absolute;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;

  font-weight: 700;
  z-index: 2;
  border-radius: 20px;
  top: 20px;
  right: 20px;
  background: var(--secondary);
}


.travel-style .card-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0 20px 28px;
  z-index: 2;
}

.travel-style .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary);
  font-size: 17px;
  margin-bottom: 14px;
}

.travel-style .card-footer h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-family: var(--secondary-font);
}

.travel-style .card-footer p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.card-footer img {
  width: 25px;
  height: 25px;
}



.travel-style .swiper-button-prev,
.travel-style .swiper-button-next {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--secondary);
  top: 45%;
  align-items: center;
  top: 50%;
  bottom: 50%;
}

.travel-style .swiper-button-prev::after,
.travel-style .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .travel-style .style-card {
    height: 420px;
  }

  .travel-style .title-main {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .travel-style {
    padding: 50px 0;
  }

  .travel-style .title-main {
    font-size: 24px;
  }

  .travel-style .subtitle {
    font-size: 13px;
  }

  .travel-style .style-card {
    height: 380px;
  }
}

/* travel stories section  */
.travel-stories {
  position: relative;
  background-color: var(--secondary);
  border-radius: 0 0 0 0;
}

.travel-stories-top-content p {
  margin: 0 auto 45px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
  color: #fff;
}

.travel-stories .title-main {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}


.travel-stories .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.travel-stories .story-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-stories .story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.travel-stories .story-image {
  position: relative;
  height: 310px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.travel-stories .story-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.travel-stories .story-tag {
  position: relative;
  align-self: flex-start;
  margin: 16px;
  background: var(--color-yellow);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.travel-stories .story-overlay {
  position: relative;
  z-index: 2;
  padding: 0 18px 18px;
}

.travel-stories .story-date {
  display: block;
  color: var(--color-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.travel-stories .story-title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  text-transform: capitalize;
}

.travel-stories .stories-cta {
  text-align: center;
  margin-top: 44px;
}


/* Responsive */
@media (max-width: 992px) {
  .travel-stories .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-stories .story-card:last-child {
    grid-column: span 2;
  }

  .travel-stories .story-image {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .travel-stories {
    padding: 70px 0 50px;
  }

  .travel-stories::before {
    height: 40px;
  }

  .travel-stories .title-main {
    font-size: 22px;
  }

  .travel-stories .stories-grid {
    grid-template-columns: 1fr;
  }

  .travel-stories .story-card:last-child {
    grid-column: span 1;
  }

  .travel-stories .story-image {
    height: 240px;
  }

  .travel-stories .story-title {
    font-size: 15px;
  }
}


/* footer  */
#colophon.site-footer {
  color: #111;
}


#colophon a {
  text-decoration: none;
}


/* Main footer grid */
#colophon .footer-main {
  padding: 60px 0 40px;
}

#colophon .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
}

#colophon .footer-col h4 {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: var(--secondary-font);
}

#colophon .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#colophon .footer-col ul li {
  margin-bottom: 12px;
}

#colophon .footer-col ul li a {
  color: #111;
  font-size: 14px;
  transition: color 0.3s ease;
}

#colophon .footer-col ul li a:hover {
  color: var(--color-yellow);
}

#colophon .footer-col .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

#colophon .footer-col .contact-list li i {
  color: var(--secondary);
  margin-top: 3px;
  min-width: 14px;
}

#colophon .footer-col .contact-list li a {
  color: #111;
}

#colophon .footer-col .contact-list li a:hover {
  color: var(--secondary);
}

/* Brand column */
#colophon .footer-brand .footer-logo {
  height: 56px;
  margin-bottom: 14px;
}

#colophon .footer-brand {
  padding-right: 95px;
}

#colophon .footer-brand .footer-tagline {
  display: block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

#colophon .footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
  color: #111;
}

#colophon .footer-socials {
  display: flex;
  gap: 12px;
}

#colophon .footer-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#colophon .footer-socials .social-icon:hover {
  background: #f2a93b;
  color: #fff;
  border: none;
  transform: translateY(-3px);
}

/* Bottom bar */
#colophon .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

#colophon .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

#colophon .footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: #9bb0bd;
}

#colophon .footer-bottom-links {
  display: flex;
  gap: 22px;
}

#colophon .footer-bottom-links a {
  font-size: 13px;
  color: #9bb0bd;
  transition: color 0.3s ease;
}

#colophon .footer-bottom-links a:hover {
  color: #f2a93b;
}

#colophon .site-info {
  font-size: 12px;
  color: #444;
  padding: 20px 0;
  border-top: 1px solid #5555551c;

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.site-info p {
  margin: 0;
  font-size: 12px;
}


#colophon .site-info a {
  color: #444;
}

#colophon .site-info a:hover {
  text-decoration: underline;
}



/* Responsive */
@media (max-width: 992px) {
  #colophon .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }

  #colophon .footer-brand {
    grid-column: span 3;
  }

  #colophon .footer-newsletter .container {
    justify-content: center;
    text-align: center;
  }

  #colophon .newsletter-form {
    width: 100%;
    justify-content: center;
  }

  #colophon .site-info {
    padding: 20px 0 85px;
  }



}


@media (max-width: 768px) {
  #colophon .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #colophon .footer-brand {
    grid-column: span 2;
    padding-right: 0;
  }

  .itinerary-top-title h1 {
    font-size: 32px;
    margin: 0;
  }
}

@media (max-width: 576px) {
  #colophon .footer-newsletter {
    padding: 28px 0;
  }

  #colophon .newsletter-form {
    flex-direction: column;
  }

  #colophon .newsletter-form input {
    width: 100%;
  }

  #colophon .newsletter-form button {
    width: 100%;
  }

  #colophon .footer-main {
    padding: 44px 0 30px;
  }

  #colophon .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #colophon .footer-brand {
    grid-column: span 1;
  }

  #colophon .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content p {
    margin: 0 auto 15px;
  }
}


/* common banner breadcrumb  */
.common-banner {
  position: relative;
}

.common-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 25%;
  background: linear-gradient(to bottom, #0000009c, transparent)
}


.common-banner-content {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.banner-title {
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.breadcrumb ul li {
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb ul li a {
  color: #cfcfcf;
  text-decoration: none;
}

.breadcrumb ul li a:hover {
  color: #fff;
}

.breadcrumb ul li.separator {
  color: #cfcfcf;
  margin: 0 10px;
  font-weight: 400;
}

.breadcrumb ul li.active {
  color: #fff;
  font-weight: 600;
}

.offcanvas {
  display: none;
}

.main-navigation>div>ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation>div>ul>li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-navigation>div>ul>li>a,
.sub-menu>li>a {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-navigation>div>ul>li>a {
  padding: 10px 0;
}

.main-navigation>div>ul>li>ul {
  background: #fff;
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, .15);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, .15);
  left: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 170%;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  visibility: hidden;
  width: 250px
}


.main-navigation>div>ul>li>ul:after {
  border: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-top: none;
  content: " ";
  left: 10px;
  position: absolute;
  top: -7px
}

.main-navigation>div>ul>li:hover>ul {
  opacity: 1;
  top: 100%;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  visibility: visible;
  z-index: 1000
}

.main-navigation>div>ul>li>ul>li>a,
.main-navigation>div>ul>li>ul>li>ul>li>a {
  border-bottom: 1px solid #eee;
  color: #303030;
  font-size: 13px;
  padding: 14px 20px
}

.main-navigation>div>ul>li>ul>li.menu-item-has-children>a::after {
  content: "\f054";
  margin-left: auto;
  color: #111;
}

.main-navigation>div>ul>li>ul>li>a:hover {
  color: var(--primary)
}

.main-navigation>div>ul>li>ul>li>ul {
  background: #fff;
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, .15);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, .15);
  left: 120%;
  list-style: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  visibility: hidden;
  width: 250px
}

.main-navigation>div>ul>li>ul>li:hover>ul {
  opacity: 1;
  left: 100%;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  visibility: visible;
  z-index: 1000
}



@media (max-width: 992px) {

  .offcanvas,
  .burger__menu {
    display: block
  }

  .offcanvas {
    left: -100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
    width: 100%;
    z-index: 100000
  }

  .offcanvas.show {
    left: 0;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
  }

  .offcanvas:after {
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background: #000c;
    content: "";
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    top: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 100%
  }

  .offcanvas .offcanvas__bar {
    height: 100%;
    left: -100%;
    position: relative;
    position: absolute;
    top: 0;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition: all .6s linear;
    -o-transition: all .6s linear;
    transition: all .6s linear;
    width: 100%;
    z-index: 10
  }

  .offcanvas .offcanvas__bar .offcanvas__sidebar {
    background: #fff;
    height: 100%;
    min-width: 300px;
    overflow-y: auto;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 10
  }

  .offcanvas .offcanvas__bar.showbar {
    left: 0
  }

  .offcanvas__logo {
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background: #fffc;
    -webkit-box-shadow: inset 0 -1px 0 0 #eaeaea;
    box-shadow: inset 0 -1px 0 0 #eaeaea;
    padding: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10
  }

  .offcanvas__logo .custom-logo-link {
    display: block;
    text-align: center
  }

  .offcanvas__logo a img {
    margin: 0 auto;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    width: 180px
  }

  .offcanvas__close {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    left: 310px;
    position: absolute;
    top: 10px;
    width: 50px;
    z-index: 100;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
  }

  .offcanvas__close .offcanvas__icon {
    line-height: 0;
    width: 20px
  }

  .offcanvas__close .offcanvas__icon span {
    background: #bf1d2e;
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: top;
    width: 20px
  }

  .offcanvas__close .offcanvas__icon span+span {
    margin-top: 5px
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:first-child {
    -webkit-animation: icon1 .7s ease .6s forwards;
    animation: icon1 .7s ease .6s forwards
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
    -webkit-animation: icon2 .7s ease .6s forwards;
    animation: icon2 .7s ease .6s forwards
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
    -webkit-animation: icon3 .7s ease .6s forwards;
    animation: icon3 .7s ease .6s forwards
  }

  @-webkit-keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    to {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg)
    }
  }

  @keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    to {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg)
    }
  }

  @-webkit-keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0)
    }

    to {
      -webkit-transform: scale(0);
      transform: scale(0)
    }
  }

  @keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0)
    }

    to {
      -webkit-transform: scale(0);
      transform: scale(0)
    }
  }

  @-webkit-keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    to {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg)
    }
  }

  @keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }

    to {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg)
    }
  }

  .offcanvas ul {
    list-style-type: none;
    margin: 0;
    padding: 0
  }

  #primary-menu1 {
    padding: 0
  }

  #primary-menu1>li>a {
    color: #666;
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize
  }

  #primary-menu1>li>ul,
  #primary-menu1>li>ul>li>ul {
    display: none
  }

  #primary-menu1 li {
    cursor: pointer;
    position: relative
  }

  #primary-menu1>li {
    border-bottom: 1px solid #eee
  }

  #primary-menu1>li a.show-active,
  #primary-menu1>li.menu-item-has-children ul li a.show-active,
  #primary-menu1>li:hover>a,
  #primary-menu1>li>a:hover {
    background: #00000012
  }

  #primary-menu1>li>ul>li:hover {
    background: hsla(0, 0%, 100%, .1)
  }

  #primary-menu1 li.menu-item-has-children span {
    background: #fff;
    color: var(--secondary);
    height: 43px;
    position: absolute;
    right: 0;
    top: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 43px
  }

  #primary-menu1 li.menu-item-has-children span i {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  #primary-menu1 li.menu-item-has-children>ul {
    background: var(--secondary)
  }

  #primary-menu1 li.menu-item-has-children>ul>li.menu-item-has-children>ul {
    background: var(--teritary);
    border-bottom: 1px solid transparent;
    border-radius: 0;
    padding: 0
  }

  #primary-menu1>li.menu-item-has-children>span {
    top: 21px
  }

  #primary-menu1>li.menu-item-has-children ul li a {
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 30px;
    text-transform: capitalize
  }

  #primary-menu1>li.menu-item-has-children ul li:last-child a {
    border-bottom: none
  }

  #primary-menu1>li ul li:hover>a {
    background: #0000000d;
    color: var(--secondary)
  }

  #primary-menu1>li.menu-item-has-children ul li:hover a {
    color: #fff
  }

  #primary-menu1>li.menu-item-has-children ul li.menu-item-has-children ul li a {
    padding-left: 40px
  }

  #primary-menu1>li.menu-item-has-children ul li.menu-item-has-children ul li.menu-item-has-children ul li a {
    padding-left: 60px
  }

  .burger__menu {
    color: #fff;
    display: inline-block;
    font-size: 25px;
    padding: 17px 0
  }
}