
.search-select {
    width: 100%;
    padding: 12px 35px 12px 45px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 15px;
    font-weight: 500;
    color: #2d3436;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.search-select:hover {
    background: #f1f2f6;
    border-color: #dfe6e9;
}

.search-select:focus {
    background: #fff;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23636e72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.input-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #007bff;
    z-index: 1;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

/* Stylish Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.pagination nav {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transform: scale(1.1);
}

.pagination .page-item:not(.active, .disabled):hover .page-link {
    background: #f3f4f6;
    color: #007bff;
    transform: translateY(-3px);
}

.pagination .page-item.disabled .page-link {
    color: #d1d5db;
    cursor: not-allowed;
}

/* Arrow Specific Styling */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    margin: 0 5px;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: #fff;
    border-color: #007bff;
    color: #007bff;
}

/* Mobile Filter Drawer System */
.mobile-filter-trigger {
    display: none;
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background: #0F3D68;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(15, 61, 104, 0.4);
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-trigger:hover {
    transform: translateX(-50%) translateY(-2px);
    background: #0a2d4d;
}

.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 61, 104, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-filter-header {
    display: none;
}

@media (max-width: 768px) {
    .mobile-filter-trigger {
        display: flex;
    }
    
    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        border-bottom: 1px solid #E5E7EB;
        padding-bottom: 14px;
    }
    
    .mobile-filter-title {
        font-size: 18px;
        font-weight: 700;
        color: #0F3D68;
        margin: 0;
    }
    
    .close-filters-btn {
        background: none;
        border: none;
        font-size: 32px;
        color: #9CA3AF;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        transition: color 0.2s;
    }
    
    .close-filters-btn:hover {
        color: #111827;
    }
    
    .hotels-sidebar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #FFFFFF !important;
        z-index: 1000000 !important;
        padding: 24px 20px 40px !important;
        border-radius: 24px 24px 0 0 !important;
        box-shadow: 0 -10px 40px rgba(15, 61, 104, 0.15) !important;
        transform: translateY(100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        margin-top: 0 !important;
        border: none !important;
    }
    
    .hotels-sidebar.active {
        transform: translateY(0) !important;
    }
    
    .hotels-sidebar .filters-title {
        display: none !important;
    }
}

