
.tour-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}
.tour-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}
.nav-pills .nav-link {
    color: #333;
    background-color: #f8f9fa;
    margin-right: 10px;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
}
.nav-pills .nav-link.active {
    background-color: var(--primary-color1, #ff7757);
    color: #fff;
}
.itinerary-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    border-left: 2px solid #eee;
}
.itinerary-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color1, #ff7757);
    border-radius: 50%;
}
.itinerary-day {
    font-weight: 700;
    color: var(--primary-color1, #ff7757);
    margin-bottom: 5px;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.price-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}
.service-list ul {
    list-style: none;
    padding: 0;
}
.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.service-list li::before {
    content: '\F26B'; /* Bootstrap Icons check-circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: #198754; /* Success color */
}
.service-list.excluded li::before {
    content: '\F62A'; /* Bootstrap Icons x-circle */
    color: #dc3545; /* Danger color */
}
.sticky-sidebar {
    position: sticky;
    top: 100px;
}
.gallery-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}
.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.gallery-top {
    height: 400px;
    width: 100%;
}
.gallery-top img, .gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
