body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}

.breadcrumb {
    background: none;
    padding: 20px 0 10px;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Sidebar Styles */
.sidebar {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.sidebar-header {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.sidebar-content {
    padding: 25px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.form-control, .form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #f4a261;
    box-shadow: 0 0 0 0.2rem rgba(244, 162, 97, 0.25);
}

.clear-filter {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.clear-filter:hover {
    text-decoration: underline;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input:checked {
    background-color: #f4a261;
    border-color: #f4a261;
}

.form-check-label {
    color: #555;
    margin-left: 8px;
}

/* Results Section */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    color: #6c757d;
    font-size: 1rem;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    color: #6c757d;
    white-space: nowrap;
}

.form-select.sort-select {
    width: auto;
    min-width: 200px;
    margin-bottom: 0;
}

/* Tour Cards */
.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-content {
    padding: 20px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-tag i {
    margin-right: 5px;
}

.tour-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    margin-right: 8px;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.tour-tags {
    margin-bottom: 15px;
}

.tour-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 6px;
    margin-bottom: 6px;
    font-weight: 500;
}

.tag-rail-tour {
    background-color: #e3f2fd;
    color: #1976d2;
}

.tag-wildlife {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.tag-river-cruise {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.duration {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.duration i {
    margin-right: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .sidebar {
        margin-bottom: 30px;
    }

    .results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-section {
        justify-content: space-between;
    }

    .form-select.sort-select {
        min-width: auto;
        flex: 1;
    }
}

/* Filter Toggle for Mobile */
.filter-toggle {
    display: none;
    background: #f4a261;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    font-weight: 500;
}

@media (max-width: 991px) {
    .filter-toggle {
        display: block;
    }

    .sidebar {
        display: none;
    }

    .sidebar.show {
        display: block;
    }
}
.tour-link{
    text-decoration: none;
}
