:root {
    --primary-color: #ff801f;
    /* Orange */
    --secondary-color: #fff;
    /* White */
    --text-color: #333;
    /* Dark Gray */
    --background-color: #ffffff;
    /* Light Gray */
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 25px;
    font-style: normal;
    background-color: var(--background-color);
}




.btn-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9a47 100%);
    color: var(--secondary-color);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 128, 31, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none !important;
    /* box-shadow: 0 0 0 4px rgba(255, 128, 31, 0.671) !important; */
    /* Change this to your desired color */
    /* Optional: border color */
}

.btn-main:hover {
    background: linear-gradient(135deg, #e6731a 0%, #ff8533 100%);
    color: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 128, 31, 0.4);
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 128, 31, 0.3);
}

.btn-outline-main {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 5px 20px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.btn-outline-main:hover, .btn-outline-main:focus {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 128, 31, 0.15);
    border-color: var(--primary-color);
}

.btn-outline-main i {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.btn-outline-main:hover i,
.btn-outline-main:focus i {
    transform: translateX(6px) scale(1.15);
}

/* Read More Button Specific Styles */
#readMoreBtn {
    background: linear-gradient(135deg, transparent 0%, rgba(255, 128, 31, 0.1) 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

#readMoreBtn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9a47 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 128, 31, 0.3);
    border-color: var(--primary-color);
}

#readMoreBtn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

#readMoreBtn:hover i {
    transform: scale(1.1);
}

/* Animation for expanding/collapsing */
#readMoreBtn.expanding i {
    animation: rotateDown 0.3s ease;
}

#readMoreBtn.collapsing i {
    animation: rotateUp 0.3s ease;
}

@keyframes rotateDown {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

@keyframes rotateUp {
    0% { transform: rotate(180deg); }
    100% { transform: rotate(0deg); }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Opacity adjust here */
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
}


.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}



.navbar .nav-link {
  position: relative;
  padding-bottom: 4px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.navbar .nav-link.active {
  color: var(--primary-color) !important; /* Shayona Brand Orange */
  font-weight: 600;
}


.navbar .nav-link:hover::after {
  width: 100%;
}





/* Transparent at top */
.navbar.transparent {
    background-color: rgba(255, 255, 255, 0) !important;
}

.navbar.transparent .nav-link,
.navbar.transparent .navbar-brand {
    color: #000 !important;
}


/* Solid on scroll */
.navbar.scrolled {
    background-color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
    color: #000 !important;
}

.search-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

#suggestionsBox {
  top: 100%; /* Comes right below the input */
  position: absolute;
  background-color: #fff;
  text-align: left;
  border-radius: 20px;
  border: none;
  z-index: 9999;
  max-height: 250px;
  overflow-y: auto;
  transition: 0.5s ease-out;
}
/* Optional: Improve tap targets on small screens */
#suggestionsBox .list-group-item {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.card-title {
    font-size: 1.1rem;
    color: #333;
}

.card-text small {
    color: #555;
}



.popular-card img,
.tour-card img {
    border-radius: 10px;
}

.popular-card,
.tour-card {
    transition: transform 0.3s ease;
}

.popular-card:hover,
.tour-card:hover {
    transform: scale(1.05);
}

.popular-card {
    background: #f8f9fa;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-card {
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-card .card-body {
    padding: 20px;
}

.tour-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.tour-card .card-text {
    font-size: 1.2rem;
    color: #555;
}

.tour-card .btn .btn-outline-warning {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
}

.tour-card .btn .btn-outline-warning:hover {
    background-color: #e6731a;
}

.why-choose i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Search Box Styles */

#searchbtn{
    border-radius: 0 20px 20px 0;
}

.input-group.position-relative {
  position: relative;
}

.search-icon-inside {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.35 rem;
  color: #888;
  z-index: 10; /* Increase z-index */
  transition: opacity 0.2s;
  opacity: 1;
}

#destinationSearch {
    border-radius: 30px;
    margin-left: 5px;
}

#destinationSearch::placeholder {
    font-size: 1.35rem;
    color: #888;
    opacity: 1;
}

#destinationSearch:focus + .search-icon-inside,
#destinationSearch + .search-icon-inside {
  opacity: 1;
}

.navbar-toggler {
    background: rgba(255, 255, 255, 0.445) !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}

/* --- Navbar & Menu Animations --- */
.animated-offcanvas {
  animation: slideInRight 0.5s cubic-bezier(0.77,0,0.175,1);
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animated-menu .menu-link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
.animated-menu .menu-link.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}
/* You can further style .menu-link for hover, active, etc. */
.menu-link {
  position: relative;
  overflow: hidden;
}
.menu-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.menu-link:hover::after {
  transform: scaleX(1);
}

/* --- Desktop Centered Menu & Color --- */
.main-menu {
  align-items: center;
}
.main-menu .menu-link {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.main-menu .menu-link.white-menu {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.navbar.scrolled .main-menu .menu-link {
  color: #222 !important;
  text-shadow: none;
}

/* --- Hamburger Icon Animation (mobile) --- */
.menu-anim-icon {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.menu-anim-icon .bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-anim-icon.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-anim-icon.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-anim-icon.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Mobile Animated Hamburger Menu --- */
.mobile-hamburger {
  display: flex;
  flex-direction: column;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1051;
  background: transparent;
  border: none;
  margin-right: 8px;
}
.mobile-hamburger span {
  background: #fff;
  border-radius: 10px;
  height: 6px;
  margin: 6px 0;
  transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: block;
}
.mobile-hamburger span:nth-of-type(1) {
  width: 50%;
}
.mobile-hamburger span:nth-of-type(2) {
  width: 100%;
}
.mobile-hamburger span:nth-of-type(3) {
  width: 75%;
}
.mobile-hamburger input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px,0px);
}
.mobile-hamburger input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
.mobile-hamburger input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px,-11px) rotatez(45deg);
}
@media (min-width: 992px) {
  .mobile-hamburger {
    display: none !important;
  }
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .main-menu {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .menu-anim-icon {
    display: none !important;
  }
}

/* --- Custom Offcanvas Close Button --- */
.custom-close .close-bar {
  background: #000 !important;
}
.custom-close:hover .close-bar {
  background: #ff3b3b !important;
}

#mobileMenuCheck:checked ~ span {
  background: #000 !important;
}

/* Sticky Action buttons */
.sticky-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #222;
  border-radius: 50% 0 0 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  font-size: 1.6rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.sticky-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.call-btn { border: 2px solid #4C23E8; }
.whatsapp-btn { border: 2px solid #25D366; }

.sticky-btn.share-btn {
    border: 2px solid var(--primary-color);
}
.sticky-btn.share-btn:hover {
    background: #e6731a;
}

.sticky-btn i {
    pointer-events: none;
}

.back-btn {
    border: 2px solid #222;
    border-radius: 0;
    
}
#back{
 position: fixed;
  top: 25%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.back-btn:hover {
    background: #111;
}

@media (max-width: 575px) {
  .sticky-buttons {
    right: 0;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-end;
    width: auto;
    z-index: 9999;
    padding-right: 0;
  }
  .sticky-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 50% 0 0 50%;
    margin: 0;
  }
  .back-btn {
    border: 2px solid #222;
    border-radius: 0;
    
}
#back{
 position: fixed;
  top: 25%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.back-btn:hover {
    background: #111;
}
}

.hero {
    min-height: 400px;
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.73);
    z-index: 1;
  }

  .hero .container {
    min-height: 400px;
    height: 100vh;
    position: relative;
    z-index: 2;
  }

  .hero h1.display-4 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero .lead {
    font-size: 1.3rem;
  }

  .search-box {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
  }

  .search-box .form-control {
    font-size: 1.15rem;
    border-radius: 8px 0 0 8px;
  }

  .search-box .btn-main {
    font-size: 1.2rem;
    border-radius: 30px;
  }

  .search-box .list-group {
    border-radius: 0 0 8px 8px;
  }

  .btn-main {
    font-size: 1.1rem;
    padding: 10px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9a47 100%) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 128, 31, 0.2);
    transition: all 0.3s ease;
  }

  .btn-main:hover,
  .btn-main:focus {
    background: linear-gradient(135deg, #e6731a 0%, #ff8533 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 128, 31, 0.35);
  }

  @media (max-width: 991.98px) {

    .hero,
    .hero .container {
      min-height: 320px;
      height: 60vh;
    }

    .hero h1.display-4 {
      font-size: 2rem;
    }

    .hero .lead {
      font-size: 1.1rem;
    }

    .search-box {
      padding: 1.2rem 0.7rem;
      max-width: 98vw;
    }

    .btn-main {
      font-size: 1.05rem;
      padding: 8px 16px;
    }
  }

  @media (max-width: 767.98px) {

    .hero,
    .hero .container {
      min-height: 180px;
      height: 45vh;
    }

    .hero h1.display-4 {
      font-size: 1.7rem;
    }

    .hero .lead {
      font-size: 0.98rem;
    }

    .search-box {
      padding: 0.7rem 0.3rem;
      max-width: 100vw;
    }

    .search-box .form-control {
      font-size: 1rem;
    }

    .btn-main {
      font-size: 0.95rem;
      padding: 9px 18px;
      border-radius: 20px;
      box-shadow: 0 3px 12px rgba(255, 128, 31, 0.2);
    }

    .mt-3.d-flex.gap-3.justify-content-center.flex-wrap>a.btn {
      font-size: 0.95rem !important;
      padding: 9px 18px !important;
      border-radius: 20px !important;
    }
  }

  @media (max-width: 575.98px) {

    .hero,
    .hero .container {
      min-height: 100px;
      height: 30vh;
    }

    .hero h1.display-4 {
      font-size: 1.3rem;
    }

    .hero .lead {
      font-size: 0.85rem;
    }

    .search-box {
      padding: 0.4rem 0.1rem;
      max-width: 100vw;
    }

    .search-box .form-control {
      font-size: 15px;
    }

    .search-box .form-control::placeholder {
      font-size: 15px !important;
      color: #888;
    }

    .btn-main {
      font-size: 0.9rem;
      padding: 10px 16px;
      border-radius: 18px;
      box-shadow: 0 2px 10px rgba(255, 128, 31, 0.2);
    }

    .mt-3.d-flex.gap-3.justify-content-center.flex-wrap>a.btn {
      font-size: 0.9rem !important;
      padding: 10px 16px !important;
      border-radius: 18px !important;
    }
  }

  @media (max-width: 575.98px) {
  .search-icon-inside {
    font-size: 0.95rem !important;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  #destinationSearch {
    padding-left: 32px !important;
  }
}

/* Stylish Tabs */
#packageTab {
  border-bottom: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

#packageTab .nav-item {
  margin-bottom: 0;
}

#packageTab .nav-link {
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
  background-color: #f0f4f8;
  position: relative;
  box-shadow: none;
  overflow: hidden;
}

#packageTab .nav-link.active {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
}

#packageTab .nav-link:hover:not(.active) {
  background-color: #fff4e6;
}

/* Remove the underline effect */
#packageTab .nav-link::after {
  display: none;
}

.tab-content {
  padding: 25px;
  background: #fff;
  border-radius: 0;
  /* box-shadow: 0 1px 3px rgba(0,0,0,0.05); */
  /* border: 1px solid #f0f0f0; */
}

@media (max-width: 768px) {
  #packageTab .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Responsive Tabs for all mobile devices */
#packageTab {
  border-bottom: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

@media (max-width: 991px) {
  #packageTab {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    gap: 5px;
  }
  
  #packageTab::-webkit-scrollbar {
    height: 4px;
  }
  
  #packageTab::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
  }
  
  #packageTab .nav-item {
    flex: 0 0 auto;
  }
  
  #packageTab .nav-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  #packageTab .nav-link {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .tab-content {
    padding: 15px;
  }
}

@media (max-width: 360px) {
  #packageTab .nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* Increase font size in itinerary section - LARGER VALUES */
#itinerary .timeline {
  font-size: 1.15rem; /* Increased from 0.96rem */
}

#itinerary .text-muted {
  font-size: 1.05rem !important; /* Increased from 0.9rem */
  line-height: 1.6;
}

#itinerary h5, 
#itinerary .h5 {
  font-size: 1.35rem; /* Increased from 1.1rem */
  font-weight: 600;
  margin-bottom: 0.75rem;
}

#itinerary p {
  margin-bottom: 15px;
  font-size: 1.15rem; /* Increased from 0.96rem */
}

/* Make day badges auto-width and keep content inside */
#itinerary .timeline-item .badge {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  padding: 8px 12px !important;
  font-size: 1.05rem !important;
  border-radius: 6px !important;
  background-color: var(--primary-color) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  margin-right: 12px !important;
  min-width: 80px !important;
  justify-content: center !important;
}

#itinerary .timeline-item .badge i {
  margin-right: 4px !important;
}

/* Day badges also need to be larger */
#itinerary .timeline-item .badge {
  font-size: 1.05rem !important; /* Increased from 0.9rem */
  padding: 6px 10px;
}

/* Keep responsive sizing for small screens */
@media (max-width: 576px) {
  #itinerary .timeline {
    font-size: 1rem;
  }
  
  #itinerary p, #itinerary .text-muted {
    font-size: 0.95rem !important;
  }
}

/* Make Quick Info box narrower on desktop only */
.quick-facts {
  margin-left: auto;
  margin-right: auto;
}

/* Adjust at larger screens - move it to the right */
@media (min-width: 992px) {
  .quick-facts {
    max-width: 300px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 15px;
  }
  
  /* Give more space to main content area */
  .col-lg-8.order-1.order-lg-0 {
    flex: 0 0 auto;
    width: 70%;
  }
  
  .col-lg-4.order-0.order-lg-1 {
    flex: 0 0 auto;
    width: 30%;
  }
}

/* Mobile specific styles - restore to previous width */
@media (max-width: 991.98px) {
  .quick-facts {
    max-width: none;
    width: 100%;
  }
}

/* Match margin-top between info-card and quick-facts */
.quick-facts {
  margin-top: 0; /* Reset any existing margin */
}

@media (max-width: 991.98px) {
  /* On mobile, quick-facts appears first and info-card comes second */
  .quick-facts {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  
  .info-card {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  /* On desktop, ensure both have identical top margin */
  .quick-facts,
  .info-card {
    margin-top: 0;
  }
}

/* Main layout fixes */
.info-card, .quick-facts {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    background: white;
}

/* Tab styling like image */
#packageTab {
    border-bottom: none;
    margin-bottom: 20px;
    gap: 5px;
}

#packageTab .nav-link {
    border: none;
    border-radius: 6px;
    font-weight: 500;
    padding: 12px 20px;
    color: #555;
}

#packageTab .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Day badge styling like image */
#itinerary .timeline-item .badge {
    border-radius: 6px;
    padding: 8px 12px;
    background-color: var(--primary-color) !important;
    font-weight: 500;
}

/* Quick info styling */
.quick-facts h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quick-facts p {
    margin-bottom: 15px;
}

.quick-facts strong i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

/* Enquiry button */
.quick-facts .btn-main {
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
}

/* Timeline spacing */
#itinerary .timeline {
    margin-left: 10px;
}

/* Add this to your style.css file */

/* Timeline container styling */
#itinerary .timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--primary-color); /* Orange vertical line */
  margin-left: 0;
}

/* Timeline dots styling - centered on line */
#itinerary .timeline-item::before {
  content: '';
  position: absolute;
  left: -31px; /* Position dot to be centered on the line */
  top: 15px; /* Align with day badge */
  width: 15px; /* Slightly larger dot */
  height: 15px; /* Slightly larger dot */
  background-color: var(--primary-color); /* Orange color for dots */
  border-radius: 50%; /* Make it circular */
  box-shadow: 0 0 10px rgba(255, 128, 31, 0.55); /* Shadow for better visibility */
  z-index: 2; /* Ensure dot appears above the line */
  transform: translateX(-50%); /* Center perfectly on the line */
}

/* Position day badges closer to dots */
#itinerary .timeline-item .badge {
  margin-left: -10px;
  position: relative;
  z-index: 3;
}

/* Adjust timeline item spacing */
#itinerary .timeline-item {
  position: relative;
  margin-bottom: 2rem; /* Space between items */
  padding-left: 15px; /* Provide space for dot alignment */
}


    #hiddenItinerary {
        transition: max-height 0.5s ease-in-out;
    }


 /* Pinterest-style Masonry Layout */
    .masonry-container {
      position: relative;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .masonry-item {
      position: absolute;
      width: calc(25% - 15px);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .destination-card-img-link {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.10);
      display: block;
      transition: all 0.3s ease;
      width: 100%;
      text-decoration: none;
    }

    .destination-card-img-link:hover {
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
      transform: translateY(-5px);
    }

    .destination-card-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 0;
      display: block;
      transition: transform 0.3s ease;
      z-index: 1;
    }

    .destination-card-img-link:hover .destination-card-img {
      transform: scale(1.05);
    }

    .destination-card-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 10px;
      background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.7) 30%, 
        rgba(0,0,0,0.4) 60%, 
        rgba(0,0,0,0.1) 85%, 
        transparent 100%);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      color: #fff;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      width: 100%;
      border-radius: 0 0 1rem 1rem;
      z-index: 2;
      padding-bottom: 12px;
    }

    .destination-card-overlay span {
      font-size: 1.2rem;
      font-weight: 700;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
      padding: 0 15px;
      text-align: center;
      width: 100%;
      color: #fff;
      letter-spacing: 0.3px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .masonry-item {
        width: calc(33.333% - 13px);
      }
    }

    @media (max-width: 992px) {
      .masonry-container {
        padding: 0 15px;
      }
      
      .masonry-item {
        width: calc(50% - 10px);
        margin-bottom: 15px;
      }
    }

    @media (max-width: 768px) {
      .masonry-container {
        padding: 0 12px;
      }
      
      .masonry-item {
        width: calc(50% - 8px);
        margin-bottom: 12px;
      }
      
      .destination-card-overlay {
        height: 55px;
        background: linear-gradient(to top, 
          rgba(0,0,0,0.85) 0%, 
          rgba(0,0,0,0.6) 40%, 
          rgba(0,0,0,0.2) 70%, 
          transparent 100%);
        padding-bottom: 10px;
      }
      
      .destination-card-overlay span {
        font-size: 1rem;
        padding: 0 10px;
      }
    }

    @media (max-width: 576px) {
      .masonry-container {
        padding: 0 15px;
      }
      
      .masonry-item {
        width: 100%;
        margin-bottom: 20px;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
      }
      
      .destination-card-img-link {
        border-radius: 0.8rem;
      }
      
      .destination-card-overlay {
        height: 50px;
        border-radius: 0 0 0.8rem 0.8rem;
        background: linear-gradient(to top, 
          rgba(0,0,0,0.8) 0%, 
          rgba(0,0,0,0.5) 50%, 
          rgba(0,0,0,0.1) 80%, 
          transparent 100%);
        padding-bottom: 8px;
      }
      
      .destination-card-overlay span {
        font-size: 0.95rem;
        padding: 0 12px;
      }
    }

    /* Fix for overflow issues */
    @media (max-width: 500px) {
      .masonry-container {
        padding: 0 12px;
      }
      
      .masonry-item {
        margin-bottom: 15px;
      }
    }

    @media (max-width: 575px) {
      .destination-banner {
        height: 160px !important;
        min-height: 90px !important;
        max-height: 50vw !important;
        overflow: hidden;
      }

      .banner-text {
        left: 0 !important;
        top: 55% !important;
        transform: translateY(-50%) !important;
        max-width: 98vw !important;
        width: 98vw !important;
        padding: 0 2vw !important;
        position: absolute !important;
      }

      .banner-text h1,
      .banner-text .display-4 {
        font-size: 1.15rem !important;
        line-height: 1.18 !important;
        word-break: break-word;
        max-width: 95vw !important;
        white-space: normal !important;
        margin-bottom: 0.3rem !important;
      }

      .banner-text p.lead {
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
      }
    }

    body,
    .breadcrumb,
    .banner-text,
    .card,
    .btn,
    .form-control,
    .lead,
    .display-4,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    input,
    button {
      font-family: Arial, sans-serif !important;
    }

    /* --- Banner Heading Responsive --- */
    @media (max-width: 1200px) {

      .banner-text h1,
      .banner-text .display-4 {
        font-size: 2.1rem !important;
        line-height: 1.15 !important;
        word-break: break-word;
        max-width: 90vw !important;
      }

      .banner-text {
        left: 60px !important;
        top: 60% !important;
        max-width: 92vw;
      }
    }

    @media (max-width: 991px) {

      .banner-text h1,
      .banner-text .display-4 {
        font-size: 1.5rem !important;
        line-height: 1.12 !important;
        max-width: 92vw !important;
      }

      .banner-text {
        left: 24px !important;
        top: 58% !important;
      }
    }

    @media (max-width: 767px) {
      .destination-banner {
        height: 120px !important;
      }

      .banner-text {
        left: 10px !important;
        top: 52% !important;
        max-width: 98vw !important;
      }

      .banner-text h1,
      .banner-text .display-4 {
        font-size: 1.01rem !important;
        line-height: 1.15 !important;
        max-width: 97vw !important;
      }

      .banner-text p.lead {
        font-size: 0.85rem !important;
      }
    }

    /* --- Breadcrumb Responsive --- */
    @media (max-width: 991px) {
      .row.mb-4>.col-12 {
        max-width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
      }
    }

    @media (max-width: 767px) {

      .row.mb-4 a,
      .row.mb-4 span {
        font-size: 0.92rem !important;
        min-width: unset !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
      }
    }

    /* --- Cards Grid Responsive --- */
    @media (max-width: 991px) {
      .row.g-4 {
        margin-left: 0 !important;
        --bs-gutter-x: 1rem;
      }

      .card-title {
        font-size: 1.2rem !important;
      }

      .card {
        border-radius: 0.75rem !important;
      }
    }

    @media (max-width: 767px) {
      .row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 1.2rem;
      }

      .card {
        border-radius: 0.65rem !important;
      }

      .card-title {
        font-size: 1rem !important;
      }

      .card-body {
        padding: 0.8rem !important;
      }
    }

    /* === Banner fixes for mobile === */
    @media (max-width: 500px) {
      .destination-banner {
        height: 250px !important;
        min-height: 110px !important;
        max-height: 50vw !important;
        overflow: hidden;
      }

      .navbar-brand img {
        margin-left: 20px !important;
        height: 60px !important;
      }

      .row.mb-4>.col-12>div {
        /* flex-direction: column !important; */
        margin-left: 28px;
        gap: 4px !important;
      }

      .banner-text {
        left: 20px !important;
        top: 70% !important;
        max-width: 94vw !important;
        width: 92vw !important;
        padding-right: 4vw !important;
      }

      .banner-text h1,
      .banner-text .display-4 {
        font-size: 1.02rem !important;
        line-height: 1.13 !important;
        word-break: break-word;
        max-width: 90vw !important;
        white-space: normal !important;
      }

      .banner-text p.lead {
        font-size: 0.82rem !important;
        margin-bottom: 0.2rem !important;
      }

      .destination-banner img {
        object-position: center top !important;
        min-height: 110px !important;
      }
    }

    /* === Breadcrumb section mobile === */
    @media (max-width: 500px) {
      .row.mb-4 {
        margin-bottom: 1.2rem !important;
        margin-top: 0 !important;
      }

      .row.mb-4>.col-12 {
        padding-left: 0 !important;
        margin-left: 0 !important;
        max-width: 100% !important;
      }

      .row.mb-4 a,
      .row.mb-4 span {
        font-size: 0.93rem !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
      }
    }

    /* === Cards grid and card perfect mobile === */
    @media (max-width: 500px) {
      .row.g-4 {
        --bs-gutter-x: 0.2rem !important;
        --bs-gutter-y: 1rem !important;
        margin-left: 0 !important;
      }

      .row.g-4>[class^="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0.2rem !important;
        padding-right: 0.2rem !important;
      }

      .card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0.65rem !important;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.10) !important;
        width: 98vw !important;
        max-width: 98vw !important;
        min-width: 0 !important;
      }

      .card-title {
        font-size: 1.02rem !important;
      }

      .card-body {
        padding: 0.7rem !important;
      }

      .card img {
        height: 180px !important;
        max-height: 180px !important;
        width: 100% !important;
        border-radius: 0.45rem !important;
        object-fit: cover !important;
        /* Fill the card horizontally and vertically */
        display: block;
      }

      .card>div:first-child {
        height: 180px !important;
        min-height: 180px !important;
        border-radius: 0.45rem !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #fff;
      }
    }

    /* === General overflow fix for small devices === */
    @media (max-width: 500px) {

      body,
      html {
        overflow-x: hidden !important;
      }

      .container,
      .container-fluid {
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }


    @media (max-width: 575px) {
      .row.g-4>[class^="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
      }

      .card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0.6rem !important;
      }

      .card-title {
        font-size: 0.95rem !important;
      }

      .card-body {
        padding: 0.68rem !important;
      }
    }

    /* --- Responsive Image in Card --- */
    @media (max-width: 575px) {
      .card img {
        height: 120px !important;
        max-height: 120px !important;
        border-radius: 0.5rem !important;
      }
    }


    /* Responsive Footer Styles */
    @media (max-width: 900px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .footer-col {
        width: 100%;
        max-width: 500px;
        margin-bottom: 24px;
        text-align: center;
    }
    .footer-heading {
        font-size: 1.1rem;
    }
    .footer-icon-text {
        font-size: 0.97rem;
        justify-content: center;
    }
    .footer-address {
        margin-left: 0;
        text-align: center;
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-services li {
        font-size: 0.97rem;
        text-align: left;
        display: inline-block;
        width: 90%;
    }
    .footer-pay-icons {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .footer-modern {
        padding: 20px 0 0 0;
        font-size: 0.95rem;
    }
    .footer-col {
        max-width: 100%;
        margin-bottom: 18px;
    }
    .footer-heading {
        font-size: 1rem;
    }
    .footer-icon-text {
        font-size: 0.93rem;
    }
    .footer-services li {
        font-size: 0.93rem;
        width: 100%;
    }
    .footer-bottom, #footer-branding {
        font-size: 0.92rem;
        padding: 8px 0;
    }
}

/* Mobile Footer Responsive Improvements */
@media (max-width: 600px) {
    /* Container padding for better spacing */
    .footer-modern .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Footer columns */
    .footer-col {
        margin-bottom: 25px;
        padding: 0 10px;
        text-align: left;
    }
    
    /* Heading with underline styling */
    .footer-heading {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 5px;
        text-transform: uppercase;
        font-weight: 600;
        text-align: left;
    }
    
    .footer-underline {
        width: 40px;
        height: 3px;
        background: var(--primary-color);
        margin: 0 auto 15px;
    }
    
    /* Contact info items */
    .footer-icon-text {
        display: flex;
        align-items: left;
        justify-content: left;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .footer-icon-text i {
        font-size: 1.1rem;
        color: var(--primary-color);
        width: 20px;
        text-align: left;
    }
    
    /* Service bullets styling */
    .footer-services {
        text-align: left;
        padding: 0;
        margin: 0;
    }
    
    .footer-services li {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 8px;
        width: auto;
        display: block;
        position: relative;
        padding-left: 0;
    }
    
    .footer-services li::before {
        content: '•';
        color: var(--primary-color);
        margin-right: 6px;
        display: inline;
        position: static;
        background: none;
    }
    
    /* Social icons in footer */
    .footer-social-icons {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        justify-content: left;
    }
    
    .footer-social-icons a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: left;
        justify-content: left;
        color: var(--primary-color);
        font-size: 1.1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* Copyright section */
    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
        padding: 10px 5px;
        margin-top: 15px;
    }
}

.footer-modern {
        padding: 25px 0;
        background-color: #f8f9fa;
        color: #333;
        position: relative;
    }
    
    .footer-modern .footer-col {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .footer-modern .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }
    
    .footer-modern .footer-icon-text {
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .footer-modern .footer-icon-text i {
        font-size: 1.2rem;
        color: var(--primary-color);
        margin-right: 8px;
    }
    
    .footer-modern .footer-bottom {
        margin-top: 20px;
        text-align: center;
        font-size: 0.8rem;
        padding: 10px 0;
    }

    body,
        .card,
        .btn,
        .form-control,
        .lead,
        .display-4,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        input,
        button {
            font-family: Arial, sans-serif !important;
        }

        @media (max-width: 500px) {
            .navbar-brand img {
                height: 60px;
            }

            /* Target only content containers, not navbar */
            .content-section .container {
                background-color: white;
            }
        }

        /* Masonry Layout Styles */
        .masonry-container {
            position: relative;
            width: 100%;
            min-height: 400px;
        }

        .masonry-item {
            position: absolute;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: calc(33.333% - 15px); /* Changed from 25% to 33.333% for 3 columns */
        }

        /* Cards को थोड़ा बड़ा और attractive बनाने के लिए */
        .destination-card-img-link {
            display: block;
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            height: 100%; /* Full height of container */
        }

        .destination-card-img {
            width: 100%;
            height: auto; /* Auto height instead of fixed height */
            object-fit: contain; /* Changed from cover to contain */
            max-height: 350px; /* Maximum height to avoid extremely tall images */
            display: block;
            transition: transform 0.5s ease;
        }

        .destination-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 15px;
            transition: height 0.3s ease;
            z-index: 2; /* Lower than places-badge */
        }

        .destination-card-overlay span {
            font-size: 1.4rem; /* Larger font size for title */
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        .package-details {
            display: flex;
            justify-content: flex-end;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        .package-info {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fff;
        }

        .destination-card-img-link:hover .destination-card-img {
            transform: scale(1.05);
            
        }

        .destination-card-img-link:hover .destination-card-overlay {
            height: 60px;
        }

        .masonry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border:0px;
        }

        /* Duration badge styles */
        .duration-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Places badge styles */
        .places-badge {
            position: absolute;
            left: 15px;
            bottom: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 6px 14px;
            border-radius: 18px;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 7px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            z-index: 5; /* Increase z-index to be above overlay */
        }

        /* Show places badge on hover */
        .destination-card-img-link:hover .places-badge {
            opacity: 1;
            pointer-events: auto;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .masonry-item {
                width: calc(33.333% - 12px); /* Still 3 columns at large screens */
            }
        }

        @media (max-width: 992px) {
            .masonry-item {
                width: calc(50% - 10px); /* 2 columns at medium screens */
            }
        }

        @media (max-width: 576px) {
            .masonry-item {
                width: calc(50% - 10px) !important; /* 2 columns with gap */
                margin-bottom: 15px;
                position: absolute !important; /* Keep absolute positioning */
                left: auto !important; /* Let JS position it */
                top: auto !important; /* Let JS position it */
            }
            
            /* DO NOT use width: 100% anywhere in this media query */
            
            /* Card image adjustments */
            .destination-card-img {
                height: 160px !important;
                object-fit: cover !important;
                width: 100% !important;
            }
            
            /* Title font size adjustment */
            .destination-card-overlay span {
                font-size: 0.85rem !important;
                padding: 0 5px !important;
            }
            
            /* Badge adjustments */
            .duration-badge {
                font-size: 0.7rem !important;
                padding: 3px 8px !important;
            }
        }

        /* Very small screens - still keep 2 columns */
        @media (max-width: 400px) {
          .masonry-item {
            width: calc(50% - 8px) !important; /* Slightly less gap on tiny screens */
          }
          
          .destination-card-img {
            height: 140px !important;
          }
          
          .destination-card-overlay span {
            font-size: 0.8rem;
          }
          
          .duration-badge {
            padding: 3px 6px;
            font-size: 0.65rem;
          }
        }

        /* Mobile view fixes for packages (under 576px) */
@media (max-width: 576px) {
    .masonry-item {
        position: relative !important; 
        width: calc(50% - 10px) !important; /* 2 cards per row with gap */
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin-bottom: 15px;
        float: left;
        margin-right: 10px; /* Create horizontal gap */
    }
    
    /* Every 2nd item (clear right margin) */
    .masonry-item:nth-child(2n) {
        margin-right: 0;
    }
    
    /* Clear float after every 2 items */
    .masonry-item:nth-child(2n+1) {
        clear: left;
    }
    
    .masonry-container {
        height: auto !important; /* Allow container to grow */
        display: flow-root; /* Contain the floats */
    }
    
    .destination-card-img-link {
        height: auto;
    }
    
    .destination-card-img {
        height: 160px !important;
        object-fit: cover !important;
    }
    
    .destination-card-overlay span {
        font-size: 0.85rem !important;
    }
    
    .duration-badge {
        font-size: 0.7rem !important;
        padding: 3px 8px !important;
    }
    
    /* Reset any JavaScript positioning */
    #packageMasonryContainer .masonry-item {
        transform: none !important;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .masonry-item {
        width: calc(50% - 5px) !important; /* Smaller gap on tiny screens */
        margin-right: 5px;
        margin-bottom: 10px;
    }
    
    .destination-card-img {
        height: 140px !important;
    }
    
    .destination-card-overlay span {
        font-size: 0.8rem;
    }
    
    .duration-badge {
        padding: 3px 6px;
        font-size: 0.65rem;
    }
}