.first-level-ul > li > a.active {
    color: #f26625 !important;
}

#description p {
    margin-bottom: 5px;
}

/* Optional: thumbnail hover */
.thumb-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hero Section */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity as you like */
  z-index: 2;
}

/* Keep all content above the video */
.hero-box .container {
  position: relative;
  z-index: 3;
}

.search-fields-container {
  /* For light background */
  background: rgba(255, 255, 255, 0.35);
  padding: 30px;
  border-radius: 15px;
  z-index: 3;
  position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px; /* adjust based on your navbar height */
    z-index: 100;
}

.text-orange {
    color: #f26625ff !important;
}

.bg-orange {
    background: #f26625ff !important;
}

.bg-white {
    background: #ffffff !important;
}

@media (max-width: 991px) {
    /* Disable sticky on mobile */
    .sticky-sidebar {
        position: static;
        top: auto;
    }
}

.trending-carousel .card-item {
    height: 100%;
}

.trending-carousel .owl-stage,
.trending-carousel .owl-item {
    display: flex;
}

.trending-carousel .owl-item > div {
    display: flex;
    height: 100%;
}

.booking-step-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.step-indicator {
    min-width: 110px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

.step-circle.active {
    background: #f26625ff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255,102,0,0.3);
}

.step-title {
    font-weight: 600;
    font-size: 14px;
}

.step-content {
    flex: 1;
}

.about-text {
    max-height: 225px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.about-text.expanded {
    max-height: 1000px;
}

.partner-btn {
    min-width: 100px !important;
}

.bg-ratio {
    aspect-ratio: 16/5 !important;
}

.breadcrumb-bottom {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
}

.breadcrumb-right-space {
    margin-right: 200px;
}

html {
    scroll-behavior: smooth;
}

[id^="category_"] {
    scroll-margin-top: 140px;
}

/* Default link */
.pagination .page-link {
    color: #f26625;
    border-color: #f26625;
}

/* Hover */
.pagination .page-link:hover {
    color: #fff;
    background-color: #f26625;
    border-color: #f26625;
}

/* Active page */
.pagination .page-item.active .page-link {
    background-color: #f26625;
    border-color: #f26625;
    color: #fff;
}

/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #f26625;
    border-color: #f26625;
    opacity: 0.5;
}