.btn-tb {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  background-image: linear-gradient(to bottom, #eeb14d, #f48311);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.btn-tb:hover {
  background-image: linear-gradient(to bottom, #eeb14d, #f48311);
  /* transform: translateY(-1px); */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #af5700;
}

/* Optional: focus/active */
.btn-tb:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.info-details-trip {
  padding: 0 0 30px 0;
}
.info-details-trip h2 {
  background: linear-gradient(135deg, #F48817 0%, #F48817 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.info-details-trip .header .input-group input:focus {
  box-shadow: none;
  border-bottom: 1px solid #515151;
  transition: background-size 0.5s ease;
}

.info-details-trip .header .input-group input,
.info-details-trip .header .input-group .input-group-text {
  border: none;
}

.card-img-overlay-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
}
.destination-card:hover {
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.4) !important;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  border-color: #515151;
}
.destination-card a:hover {
  text-decoration: none;
  border-color: #515151;
}

.destination-card img {
  height: 220px;
  object-fit: cover;
}

.destination-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #F48817;
}
.destination-card .card-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.info-details-trip-switch {
  margin: 20px 0;
}

.info-details-trip-switch-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tab item */
.info-details-trip-switch-item {
  padding: 15px 30px;
  border-radius: 10%;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-details-trip-switch-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Active tab */
.info-details-trip-switch-item.active {
  background: black;
  border-radius: 10%;
}

.info-details-trip-switch-item.active a {
  color: white;
}