/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--body);
    color: white;
    padding: 15px 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: black;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Page Header */
.page-header-section {
    background: var(--body);
    padding: 40px 0;
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    
    margin-bottom: 15px;
}

.page-description {
    font-size: 1rem;
    line-height: 1.7;
    
    margin: 0;
}

/* Main Listing Section */
.listing-section {
    padding: 50px 0;
    background: #ffffff;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    position: sticky;
    top: 20px;
    /* max-height: calc(100vh - 40px);
    overflow-y: auto; */
}

.filter-group:last-child{
    margin-bottom: 0;
}
.filters-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 10px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.filters-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.btn-clear-all {
    background: none;
    border: none;
    color: #4a90e2;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.btn-clear-all:hover {
    color: #357abd;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 12px;
}

.filter-select {
    font-size: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 8px 12px;
}

/* Range Slider Styles */
.range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.range-min,
.range-max {
    font-weight: 600;
    color: #4a90e2;
}

.dual-range-slider {
    position: relative;
    height: 20px;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    top: 50%;
    transform: translateY(-50%);
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4a90e2;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4a90e2;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #dee2e6;
    border-radius: 3px;
}

.range-input::-moz-range-track {
    width: 100%;
    height: 5px;
    background: #dee2e6;
    border-radius: 3px;
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    padding: 5px 0;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #4a90e2;
}

.filter-checkbox:hover {
    color: #2c3e50;
}

.btn-see-more {
    background: none;
    border: none;
    color: #4a90e2;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
}

.btn-see-more:hover {
    text-decoration: underline;
}

.search-box {
    position: relative;
    margin-bottom: 15px;
}

.search-box input {
    padding-right: 35px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Package Cards */
.packages-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.package-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.package-card:hover {
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    transform: translateY(-3px);
}

.package-image-wrapper {
    position: relative;
    width: 280px;
    min-width: 280px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-category {
    background: rgba(74, 144, 226, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-title a:hover {
    color: #4a90e2;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.meta-item i {
    color: #4a90e2;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f6fc;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.feature-badge i {
    color: #4a90e2;
    font-size: 0.75rem;
}

.package-route,
.package-destinations {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}
article .package-route{
    gap: 10px;
}
article .package-destinations{
    flex-wrap: nowrap;
}
.route-label,
.dest-label {
    font-weight: 600;
    color: #2c3e50;
}

.route-cities,
.dest-cities {
    color: #666;
}

.package-pricing {
    width: 200px;
    min-width: 200px;
    padding: 25px;
    display: flex;
    flex-direction: column;
   
    align-items: center;
    background: #f8f9fa;
    border-left: 1px solid #e9ecef;
}

.price-wrapper {
    text-align: right;
    margin-bottom: 14px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.price-original {
    font-size: 1rem;
    color: #999;
    display: inline-block;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-per-person{
    font-size: 12px;
    margin-bottom: 0;
}

.price-discount {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-action {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: white;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-item {
    list-style: none;
}

.page-link {
    display: block;
    padding: 10px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

.page-item.active .page-link {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* Related Tours Section */
.related-tours-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: left;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Custom 5 column grid */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.related-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.related-category {
    background: rgba(74, 144, 226, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.related-content {
    padding: 20px;
}

.related-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.related-old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.related-discount {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.related-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a90e2;
}

.related-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.price-request{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .col-lg-2-4 {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .filters-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 30px;
    }

    .package-card {
        flex-direction: column;
    }

    .package-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .package-pricing {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }

    .action-buttons {
        flex-direction: row;
        width: auto;
    }

    .col-lg-2-4 {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.6rem;
    }

    .page-description {
        font-size: 0.9rem;
    }

    .package-title {
        font-size: 1.2rem;
    }

    .package-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .listing-section {
        padding: 30px 0;
    }

    .filters-sidebar {
        padding: 20px 15px;
    }

    .package-image-wrapper {
        height: 200px;
    }

    .package-details {
        padding: 20px;
    }

    .package-pricing {
        padding: 20px;
    }

    .price-current {
        font-size: 1.5rem;
    }

    .col-lg-2-4 {
        width: 100%;
    }

    .section-heading {
        font-size: 1.8rem;
    }
}