/* Font overrides */
:root {
  --font-primary: "Open Sans", sans-serif;
  --font-headings: "Poppins", sans-serif;
}

/* Apply heading font to all headings */
h1, h2, h3, h4, h5, h6,
.text-30, .text-24, .text-20, .text-18, .text-16,
.hero__title, .blogCard__title, .featureIcon__title,
.tourCard__title, .footer h4 {
  font-family: var(--font-headings);
}

/* Typography enhancements */
.text-30 {
  letter-spacing: -0.5px;
}

.hero__title {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.featureIcon__title {
  font-weight: 600;
}

.featureIcon__text {
  line-height: 1.6;
}

.blogCard__title {
  font-weight: 600;
}

.tourCard__title {
  letter-spacing: -0.3px;
}

/* Custom styles for increased menu bar size and portrait logo */
.header.-type-1 .header__container {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.logo-portrait {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

/* Preloader logo styles */
.preloader-logo {
  max-width: 40px;
  height: auto;
  object-fit: contain;
}

/* Mobile header styles */
@media (max-width: 991px) {
  .header.-type-1 .header__container {
    padding: 5px 20px;
    padding-top: 70px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .header__logo {
    margin-right: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    height: auto;
  }
  
  .logo-portrait {
    max-height: 130px;
    width: auto;
    margin-bottom: 10px;
  }
  
  .headerMobile__right {
    display: flex;
    align-items: center;
  }
  
  .header__menuBtn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(235, 102, 43, 0.1);
    color: #EB662B;
  }
  
  .header__menuBtn i {
    font-size: 22px;
  }
}

/* Search form icon centering fix */
.searchFormItem__icon.size-34 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
  overflow: visible;
}

.searchFormItem__icon.size-34 i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  display: block;
  width: auto;
  height: auto;
  font-size: 18px !important;
}

/* Fix for all search form icons */
.searchFormItem__icon {
  position: relative;
}

.searchFormItem__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Preloader mobile styles */
.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preloader__wrap {
  margin-bottom: 15px;
}

.preloader__title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px) {
  .preloader__icon svg {
    width: 35px;
    height: 26px;
  }
  
  .preloader-logo {
    max-width: 30px;
  }
  
  .preloader__title {
    font-size: 20px;
  }
}

/* Hero section overlay */
.hero.-type-1 {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-top: 0;
  min-height: 80vh !important;
  display: flex !important;
  align-items: center !important;
}

.hero.-type-1 .hero__bg {
  height: 100% !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Desktop hero adjustments */
@media (min-width: 992px) {
  .hero.-type-1 {
    padding-top: 20px; /* Add some padding for reasonable spacing */
    margin-top: 20px; /* Remove negative margin */
  }
  
  .hero__bg img:first-child {
    height: 750px; /* Increase image height */
    object-fit: cover;
  }
}

.hero__bg {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  position: relative;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Subtle dark overlay */
  z-index: 1;
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Darker overlay for the shape */
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: url('../img/hero/1/shape.svg');
  mask-image: url('../img/hero/1/shape.svg');
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero__bg img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero__bg img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; /* Increased z-index to appear above the overlay */
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 4; /* Increased z-index to appear above everything */
}

/* Mobile-friendly hero styles */
@media (max-width: 767px) {
  .hero__title {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  
  .hero__text {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  
  .searchForm.-type-1 {
    flex-direction: column;
    margin-top: 25px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .searchForm__form {
    flex-direction: column;
    width: 100%;
  }
  
  .searchFormItem {
    width: 100%;
    margin-bottom: 10px;
    height: 50px;
  }
  
  .searchFormItem .d-flex {
    height: 100%;
  }
  
  .searchFormItem input,
  .searchFormItem button,
  .searchFormItem .js-form-dd .js-dropdown-title {
    font-size: 14px;
    padding: 8px 15px;
  }
  
  .searchFormItem i,
  .searchFormItem .icon {
    font-size: 16px;
    margin-right: 8px;
  }
  
  .searchFormItem .icon-container,
  .searchFormItem .iconContainer {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: rgba(235, 102, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  .searchFormItem .icon-container i,
  .searchFormItem .iconContainer i {
    margin-right: 0;
    font-size: 14px;
    color: #EB662B;
  }
  
  .searchFormItem .d-flex {
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
  }
  
  .searchForm__button {
    width: 100%;
    margin-top: 10px;
    height: 50px;
  }
  
  .searchForm__button button {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  
  .hero.-type-1 {
    min-height: 500px;
  }
  
  .hero__bg {
    height: 100%;
  }
}

@media (max-width: 991px) {
  .hero.-type-1 {
    padding-top: 40px;
    min-height: 600px;
  }
  
  .hero__bg {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  
  .hero__bg img {
    height: 100%;
    object-position: center;
    object-fit: cover;
  }
}

/* Adjust the spacing of header elements */
.header__right {
  display: flex;
  align-items: center;
}

/* Main navigation items */
.main-nav-items {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav-items a {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 500;
  color: #051036;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

/* Remove hover effects */
.main-nav-items a:hover {
  color: #051036; /* Same as non-hover color */
}

.main-nav-items a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #EB662B;
  transition: width 0.3s ease;
  display: none; /* Hide the underline completely */
}

.main-nav-items a:hover::after {
  width: 0; /* Prevent the underline from expanding */
}

/* Destinations dropdown */
.nav-item-with-dropdown {
  position: relative;
}

.nav-item-with-dropdown > a {
  display: flex;
  align-items: center;
}

.nav-item-with-dropdown > a::after {
  content: '';
  margin-left: 6px;
  width: 9px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 5L0.602885 0.5L8.39711 0.5L4.5 5Z' fill='%23051036'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  display: none; /* Hide the dropdown arrow icon */
}

.nav-item-with-dropdown:hover > a::after {
  transform: rotate(180deg); /* Keep the rotation for usability */
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 5L0.602885 0.5L8.39711 0.5L4.5 5Z' fill='%23051036'/%3E%3C/svg%3E%0A"); /* Keep original color */
  display: none; /* Hide the dropdown arrow icon on hover too */
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item-with-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  color: #051036 !important; /* Force the color to stay the same */
}

.nav-dropdown a:hover {
  background-color: #f5f5f5; /* Light background on hover instead of color change */
  color: #051036 !important; /* Force the color to stay the same on hover */
}

/* Make the header menu items larger */
.headerDropdown__button {
  font-size: 18px;
  padding: 8px 12px;
}

/* Increase space between menu items */
.header__right > * {
  margin-left: 15px;
}

/* Style the Book Now button */
.button.-dark-1.bg-accent-1 {
  padding: 12px 24px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .main-nav-items {
    display: none;
  }
}

/* Adjust header position for better spacing */
.header.-type-1 {
  position: relative;
  z-index: 100;
}

/* Make sure the hero background image scales to fill the viewport */
.hero.-type-1 .hero__bg img:first-child {
  height: 100vh !important;
  object-fit: cover;
}

/* Add more padding to push content down on desktop */
@media (min-width: 992px) {
  .hero__content {
    padding-top: 80px; /* Push content down on desktop */
  }
}

/* Instagram hover effect */
.instagram-item {
  position: relative;
  overflow: hidden;
}

.instagram-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 12px;
}

.instagram-hover i {
  color: white;
  font-size: 24px;
}

.instagram-item:hover .instagram-hover {
  opacity: 1;
}

/* Redesigned tour cards to match reference */
.tourCard.-type-3 {
  height: 500px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.tourCard.-type-3 .tourCard__image {
  height: 100%;
  position: relative;
}

.tourCard.-type-3 .tourCard__image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* Location badge */
.tourCard.-type-3 .location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
}

.tourCard.-type-3 .location-badge i {
  color: #ff5722;
  margin-right: 5px;
}

.tourCard.-type-3 .tourCard__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  top: auto; /* Ensure overlay is anchored to the bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tourCard.-type-3 .tourCard__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.tourCard.-type-3 .tourCard__title {
  font-size: 24px;
  margin-bottom: 10px;
}

.tourCard.-type-3 .tourCard__location {
  margin-bottom: 5px;
}

/* Fix swiper container height */
.js-section-slider .swiper-wrapper {
  height: 520px;
}

.swiper-slide {
  height: auto;
}

/* Reduce horizontal spacing between sections */
@media (min-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Button styling */
.button {
  font-family: var(--font-headings);
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.button.-dark-1.bg-accent-1 {
  background-color: #EB662B;
  border: none;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(235, 102, 43, 0.2);
}

.button.-dark-1.bg-accent-1:hover {
  background-color: #d55a24;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(235, 102, 43, 0.3);
}

.button.-md {
  height: 50px;
  padding: 0 28px;
}

.button.-sm {
  height: 44px;
  padding: 0 22px;
}

/* Hero section typography */
.hero.-type-1 .hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero__text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero__button .button {
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }

  .hero__socials {
    display: none;
  }
}

/* Section headings */
h2.text-30 {
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

h2.text-30:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #EB662B;
  border-radius: 3px;
}

.row.justify-between h2.text-30:after {
  left: 0;
}

/* Card styling */
.blogCard.-type-1 {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.blogCard.-type-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blogCard__title {
  transition: color 0.3s ease;
}

.blogCard.-type-1:hover .blogCard__title {
  color: #EB662B;
}

/* Enhanced card styling */
.blogCard__text {
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.blogCard__price {
  margin-top: 15px;
  font-weight: 600;
}

/* Feature card enhancements */
.featureCard__content {
  z-index: 5;
  position: relative;
}

.featureCard__content p {
  opacity: 0.9;
  font-size: 14px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.featureCard:hover .featureCard__content p {
  opacity: 1;
}

/* Section subtitle styling */
h2.text-30 + p {
  color: #666;
  max-width: 600px;
}

/* CTA enhancements */
.cta__content p.text-white {
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
}

/* Button hover effects */
.button.-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.button.-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Travel experiences section */
.size-130 {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.size-130:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.d-flex.items-center:hover .size-130:after {
  opacity: 1;
}

/* Hero content enhancements */
.hero__content {
  position: relative;
  z-index: 5;
}

.hero__button {
  display: inline-block;
}

.hero__title {
  /* Removed text-shadow */
}

.hero__text {
  /* Removed text-shadow */
  opacity: 0.95;
}

/* Hero section overlay */
.hero__bg {
  position: relative;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
}

/* Additional custom styles */
.instagram-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.instagram-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-hover i {
  color: white;
  font-size: 24px;
}

.instagram-item:hover .instagram-hover {
  opacity: 1;
}

.location-badge, .duration-badge {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1;
}

.location-badge {
  top: 15px;
  left: 15px;
}

.duration-badge {
  top: 15px;
  right: 15px;
}

.preloader-logo {
  max-width: 100px;
  height: auto;
}

.logo-portrait {
  max-height: 90px;
  width: auto;
}

/* Navigation */
.main-nav-items {
  display: flex;
  gap: 30px;
}

.main-nav-items a {
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav-items a:hover {
  color: #3554d1;
}

.nav-item-with-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  display: none;
  z-index: 100;
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
}

.nav-item-with-dropdown:hover .nav-dropdown {
  display: block;
}

/* Mobile menu hover effects removal */
.menuNav__item a:hover {
  color: inherit; /* Prevent color change on hover */
}

/* Submenu hover effects removal */
.submenu__item a:hover {
  color: #EB662B;
}

/* New Hero Section Styles */
.hero-new {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-new__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-new__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-new__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-new__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-new__subtitle {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-new__title {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-new__text {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-new__button-wrap {
  margin-top: 30px;
}

.hero-new__button {
  display: inline-block;
  background-color: #EB662B;
  color: white;
  padding: 18px 60px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-new__button:hover {
  background-color: #d55a24;
  transform: translateY(-2px);
}

.hero-new__features {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-new__features-grid {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-new__feature-item {
  text-align: left;
  padding: 0 40px;
  flex: 1;
}

.hero-new__feature-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 600;
  color: #051036;
  margin-bottom: 5px;
}

.hero-new__feature-text {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #697488;
}

/* Responsive styles for new hero */
@media (max-width: 991px) {
  .hero-new__title {
    font-size: 48px;
  }
  
  .hero-new__features-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-new__feature-item {
    padding: 10px 20px;
  }
  
  .hero-new__features {
    position: relative;
    bottom: auto;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-new__title {
    font-size: 36px;
  }
  
  .hero-new__text {
    font-size: 16px;
  }
  
  .hero-new__button {
    padding: 15px 40px;
  }
  
  .hero-new__features-grid {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-new__title {
    font-size: 28px;
  }
  
  .hero-new__subtitle {
    font-size: 12px;
  }
  
  .hero-new__button {
    padding: 12px 30px;
    font-size: 12px;
  }
}

.header.-type-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: transparent;
  padding: 30px 0;
}

.header.-type-3 .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.-type-3 .header__logo {
  margin-right: 0;
}

.header.-type-3 .header__logo img {
  max-height: 90px;
  max-width: 180px;
  width: auto;
}

.header.-type-3 .header__right {
  display: flex;
  align-items: center;
}

.header.-type-3 .header__nav {
  margin-right: 30px;
}

.header.-type-3 .headerNav__inner {
  display: flex;
  gap: 40px;
}

.header.-type-3 .headerNav__item > a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.header.-type-3 .headerNav__item > a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.3s ease;
}

.header.-type-3 .headerNav__item > a:hover:after {
  width: 100%;
}

.header.-type-3 .header__menuBtn {
  color: #FFFFFF;
  font-size: 24px;
}

.header.-type-3 .header__buttons .button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header.-type-3 .header__buttons .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .header.-type-3 {
    padding: 20px 0;
  }
  
  .header.-type-3 .header__nav,
  .header.-type-3 .header__buttons {
    display: flex !important;
  }
  
  .header.-type-3 .headerMobile__right {
    display: block;
  }
  
  .header.-type-3 .header__menuBtn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Mobile menu enhancements */
.menu__container {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  height: 100vh;
  padding: 30px;
  overflow-y: auto;
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.menu__logo {
  display: flex;
  align-items: center;
}

.menu__logo img {
  max-height: 40px;
  width: auto;
}

.menu__header button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu__header button:hover {
  background-color: #eee;
}

.menu__content {
  margin-bottom: 40px;
}

.menuNav__item {
  margin-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 15px;
}

.menuNav__item:last-child {
  border-bottom: none;
}

.menuNav__item > a {
  font-size: 16px;
  font-weight: 500;
  color: #051036;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
}

.menuNav__item i {
  font-size: 12px;
}

.submenu {
  padding-left: 15px;
  margin-top: 10px;
  display: none;
}

.submenu__item {
  margin-bottom: 10px;
}

.submenu__item a {
  font-size: 15px;
  color: #697488;
  display: block;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenu__item a:hover {
  color: #EB662B;
}

.menu__buttons {
  margin-top: 30px;
}

.menu__buttons .button {
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.menu__buttons .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu__footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.menu__socials {
  display: flex;
  gap: 15px;
}

.menu__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #051036;
  transition: all 0.3s ease;
}

.menu__social:hover {
  background-color: #EB662B;
  color: #fff;
}

.menu__contact {
  margin-top: 25px;
}

/* Hero section styles */
.hero.-type-1 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.-type-1 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero.-type-1 .hero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero.-type-1 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-1 .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 140px 0;
}

.hero.-type-1 .hero__subtitle {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero.-type-1 .hero__title {
  font-size: 100px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
}

.hero.-type-1 .hero__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero.-type-1 .hero__locations {
  display: flex;
  gap: 30px;
}

.hero.-type-1 .hero__location {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
}

.hero.-type-1 .hero__location i {
  font-size: 24px;
}

.hero.-type-1 .hero__location div div {
  font-weight: 500;
}

.hero.-type-1 .hero__location p {
  color: rgba(255, 255, 255, 0.8);
}

.hero.-type-1 .slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero.-type-1 .slider-controls__button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #FFFFFF;
}

.hero.-type-1 .hero__socials {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero.-type-1 .hero__socials a {
  color: #FFFFFF;
  font-size: 18px;
}

.hero.-type-1 .hero__see-more {
  position: absolute;
  left: 40px;
  bottom: 40px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero.-type-1 .hero__see-more_item {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.hero.-type-1 .hero__see-more_item span {
  display: inline-block;
}

/* Hero section scroll button */
.hero__scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  padding: 10px;
  text-decoration: none;
}

.hero__scroll-button .icon-arrow-down {
  margin-bottom: 8px;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.hero__scroll-button span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero__scroll-button:hover {
  transform: translateX(-50%) translateY(5px);
}

.hero__scroll-button:hover .icon-arrow-down {
  animation: none;
  transform: translateY(3px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Mobile-friendly styles for hero section and navbar */

/* Header and Menu Fixes */
@media (max-width: 767px) {
  .header__container {
    padding: 15px;
  }
  
  .header__logo img {
    max-height: 40px;
  }
  
  .headerMobile__right {
    margin-left: auto;
  }
  
  .header__menuBtn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }

  .menu__container {
    width: 85%;
    max-width: 300px;
  }
}

/* Hero Section Mobile Styles */
@media (max-width: 767px) {
  .hero.-type-1 {
    height: 100vh;
    min-height: 550px;
  }
  
  .hero__content {
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }
  
  .hero__info {
    width: 100%;
    padding: 0 15px;
  }
  
  .hero__title {
    font-size: 42px;
    line-height: 1.2;
  }
  
  .hero__text {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .hero__text br {
    display: none;
  }
  
  .hero__socials {
    display: none !important; /* Always hide social icons on mobile */
  }
  
  .hero__see-more {
    bottom: 40px;
  }
  
  .hero__scroll-button {
    padding: 8px;
  }
  
  .hero__scroll-button span {
    font-size: 12px;
  }

  .hero__button {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
}

/* Additional tablet responsive fixes */
@media (min-width: 768px) and (max-width: 991px) {
  .hero__title {
    font-size: 48px;
  }
  
  .hero__info {
    width: 80%;
  }
  
  .hero__socials {
    display: none !important; /* Also hide social icons on tablet */
  }
}

/* Enhanced Mobile Menu Styles */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.menu.-is-active {
  right: 0;
}

.menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__container {
    height: 100vh;
    overflow-y: auto;
    background-color: white;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 300px;
  }
  
  .menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
  }
  
  .menuNav__item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menuNav__item a {
    font-size: 16px;
    display: block;
    width: 100%;
  }
  
  .menuNav__item.-has-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .submenu {
    margin-left: 15px;
    margin-top: 10px;
    display: none;
  }
  
  .submenu__item {
    padding: 8px 0;
  }
  
  .menu__buttons {
    margin-top: 20px;
  }
}

/* Fix preloader logo size */
.preloader-logo {
  max-width: 50px;
  height: auto;
}

/* Fix container padding on mobile */
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Fix hero section image and content positioning */
.hero.-type-1 {
  position: relative;
  overflow: hidden;
}

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

.hero__bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__socials {
  position: absolute;
  z-index: 10;
}

.hero__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 10px;
  color: white;
  transition: all 0.3s ease;
}

.hero__socials a:hover {
  background-color: var(--color-accent-1);
}

.hero__see-more {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transition: all 0.3s ease;
}

.hero__scroll-button:hover {
  transform: translateY(5px);
}

/* Mobile menu submenu toggle */
@media (max-width: 767px) {
  .menuNav__item.-has-submenu.is-active .submenu {
    display: block;
  }
}

/* Extra styles for mobile adjustments */
@media (max-width: 575px) {
  .hero__title {
    font-size: 36px;
  }
  
  .hero__text {
    font-size: 14px;
  }
  
  .hero.-type-1 {
    min-height: 500px;
  }
  
  .header__menuBtn i {
    font-size: 20px;
  }
}

/* Improve header visibility over hero on mobile */
@media (max-width: 767px) {
  .header.-type-3 {
    background-color: rgba(0, 0, 0, 0.45); /* semi-transparent dark background */
    backdrop-filter: blur(6px); /* subtle blur for better readability */
  }
  
  .hero.-type-1 .hero__content {
    padding-top: 150px; /* slightly less on small screens */
  }
}

/* Desktop-specific header adjustments */
@media (min-width: 992px) {
  .header.-type-3 .headerNav__item > a {
    color: #FFFFFF; /* white nav links */
  }

  .header.-type-3 .header__buttons .button {
    background-color: #FFFFFF !important; /* white button background */
    color: #051036 !important; /* dark text */
  }

  .hero__socials {
    display: flex; /* show social icons */
    flex-direction: column;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    gap: 15px;
  }
}

/* ------------------------------------------------------------------
   Header navigation visibility fixes
-------------------------------------------------------------------*/
@media (max-width: 991px) {
  /* Mobile: Hide nav in header, show only in menu overlay */
  .header.-type-3 .header__nav,
  .header.-type-3 .header__buttons {
    display: none !important;
  }
  
  /* Ensure mobile menu button is visible */
  .header.-type-3 .headerMobile__right {
    display: block !important;
  }
}

/* Desktop only: Show nav in header */
@media (min-width: 992px) {
  .header.-type-3 .header__nav,
  .header.-type-3 .header__buttons {
    display: flex !important;
  }
  
  /* Hide mobile menu button on desktop */
  .header.-type-3 .headerMobile__right {
    display: none !important;
  }
}

/* Activity Feature Icons */
.activity-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background-color: #f8f9fa;
}

/* Highlight Box */
.highlight-boxx {
  background-color: #f0f8ff;
  border-left: 4px solid #eb662b;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

/* Included/Not Included Lists */
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #28a745;
}

.included-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

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

.not-included-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #dc3545;
}

.not-included-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

/* Price Box */
.price-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.form-select, .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-select:focus, .form-control:focus {
  outline: none;
  border-color: #eb662b;
  box-shadow: 0 0 0 3px rgba(235, 102, 43, 0.1);
}

/* Border utilities */
.border-top-1 {
  border-top: 1px solid #e6e6e6;
}

/* Width utilities */
.w-100 {
  width: 100%;
}

/* Icon utilities */
.icon-phone:before {
  content: "📞";
}

.icon-email:before {
  content: "✉️";
}

.icon-info:before {
  content: "ℹ️";
}

/* Size utilities */
.size-80 {
  width: 80px;
  height: 80px;
}

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

/* Shadow utilities */
.shadow-1 {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Section Background */
.cta.-type-5 {
  position: relative;
  background: linear-gradient(135deg, #eb662b 0%, #f28555 100%);
  overflow: hidden;
}

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

.cta__content {
  position: relative;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opacity-7 {
  opacity: 0.7;
}

/* Background colors */
.bg-accent-2 {
  background-color: #eb662b;
}

.bg-dark-2 {
  background-color: #2c3e50;
}

/* Section Title */
.sectionTitle.-light .sectionTitle__title {
  color: #fff;
}

.sectionTitle.-light .sectionTitle__text {
  color: rgba(255, 255, 255, 0.8);
}

/* Custom Highlighted Experience Box */
.highlighted-experience-box {
  background: #fff7f6 !important;
  border-left: 4px solid #eb662b !important;
  border-radius: 12px !important;
  padding: 28px 32px !important;
  margin: 32px 0 !important;
  color: #18194a !important;
  box-shadow: none !important;
}
.highlighted-experience-box h4,
.highlighted-experience-box h3 {
  color: #18194a !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
}
.highlighted-experience-box p {
  color: #18194a !important;
  margin-bottom: 0 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}
@media (max-width: 600px) {
  .highlighted-experience-box {
    padding: 18px 10px !important;
    font-size: 15px !important;
  }
}

