.dj-badge-primary {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.dj-badge-success {
    background: linear-gradient(145deg, #10b981 0%, #059669 100%);
    color: white;
}

.dj-badge-warning {
    background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.dj-badge-info {
    background: linear-gradient(145deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.dj-badge-danger {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.dj-badge-light {
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
}

.dj-hero-search-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}


/* Booking Widget Container */

.dj-booking-widget {
    border: 1px solid #e2e8f0;
}


/* Service Tabs */

.dj-booking-tabs .nav-tabs {
    border-bottom: none;
    background-color: #f1f5f9;
    border-radius: 8px 8px 0 0;
    padding: 0;
    margin: 0;
}

.dj-booking-tab-hotel,
.dj-booking-tab-tour,
.dj-booking-tab-flight {
    background-color: #f1f5f9 !important;
    color: #64748b !important;
    border: none !important;
    padding: 14px 24px !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0 0 !important;
    margin-right: 1px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.dj-booking-tab-hotel.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.dj-booking-tab-tour.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.dj-booking-tab-flight.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}


/* Form Content */

.tab-content {
    padding: 24px !important;
    background: white;
}

.tab-content h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 24px !important;
}


/* Form Elements */

.dj-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dj-form-control {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    background-color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
}

.dj-form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.dj-form-group {
    margin-bottom: 20px;
}


/* Counter Input */

.dj-counter-input {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
    height: 46px;
}

.dj-counter-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-counter-btn:hover {
    color: #3b82f6;
    background-color: #f3f4f6;
}

.dj-counter-value {
    border: none;
    text-align: center;
    width: 60px;
    padding: 12px 8px;
    font-weight: 700;
    font-size: 14px;
    background: transparent;
}

.dj-counter-icon {
    position: absolute;
    right: 12px;
    color: #9ca3af;
    font-size: 14px;
}


/* Checkbox Option */

.dj-checkbox-option {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    padding: 8px 0;
}

.dj-checkbox-option input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}


/* Search Buttons */

.dj-search-btn,
.dj-search-btn-tour,
.dj-search-btn-flight {
    padding: 16px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-search-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.dj-search-btn-tour {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.dj-search-btn-flight {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.dj-search-btn:hover,
.dj-search-btn-tour:hover,
.dj-search-btn-flight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Promotional Banner */

.dj-hero-banner {
    height: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dj-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(29, 78, 216, 0.8) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dj-hero-banner-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    width: fit-content;
}

.dj-hero-banner-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.dj-hero-banner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.dj-hero-banner-btn {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    align-self: flex-start;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dj-hero-banner-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.dj-hero-banner-indicators {
    display: flex;
    gap: 8px;
    align-self: flex-end;
    margin-top: auto;
}

.dj-hero-banner-indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dj-hero-banner-indicators span.active {
    background: white;
    transform: scale(1.2);
}


/* Promo Cards */

.dj-promo-card {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.dj-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dj-promo-card-egypt {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.dj-promo-card-luxury {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
}

.dj-promo-card-group {
    background: white;
    border: 1px solid #e2e8f0;
}

.dj-promo-card-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dj-promo-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.dj-promo-card-subtitle {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.dj-promo-code {
    margin-bottom: 8px;
}

.dj-promo-code-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
}

.dj-promo-code-value {
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.dj-promo-discount {
    margin-bottom: 6px;
}

.dj-discount-amount {
    font-size: 20px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.dj-discount-text {
    font-size: 11px;
    font-weight: 600;
}

.dj-promo-discount-big .dj-discount-amount {
    font-size: 18px;
    font-weight: 900;
}

.dj-promo-card-image {
    height: 80px;
    overflow: hidden;
}

.dj-promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Category Tabs */

.dj-category-tab {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-right: 16px;
    margin-bottom: 16px;
}

.dj-category-tab:hover {
    background-color: #f8fafc;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.dj-category-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}


/* Tour Package Cards */

.dj-tour-package-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.dj-tour-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}


/* Hotel Destination Tabs */

.dj-hotel-destination-tabs {
    justify-content: flex-start;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0;
}

.dj-hotel-destination-tabs::-webkit-scrollbar {
    height: 4px;
}

.dj-hotel-destination-tabs::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dj-hotel-destination-tabs::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 2px;
}

.dj-hotel-tab {
    background-color: transparent !important;
    border: none !important;
    color: #64748b !important;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 24px !important;
    border-radius: 0 !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dj-hotel-tab:hover {
    color: #0ea5e9 !important;
    border-bottom-color: #0ea5e9 !important;
    background-color: #f0f9ff !important;
}

.dj-hotel-tab.active {
    color: #0ea5e9 !important;
    border-bottom-color: #0ea5e9 !important;
    background-color: #f0f9ff !important;
}


/* Hotel Cards */

.dj-hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.dj-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.dj-hotel-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.dj-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dj-hotel-card:hover .dj-hotel-image img {
    transform: scale(1.08);
}

.dj-hotel-content {
    padding: 20px;
}

.dj-hotel-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.dj-hotel-location {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.dj-hotel-discount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: inline-block;
}

.dj-hotel-discount-label {
    font-size: 11px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    text-transform: uppercase;
}

.dj-hotel-discount-text {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.9;
}

.dj-hotel-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dj-hotel-original-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 500;
}

.dj-hotel-discounted-price {
    font-size: 20px;
    font-weight: 900;
    color: #059669;
}


/* View All Button */

.dj-view-all-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dj-view-all-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
    text-decoration: none;
}


/* Responsive Design */

@media (max-width: 992px) {
    .dj-booking-widget {
        min-height: auto;
        margin-bottom: 30px;
    }
    .dj-hero-banner {
        height: 180px;
    }
    .dj-promo-card {
        height: 140px;
    }
    .dj-hotel-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .dj-booking-tab-hotel,
    .dj-booking-tab-tour,
    .dj-booking-tab-flight {
        padding: 12px 16px !important;
        font-size: 12px;
    }
    .dj-hero-banner-overlay {
        padding: 20px;
    }
    .dj-hero-banner-title {
        font-size: 18px;
    }
}

.tour-card {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), border-color 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.tour-card:hover {
    box-shadow: 0 8px 36px 0 rgba(0, 0, 0, 0.28);
    border-color: #bdbdbd;
    transform: translateY(-3px) scale(1.01);
    z-index: 2;
}


/* Enhanced Sidebar Styling */

.sidebar-left {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    overflow: hidden;
}

.box-filters-sidebar {
    padding: 0;
}


/* Unified Filter Header */

.dj-unified-filter-header {
    padding: 24px 24px 16px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
}

.dj-filter-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-filter-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}


/* Unified Filters Container */

.dj-unified-filters {
    padding: 16px 20px 20px 20px;
}

.dj-filter-section {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    transition: background-color 0.2s ease;
}

.dj-filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dj-filter-section:hover {
    background-color: rgba(59, 130, 246, 0.02);
    padding-left: 6px;
    margin-left: -6px;
    padding-right: 6px;
    margin-right: -6px;
    border-radius: 6px;
}

.dj-filter-title {
    margin-bottom: 8px !important;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
}


/* Category Dropdown Container */

.dj-category-dropdown {
    margin-top: 4px;
}


/* Elegant Select Dropdown */

.dj-elegant-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
}

.dj-elegant-select:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.dj-elegant-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}


/* Box Collapse Styling */

.box-collapse {
    margin-top: 8px;
}


/* Price Range Styling */

.dj-price-range-container {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-top: 4px;
}

.dj-price-inputs {
    margin-bottom: 12px;
}


/* Duration Range Styling */

.dj-duration-range-container {
    background: linear-gradient(145deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 4px;
}

.dj-duration-inputs {
    margin-bottom: 12px;
}

.dj-duration-inputs .input-group-text {
    background: linear-gradient(145deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
}

.dj-duration-inputs .form-control {
    border: 2px solid #e0f2fe;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.dj-duration-inputs .form-control:focus {
    border-color: #0ea5e9;
    box-shadow: none;
}

.dj-price-inputs .input-group-text {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
}

.dj-price-inputs .form-control {
    border: 2px solid #e2e8f0;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.dj-price-inputs .form-control:focus {
    border-color: #3b82f6;
    box-shadow: none;
}

.form-range {
    margin: 10px 0;
    height: 6px;
}

.form-range::-webkit-slider-track {
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 3px;
}

.form-range::-webkit-slider-thumb {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}


/* Enhanced Filter Items */

.list-filter-checkbox {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dj-filter-item {
    padding: 2px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 1px;
}

.dj-filter-item:last-child {
    margin-bottom: 0;
}

.dj-filter-item:hover {
    background-color: rgba(59, 130, 246, 0.06);
    padding-left: 4px;
    margin-left: -4px;
    padding-right: 4px;
    margin-right: -4px;
}

.dj-elegant-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.dj-elegant-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #3b82f6;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
}

.dj-elegant-checkbox .text-sm-medium {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #374151;
    font-weight: 500;
    line-height: 1.3;
}

.dj-elegant-checkbox input[type="checkbox"]:checked+.text-sm-medium {
    color: #1e40af;
    font-weight: 600;
}

.dj-elegant-checkbox .text-sm-medium i {
    margin-right: 6px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    font-size: 12px;
}


/* Airline specific styling */

.dj-filter-item .text-sm-medium i[style*="color"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    font-size: 15px;
}

.number-item {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    margin-left: 8px;
    line-height: 1.3;
}


/* Hotel Stars Styling */

.dj-hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dj-hotel-stars .fas.fa-star {
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


/* Elegant Link Styling */

.dj-elegant-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
}

.dj-elegant-link:hover {
    color: #1e40af;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
}


/* Filter Header Icons */

.block-filter h6 i {
    width: 20px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


/* Filter List Styling */

.dj-filter-section .list-filter-checkbox {
    margin-top: 4px;
}


/* Animation for filter transitions */

.dj-filter-item {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Loading states */

.dj-filter-container[style*="opacity"] {
    transition: opacity 0.3s ease;
}

.box-list-tours[style*="opacity"] {
    transition: opacity 0.3s ease;
}


/* Remove default spacing from existing elements */

.sidebar-left .list-filter-checkbox {
    margin-bottom: 0;
    padding-left: 0;
}

.cb-container {
    margin-bottom: 0;
}


/* Responsive adjustments */

@media (max-width: 991.98px) {
    .sidebar-left {
        margin-bottom: 24px;
    }
    .dj-unified-filters {
        padding: 0 20px 20px 20px;
    }
    .dj-filter-section {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .dj-unified-filters {
        padding: 12px 16px 16px 16px;
    }
    .dj-filter-section {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    .dj-filter-title {
        font-size: 13px;
        margin-bottom: 6px !important;
    }
    .dj-price-inputs .col-6 {
        margin-bottom: 6px;
    }
    .dj-filter-item {
        padding: 1px 0;
        margin-bottom: 1px;
    }
    .dj-filter-item:hover {
        padding-left: 3px;
        margin-left: -3px;
        padding-right: 3px;
        margin-right: -3px;
    }
    .dj-elegant-select {
        padding: 8px 12px;
        font-size: 13px;
    }
    .number-item {
        font-size: 9px;
        padding: 1px 4px;
        min-width: 16px;
    }
    .dj-filter-section .list-filter-checkbox {
        margin-top: 2px;
    }
}


/* Additional Compact Filters */

.dj-additional-filters {
    margin-top: 20px;
}

.dj-filter-section-header {
    padding: 16px 20px 12px 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
}

.dj-filter-section-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.dj-filter-section-content {
    padding: 1px 20px 5px 20px;
}

.dj-compact-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dj-compact-filter-item {
    margin-bottom: 2px;
}

.dj-compact-filter-item:last-child {
    margin-bottom: 0;
}

.dj-compact-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.dj-compact-checkbox:hover {
    background-color: rgba(59, 130, 246, 0.04);
    padding-left: 4px;
    margin-left: -4px;
    padding-right: 4px;
    margin-right: -4px;
}

.dj-compact-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #d1d5db;
    flex-shrink: 0;
}

.dj-compact-checkbox input[type="checkbox"]:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.dj-compact-text {
    flex-grow: 1;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    line-height: 1.3;
}

.dj-compact-checkbox input[type="checkbox"]:checked+.dj-compact-text {
    color: #1e40af;
    font-weight: 600;
}

.dj-compact-badge {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-left: 8px;
    flex-shrink: 0;
}


/* Compact Filters Responsive */

@media (max-width: 768px) {
    .dj-filter-section-header {
        padding: 12px 16px 10px 16px;
    }
    .dj-filter-section-title {
        font-size: 13px;
    }
    .dj-filter-section-content {
        padding: 10px 16px 12px 16px;
    }
    .dj-compact-checkbox {
        padding: 4px 0;
    }
    .dj-compact-text {
        font-size: 11px;
    }
    .dj-compact-badge {
        font-size: 9px;
    }
    .dj-compact-checkbox input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin-right: 8px;
    }
}