body {
  font-family: "Inter", serif;
  width: 100%;
  background-color: #fff;
  letter-spacing: 1px;
  padding-top: 50px;
}

body.checkin {
  padding-top: 0;
}

@media only screen and (min-width: 992px) {
  #cart-add {
    position: sticky;
    top: 170px;
  }
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.destination-item img {
  width: 100px; /* Fixed size for circle */
  height: 100px;
  object-fit: cover;
  border: 2px solid #dee2e6; /* Bootstrap border color */
  transition: all 0.3s ease-in-out;
}
.destination-item img:hover {
  transform: scale(1.05);
  border-color: #0d6efd; /* Bootstrap primary color */
}
.arrow-btn {
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Bootstrap shadow sm */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  z-index: 10;
}
.arrow-btn:hover {
  background-color: #f8f9fa;
}
.arrow-btn svg {
  width: 18px;
  height: 18px;
}
/* Ensure items don't wrap in the carousel and allow horizontal scroll */
.carousel-inner-scroll {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  overflow-x: auto; /* Allow horizontal scrolling */
  gap: 1.5rem; /* Spacing between items, Bootstrap 'gap-3' equivalent */
}
.destination-card {
  flex: 0 0 auto; /* Prevent items from shrinking/growing, allow them to take their content size */
  width: 120px; /* Approximate width for each item */
}

@media (min-width: 768px) {
  /* md breakpoint */
  .destination-item img {
    width: 112px;
    height: 112px;
  }
  .destination-card {
    width: 130px;
  }
  .arrow-btn svg {
    width: 24px;
    height: 24px;
  }
}
/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f58634;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f58634;
}

.flex-fill > .input-group > .input-group-text {
  background-color: transparent;
}

.flex-fill > .input-group > .form-select,
.flex-fill > .input-group > .form-control {
  border-right: none;
}

.img-responsive2 {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#header {
  height: 50px;
}

.margin-header {
  margin-top: 65px;
}

nav.navbar {
  border-color: #54423c;
  height: 60px;
  border-bottom-left-radius: 16px;
  padding: 0;
  display: flex;
  align-content: space-between;
}

nav .navbar-button {
  background-color: #ffcc00;
  border-bottom-left-radius: 32px;
  padding: 11px 30px 11px 20px;
}

nav .navbar-button button {
  border: none;
}
nav .navbar-button button span {
  color: white;
}

#menu .nav-link {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  #faq-section {
    background-image: url("../image/bg-faq.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
}

#button-account {
  background-color: #f2e609;
}

#search-box {
  background-color: #ff3d00;
  color: black;
}

.bg-purple {
  background-color: #ac09f2cc !important;
}

#search-form .input-group {
  width: 100%;
}

@media only screen and (min-width: 576px) {
  #search-form .input-group {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  #search-form .input-group {
    width: 25%;
  }
}

#button-search {
  background-color: #06b178;
  border: #06b178;
  color: white;
}

.input-group input,
.input-group select {
  border-radius: 0 25px 25px 0;
  border-left: 0px;
}

.input-group .input-group-text {
  border-radius: 25px 0 0 25px;
  background: white;
  border-left: 0px;
  padding-right: 0;
}

.input-group .input-group-text i {
  color: #0043ff;
}

.search-container-expandable {
  position: relative;
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: width 0.4s ease-in-out;
}

.search-trigger-button {
  z-index: 2;
  position: absolute;
  right: 0;
}

.search-input-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #ced4da;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 32px;
  box-sizing: border-box;
  transition: opacity 0.3s ease-in-out 0.1s, visibility 0.3s ease-in-out 0.1s;
}

.search-container-expandable.active {
  width: 280px;
}

.search-container-expandable.active .search-input-wrapper {
  opacity: 1;
  visibility: visible;
}

.search-container-expandable.active .search-trigger-button {
  border: none;
  background-color: transparent;
  box-shadow: none;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #6c757d;
}

.search-container-expandable.active .search-trigger-button:hover,
.search-container-expandable.active .search-trigger-button:focus {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.search-input-wrapper #search {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.search-input-wrapper #search input[name="search"] {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  height: 100% !important;
  padding: 0 10px !important;
  flex-grow: 1;
  background-color: transparent !important;
  font-size: 0.9rem;
  width: 100%;
}

.search-input-wrapper #search .input-group-btn,
.search-input-wrapper #search button[type="button"] {
  display: none !important;
}

.category-card {
  position: relative;
  border-radius: 0.75rem; /* 12px */
  overflow: hidden;
  color: white;
  min-height: 250px; /* Minimum height for the cards */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes title to top, button to bottom */
  padding: 1.5rem; /* p-6 */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* shadow-lg */
  transition: transform 0.3s ease-in-out;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card::before {
  /* Overlay */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}
.category-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px; /* Ensure content takes full height for space-between to work */
}
.category-title {
  font-size: 1.75rem; /* text-2xl or text-3xl */
  font-weight: 700; /* font-bold */
}
.btn-see-more {
  background-color: #ffd700; /* Yellow color like the image */
  color: #333;
  font-weight: 600; /* font-semibold */
  border: none;
  padding: 0.5rem 1rem; /* py-2 px-4 */
  border-radius: 0.375rem; /* rounded-md */
  align-self: flex-start; /* Align button to the start of the cross axis */
  margin-top: auto; /* Pushes button to the bottom */
}
.btn-see-more:hover {
  background-color: #f0c000;
  color: #222;
}
.btn-see-more .bi-arrow-right {
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  /* Below md */
  .category-card {
    min-height: 200px;
  }
  .category-title {
    font-size: 1.5rem;
  }
}

.features-section {
  background-color: #ffda6a; /* Yellow background from image */
  color: #333; /* Darker text for contrast on yellow */
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.features-section .display-5 {
  font-weight: 800; /* Extra bold for the main title */
  color: #2c3e50; /* A slightly darker, more saturated color for title */
}
.features-section .lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}
.feature-item {
  background-color: transparent; /* No card background, text directly on yellow */
  border: none;
  padding: 1rem;
  text-align: left; /* Align text to the left as in image */
}
.feature-icon-wrapper {
  display: inline-flex; /* Changed to inline-flex to not take full width */
  align-items: center;
  justify-content: center;
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border-radius: 0.75rem; /* rounded-xl equivalent */
  background-color: #ffffff; /* White background for icon */
  margin-bottom: 1rem; /* Space below icon */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.feature-icon-wrapper i {
  font-size: 1.75rem; /* Adjust icon size */
  color: #ffad01; /* Orange-yellow color for icons */
}
.feature-item h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.9rem; /* text-sm */
  color: #444;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  /* Below md */
  .feature-item {
    text-align: center; /* Center items on smaller screens if preferred */
  }
  .feature-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .features-section .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .features-section .display-5 {
    font-size: 2.25rem; /* Adjust title size for mobile */
  }
}

.tab-section-wrapper {
  margin: auto;
  background-color: #fff;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* shadow-lg */
  overflow: hidden; /* To contain rounded corners with nav-tabs */
}

.custom-nav-tabs .nav-link {
  color: #043483; /* Default tab text color - changed to blue */
  border: none; /* Remove default borders */
  border-bottom: 3px solid transparent; /* For active state */
  padding: 1rem 1.25rem; /* Adjust padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  height: 100%; /* Make nav-link fill the li */
}
.custom-nav-tabs .nav-link i {
  font-size: 1.75rem; /* Icon size */
  margin-bottom: 0.35rem;
}
.custom-nav-tabs .nav-link:hover,
.custom-nav-tabs .nav-link:focus {
  color: #0056b3; /* Darker blue on hover/focus */
  border-bottom-color: #dee2e6;
}
.custom-nav-tabs .nav-link.active {
  color: #fff; /* White text for active tab */
  background-color: #043483; /* Bootstrap primary blue for active tab background */
  border-color: #043483; /* Ensure bottom border matches */
  border-radius: 0; /* Remove default rounding if any from .nav-link */
}
/* Ensure the parent li also gets the background if needed, or style nav-link directly */
.custom-nav-tabs .nav-item {
  margin-bottom: 0; /* Override default margin if any */
}

.tab-content {
  padding: 2rem; /* Padding for tab content area */
  background-color: #fff;
}
.tab-content h3 {
  font-size: 1.75rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: #343a40;
  margin-bottom: 1.5rem;
}
.tab-content ul {
  list-style: none;
  padding-left: 0;
}
.tab-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #495057;
  font-size: 0.95rem;
}
.tab-content ul li::before {
  content: "•"; /* Bullet point */
  color: #0d6efd; /* Bootstrap primary color for bullet */
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 1.2em; /* Adjust bullet size */
}
/* Ensure tabs are scrollable on small screens */
.nav-tabs-scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden; /* Hide vertical scrollbar if it appears */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.nav-tabs-scrollable::-webkit-scrollbar {
  height: 5px; /* Adjust scrollbar height */
}
.nav-tabs-scrollable::-webkit-scrollbar-thumb {
  background: #adb5bd; /* Scrollbar thumb color */
  border-radius: 10px;
}
